2024-03-12 14:05:27 -04:00
|
|
|
using System.Text.Json;
|
|
|
|
using CommonSocketLibrary.Abstract;
|
|
|
|
using CommonSocketLibrary.Common;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using TwitchChatTTS.Seven.Socket.Data;
|
|
|
|
|
|
|
|
namespace TwitchChatTTS.Seven.Socket.Handlers
|
|
|
|
{
|
|
|
|
public class DispatchHandler : IWebSocketHandler
|
|
|
|
{
|
|
|
|
private ILogger Logger { get; }
|
2024-03-15 08:27:35 -04:00
|
|
|
private EmoteDatabase Emotes { get; }
|
2024-03-12 14:05:27 -04:00
|
|
|
public int OperationCode { get; set; } = 0;
|
|
|
|
|
2024-03-15 08:27:35 -04:00
|
|
|
public DispatchHandler(ILogger<DispatchHandler> logger, EmoteDatabase emotes) {
|
2024-03-12 14:05:27 -04:00
|
|
|
Logger = logger;
|
2024-03-15 08:27:35 -04:00
|
|
|
Emotes = emotes;
|
2024-03-12 14:05:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public async Task Execute<Data>(SocketClient<WebSocketMessage> sender, Data message)
|
|
|
|
{
|
|
|
|
if (message is not DispatchMessage obj || obj == null)
|
|
|
|
return;
|
|
|
|
|
2024-03-15 08:27:35 -04:00
|
|
|
ApplyChanges(obj?.Body?.Pulled, cf => cf.OldValue, true);
|
|
|
|
ApplyChanges(obj?.Body?.Pushed, cf => cf.Value, false);
|
2024-03-12 14:05:27 -04:00
|
|
|
}
|
|
|
|
|
2024-03-15 08:27:35 -04:00
|
|
|
private void ApplyChanges(IEnumerable<ChangeField>? fields, Func<ChangeField, object> getter, bool removing) {
|
|
|
|
if (fields == null)
|
2024-03-12 14:05:27 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
foreach (var val in fields) {
|
2024-03-15 08:27:35 -04:00
|
|
|
var value = getter(val);
|
|
|
|
if (value == null)
|
2024-03-12 14:05:27 -04:00
|
|
|
continue;
|
|
|
|
|
2024-03-15 08:27:35 -04:00
|
|
|
var o = JsonSerializer.Deserialize<EmoteField>(value.ToString(), new JsonSerializerOptions() {
|
2024-03-12 14:05:27 -04:00
|
|
|
PropertyNameCaseInsensitive = false,
|
|
|
|
PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower
|
|
|
|
});
|
2024-03-15 08:27:35 -04:00
|
|
|
|
|
|
|
if (removing) {
|
|
|
|
Emotes.Remove(o.Name);
|
|
|
|
Logger.LogInformation($"Removed 7tv emote: {o.Name} (id: {o.Id})");
|
|
|
|
} else {
|
|
|
|
Emotes.Add(o.Name, o.Id);
|
|
|
|
Logger.LogInformation($"Added 7tv emote: {o.Name} (id: {o.Id})");
|
|
|
|
}
|
2024-03-12 14:05:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|