2024-07-16 00:48:55 -04:00
|
|
|
using System.Net.WebSockets;
|
2024-03-15 08:27:35 -04:00
|
|
|
using System.Text.Json;
|
2024-06-16 20:19:31 -04:00
|
|
|
using System.Timers;
|
2024-03-15 08:27:35 -04:00
|
|
|
using CommonSocketLibrary.Abstract;
|
2024-08-11 17:41:22 -04:00
|
|
|
using CommonSocketLibrary.Backoff;
|
2024-03-15 08:27:35 -04:00
|
|
|
using CommonSocketLibrary.Common;
|
2024-07-16 00:48:55 -04:00
|
|
|
using HermesSocketLibrary.Requests.Callbacks;
|
|
|
|
using HermesSocketLibrary.Requests.Messages;
|
2024-06-16 20:19:31 -04:00
|
|
|
using HermesSocketLibrary.Socket.Data;
|
2024-03-15 08:27:35 -04:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2024-06-16 20:19:31 -04:00
|
|
|
using Serilog;
|
2024-07-16 00:48:55 -04:00
|
|
|
using TwitchChatTTS.Hermes.Socket.Handlers;
|
2024-03-15 08:27:35 -04:00
|
|
|
|
|
|
|
namespace TwitchChatTTS.Hermes.Socket
|
|
|
|
{
|
2024-06-16 20:19:31 -04:00
|
|
|
public class HermesSocketClient : WebSocketClient
|
|
|
|
{
|
2024-07-16 00:48:55 -04:00
|
|
|
public const string BASE_URL = "ws.tomtospeech.com";
|
|
|
|
|
|
|
|
private readonly User _user;
|
|
|
|
private readonly Configuration _configuration;
|
|
|
|
private readonly ICallbackManager<HermesRequestData> _callbackManager;
|
|
|
|
private string URL;
|
|
|
|
|
2024-06-16 20:19:31 -04:00
|
|
|
public DateTime LastHeartbeatReceived { get; set; }
|
|
|
|
public DateTime LastHeartbeatSent { get; set; }
|
|
|
|
public string? UserId { get; set; }
|
2024-08-11 17:41:22 -04:00
|
|
|
private readonly System.Timers.Timer _heartbeatTimer;
|
|
|
|
private readonly IBackoff _backoff;
|
2024-08-12 01:44:31 -04:00
|
|
|
private readonly object _lock;
|
2024-03-15 08:27:35 -04:00
|
|
|
|
2024-07-16 00:48:55 -04:00
|
|
|
public bool Connected { get; set; }
|
|
|
|
public bool LoggedIn { get; set; }
|
|
|
|
public bool Ready { get; set; }
|
|
|
|
|
2024-07-12 13:36:09 -04:00
|
|
|
|
2024-03-15 08:27:35 -04:00
|
|
|
public HermesSocketClient(
|
2024-07-16 00:48:55 -04:00
|
|
|
User user,
|
2024-06-16 20:19:31 -04:00
|
|
|
Configuration configuration,
|
2024-07-16 00:48:55 -04:00
|
|
|
ICallbackManager<HermesRequestData> callbackManager,
|
2024-08-11 17:41:22 -04:00
|
|
|
[FromKeyedServices("hermes")] IBackoff backoff,
|
2024-07-19 12:56:41 -04:00
|
|
|
[FromKeyedServices("hermes")] IEnumerable<IWebSocketHandler> handlers,
|
|
|
|
[FromKeyedServices("hermes")] MessageTypeManager<IWebSocketHandler> typeManager,
|
2024-06-16 20:19:31 -04:00
|
|
|
ILogger logger
|
2024-07-19 12:56:41 -04:00
|
|
|
) : base(handlers, typeManager, new JsonSerializerOptions()
|
2024-06-16 20:19:31 -04:00
|
|
|
{
|
2024-03-15 08:27:35 -04:00
|
|
|
PropertyNameCaseInsensitive = false,
|
|
|
|
PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower
|
2024-07-19 12:56:41 -04:00
|
|
|
}, logger)
|
2024-06-16 20:19:31 -04:00
|
|
|
{
|
2024-07-16 00:48:55 -04:00
|
|
|
_user = user;
|
2024-06-16 20:19:31 -04:00
|
|
|
_configuration = configuration;
|
2024-07-16 00:48:55 -04:00
|
|
|
_callbackManager = callbackManager;
|
2024-08-11 17:41:22 -04:00
|
|
|
_backoff = backoff;
|
2024-06-16 20:19:31 -04:00
|
|
|
_heartbeatTimer = new System.Timers.Timer(TimeSpan.FromSeconds(15));
|
|
|
|
_heartbeatTimer.Elapsed += async (sender, e) => await HandleHeartbeat(e);
|
|
|
|
|
|
|
|
LastHeartbeatReceived = LastHeartbeatSent = DateTime.UtcNow;
|
2024-07-16 00:48:55 -04:00
|
|
|
URL = $"wss://{BASE_URL}";
|
2024-08-12 01:44:31 -04:00
|
|
|
|
|
|
|
_lock = new object();
|
2024-07-16 00:48:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-08-12 16:10:11 -04:00
|
|
|
public override async Task Connect()
|
2024-07-16 00:48:55 -04:00
|
|
|
{
|
2024-08-12 01:44:31 -04:00
|
|
|
lock (_lock)
|
|
|
|
{
|
|
|
|
if (Connected)
|
|
|
|
return;
|
|
|
|
}
|
2024-07-16 00:48:55 -04:00
|
|
|
|
|
|
|
_logger.Debug($"Attempting to connect to {URL}");
|
|
|
|
await ConnectAsync(URL);
|
|
|
|
}
|
|
|
|
|
|
|
|
private async Task Disconnect()
|
|
|
|
{
|
2024-08-12 01:44:31 -04:00
|
|
|
lock (_lock)
|
|
|
|
{
|
|
|
|
if (!Connected)
|
|
|
|
return;
|
|
|
|
}
|
2024-07-16 00:48:55 -04:00
|
|
|
|
2024-07-19 12:56:41 -04:00
|
|
|
await DisconnectAsync(new SocketDisconnectionEventArgs("Normal disconnection", "Disconnection was executed"));
|
2024-07-16 00:48:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public async Task CreateTTSVoice(string voiceName)
|
|
|
|
{
|
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "create_tts_voice",
|
|
|
|
Data = new Dictionary<string, object>() { { "voice", voiceName } }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task CreateTTSUser(long chatterId, string voiceId)
|
|
|
|
{
|
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "create_tts_user",
|
|
|
|
Data = new Dictionary<string, object>() { { "chatter", chatterId }, { "voice", voiceId } }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task DeleteTTSVoice(string voiceId)
|
|
|
|
{
|
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "delete_tts_voice",
|
|
|
|
Data = new Dictionary<string, object>() { { "voice", voiceId } }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-08-06 15:29:29 -04:00
|
|
|
public async Task FetchChatterIdentifiers()
|
|
|
|
{
|
2024-07-19 12:56:41 -04:00
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "get_chatter_ids",
|
|
|
|
Data = null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-08-06 15:29:29 -04:00
|
|
|
public async Task FetchDefaultTTSVoice()
|
|
|
|
{
|
2024-07-19 12:56:41 -04:00
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "get_default_tts_voice",
|
|
|
|
Data = null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-08-06 15:29:29 -04:00
|
|
|
public async Task FetchEmotes()
|
|
|
|
{
|
2024-07-19 12:56:41 -04:00
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "get_emotes",
|
|
|
|
Data = null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-08-06 15:29:29 -04:00
|
|
|
public async Task FetchEnabledTTSVoices()
|
|
|
|
{
|
2024-07-19 12:56:41 -04:00
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "get_enabled_tts_voices",
|
|
|
|
Data = null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-08-06 15:29:29 -04:00
|
|
|
public async Task FetchTTSVoices()
|
|
|
|
{
|
2024-07-19 12:56:41 -04:00
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "get_tts_voices",
|
|
|
|
Data = null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-08-06 15:29:29 -04:00
|
|
|
public async Task FetchTTSChatterVoices()
|
|
|
|
{
|
2024-07-19 12:56:41 -04:00
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "get_tts_users",
|
|
|
|
Data = null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-08-06 15:29:29 -04:00
|
|
|
public async Task FetchTTSWordFilters()
|
|
|
|
{
|
2024-07-19 12:56:41 -04:00
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "get_tts_word_filters",
|
|
|
|
Data = null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task FetchRedemptions()
|
2024-07-16 00:48:55 -04:00
|
|
|
{
|
|
|
|
var requestId = _callbackManager.GenerateKeyForCallback(new HermesRequestData()
|
|
|
|
{
|
2024-07-19 12:56:41 -04:00
|
|
|
Callback = async (d) => await FetchRedeemableActions(d["redemptions"] as IEnumerable<Redemption>),
|
2024-07-16 00:48:55 -04:00
|
|
|
Data = new Dictionary<string, object>()
|
|
|
|
});
|
|
|
|
|
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
RequestId = requestId,
|
|
|
|
Type = "get_redemptions",
|
|
|
|
Data = null
|
|
|
|
});
|
2024-06-16 20:19:31 -04:00
|
|
|
}
|
|
|
|
|
2024-07-19 12:56:41 -04:00
|
|
|
private async Task FetchRedeemableActions(IEnumerable<Redemption> redemptions)
|
2024-06-16 20:19:31 -04:00
|
|
|
{
|
2024-07-16 00:48:55 -04:00
|
|
|
var requestId = _callbackManager.GenerateKeyForCallback(new HermesRequestData()
|
|
|
|
{
|
|
|
|
Data = new Dictionary<string, object>() { { "redemptions", redemptions } }
|
|
|
|
});
|
|
|
|
|
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
RequestId = requestId,
|
|
|
|
Type = "get_redeemable_actions",
|
|
|
|
Data = null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-07-19 12:56:41 -04:00
|
|
|
public async Task FetchPermissions()
|
|
|
|
{
|
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "get_permissions",
|
|
|
|
Data = null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-08-12 15:45:17 -04:00
|
|
|
public async Task FetchConnections()
|
|
|
|
{
|
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "get_connections",
|
|
|
|
Data = null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-07-16 00:48:55 -04:00
|
|
|
public void Initialize()
|
|
|
|
{
|
|
|
|
_logger.Information("Initializing Hermes websocket client.");
|
|
|
|
|
|
|
|
OnConnected += async (sender, e) =>
|
|
|
|
{
|
2024-08-12 01:44:31 -04:00
|
|
|
lock (_lock)
|
|
|
|
{
|
|
|
|
if (Connected)
|
|
|
|
return;
|
|
|
|
Connected = true;
|
|
|
|
}
|
2024-07-16 00:48:55 -04:00
|
|
|
_logger.Information("Hermes websocket client connected.");
|
|
|
|
|
|
|
|
_heartbeatTimer.Enabled = true;
|
|
|
|
LastHeartbeatReceived = DateTime.UtcNow;
|
|
|
|
|
|
|
|
await Send(1, new HermesLoginMessage()
|
|
|
|
{
|
|
|
|
ApiKey = _configuration.Hermes!.Token!,
|
|
|
|
MajorVersion = TTS.MAJOR_VERSION,
|
|
|
|
MinorVersion = TTS.MINOR_VERSION,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2024-08-11 17:41:22 -04:00
|
|
|
OnDisconnected += async (sender, e) =>
|
2024-07-16 00:48:55 -04:00
|
|
|
{
|
2024-08-12 01:44:31 -04:00
|
|
|
lock (_lock)
|
|
|
|
{
|
|
|
|
if (!Connected)
|
|
|
|
return;
|
|
|
|
Connected = false;
|
|
|
|
}
|
|
|
|
|
2024-07-16 00:48:55 -04:00
|
|
|
LoggedIn = false;
|
|
|
|
Ready = false;
|
|
|
|
_logger.Warning("Hermes websocket client disconnected.");
|
|
|
|
|
|
|
|
_heartbeatTimer.Enabled = false;
|
2024-08-12 16:10:11 -04:00
|
|
|
await Reconnect(_backoff);
|
2024-07-16 00:48:55 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task SendLoggingMessage(HermesLoggingLevel level, string message)
|
|
|
|
{
|
|
|
|
await Send(5, new LoggingMessage(message, level));
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task SendLoggingMessage(Exception exception, HermesLoggingLevel level, string message)
|
|
|
|
{
|
|
|
|
await Send(5, new LoggingMessage(exception, message, level));
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task SendEmoteUsage(string messageId, long chatterId, ICollection<string> emotes)
|
|
|
|
{
|
|
|
|
if (!LoggedIn)
|
|
|
|
{
|
|
|
|
_logger.Debug("Not logged in. Cannot sent EmoteUsage message.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
await Send(8, new EmoteUsageMessage()
|
|
|
|
{
|
|
|
|
MessageId = messageId,
|
|
|
|
DateTime = DateTime.UtcNow,
|
|
|
|
BroadcasterId = _user.TwitchUserId,
|
|
|
|
ChatterId = chatterId,
|
|
|
|
Emotes = emotes
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task SendChatterDetails(long chatterId, string username)
|
|
|
|
{
|
|
|
|
if (!LoggedIn)
|
|
|
|
{
|
|
|
|
_logger.Debug("Not logged in. Cannot send Chatter message.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
await Send(6, new ChatterMessage()
|
|
|
|
{
|
|
|
|
Id = chatterId,
|
|
|
|
Name = username
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task SendEmoteDetails(IDictionary<string, string> emotes)
|
|
|
|
{
|
|
|
|
if (!LoggedIn)
|
|
|
|
{
|
|
|
|
_logger.Debug("Not logged in. Cannot send EmoteDetails message.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
await Send(7, new EmoteDetailsMessage()
|
|
|
|
{
|
|
|
|
Emotes = emotes
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task SendHeartbeat(bool respond = false, DateTime? date = null)
|
|
|
|
{
|
|
|
|
await Send(0, new HeartbeatMessage() { DateTime = date ?? DateTime.UtcNow, Respond = respond });
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task UpdateTTSUser(long chatterId, string voiceId)
|
|
|
|
{
|
|
|
|
if (!LoggedIn)
|
|
|
|
{
|
|
|
|
_logger.Debug("Not logged in. Cannot send UpdateTTSUser message.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "update_tts_user",
|
|
|
|
Data = new Dictionary<string, object>() { { "chatter", chatterId }, { "voice", voiceId } }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task UpdateTTSVoiceState(string voiceId, bool state)
|
|
|
|
{
|
|
|
|
if (!LoggedIn)
|
|
|
|
{
|
|
|
|
_logger.Debug("Not logged in. Cannot send UpdateTTSVoiceState message.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
await Send(3, new RequestMessage()
|
|
|
|
{
|
|
|
|
Type = "update_tts_voice_state",
|
|
|
|
Data = new Dictionary<string, object>() { { "voice", voiceId }, { "state", state } }
|
|
|
|
});
|
2024-06-16 20:19:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private async Task HandleHeartbeat(ElapsedEventArgs e)
|
|
|
|
{
|
|
|
|
var signalTime = e.SignalTime.ToUniversalTime();
|
|
|
|
|
2024-08-12 01:44:31 -04:00
|
|
|
if (signalTime - LastHeartbeatReceived > TimeSpan.FromSeconds(60))
|
2024-06-16 20:19:31 -04:00
|
|
|
{
|
|
|
|
if (LastHeartbeatReceived > LastHeartbeatSent)
|
|
|
|
{
|
|
|
|
_logger.Verbose("Sending heartbeat...");
|
|
|
|
LastHeartbeatSent = DateTime.UtcNow;
|
|
|
|
try
|
|
|
|
{
|
2024-07-16 00:48:55 -04:00
|
|
|
await SendHeartbeat(date: LastHeartbeatSent);
|
2024-06-16 20:19:31 -04:00
|
|
|
}
|
2024-07-16 00:48:55 -04:00
|
|
|
catch (Exception ex)
|
2024-06-16 20:19:31 -04:00
|
|
|
{
|
2024-07-16 00:48:55 -04:00
|
|
|
_logger.Error(ex, "Failed to send a heartbeat back to the Hermes websocket server.");
|
2024-06-16 20:19:31 -04:00
|
|
|
}
|
|
|
|
}
|
2024-08-12 01:44:31 -04:00
|
|
|
else if (signalTime - LastHeartbeatReceived > TimeSpan.FromSeconds(120))
|
2024-06-16 20:19:31 -04:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2024-07-16 00:48:55 -04:00
|
|
|
await Disconnect();
|
2024-06-16 20:19:31 -04:00
|
|
|
}
|
2024-07-16 00:48:55 -04:00
|
|
|
catch (Exception ex)
|
2024-06-16 20:19:31 -04:00
|
|
|
{
|
2024-07-16 00:48:55 -04:00
|
|
|
_logger.Error(ex, "Failed to disconnect from Hermes websocket server.");
|
2024-08-07 15:32:44 -04:00
|
|
|
Ready = false;
|
|
|
|
LoggedIn = false;
|
|
|
|
Connected = false;
|
2024-06-16 20:19:31 -04:00
|
|
|
}
|
2024-08-11 17:41:22 -04:00
|
|
|
|
2024-06-16 20:19:31 -04:00
|
|
|
UserId = null;
|
|
|
|
_heartbeatTimer.Enabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-16 00:48:55 -04:00
|
|
|
public new async Task Send<T>(int opcode, T message)
|
|
|
|
{
|
|
|
|
if (!Connected)
|
|
|
|
{
|
|
|
|
_logger.Warning("Hermes websocket client is not connected. Not sending a message.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
await base.Send(opcode, message);
|
|
|
|
}
|
2024-03-15 08:27:35 -04:00
|
|
|
}
|
|
|
|
}
|