2024-06-24 18:21:59 -04:00
|
|
|
using System.Text.Json;
|
2024-10-18 21:50:46 -04:00
|
|
|
using System.Threading.Channels;
|
2024-06-24 18:21:59 -04:00
|
|
|
using HermesSocketLibrary.db;
|
|
|
|
using HermesSocketLibrary.Requests;
|
2024-10-18 21:50:46 -04:00
|
|
|
using HermesSocketServer.Models;
|
|
|
|
using HermesSocketServer.Services;
|
2024-10-17 23:21:16 -04:00
|
|
|
using HermesSocketServer.Store;
|
2024-06-24 18:21:59 -04:00
|
|
|
using ILogger = Serilog.ILogger;
|
|
|
|
|
|
|
|
namespace HermesSocketServer.Requests
|
|
|
|
{
|
|
|
|
public class UpdateTTSUser : IRequest
|
|
|
|
{
|
|
|
|
public string Name => "update_tts_user";
|
2024-08-10 15:36:32 -04:00
|
|
|
|
2024-10-18 21:50:46 -04:00
|
|
|
private ChannelManager _channels;
|
|
|
|
private Database _database;
|
2024-08-10 15:36:32 -04:00
|
|
|
private readonly ServerConfiguration _configuration;
|
2024-10-17 23:21:16 -04:00
|
|
|
private ILogger _logger;
|
2024-06-24 18:21:59 -04:00
|
|
|
|
2024-10-18 21:50:46 -04:00
|
|
|
public UpdateTTSUser(ChannelManager channels, Database database, ServerConfiguration configuration, ILogger logger)
|
2024-06-24 18:21:59 -04:00
|
|
|
{
|
|
|
|
_database = database;
|
2024-10-18 21:50:46 -04:00
|
|
|
_channels = channels;
|
2024-10-17 23:21:16 -04:00
|
|
|
_configuration = configuration;
|
2024-06-24 18:21:59 -04:00
|
|
|
_logger = logger;
|
|
|
|
}
|
|
|
|
|
2024-10-17 23:21:16 -04:00
|
|
|
|
2024-08-10 15:36:32 -04:00
|
|
|
public async Task<RequestResult> Grant(string sender, IDictionary<string, object>? data)
|
2024-06-24 18:21:59 -04:00
|
|
|
{
|
2024-08-10 15:36:32 -04:00
|
|
|
if (data == null)
|
|
|
|
{
|
|
|
|
_logger.Warning("Data received from request is null. Ignoring it.");
|
|
|
|
return new RequestResult(false, null);
|
|
|
|
}
|
|
|
|
|
2024-06-24 18:21:59 -04:00
|
|
|
if (long.TryParse(data["chatter"].ToString(), out long chatterId))
|
|
|
|
data["chatter"] = chatterId;
|
|
|
|
if (data["voice"] is JsonElement v)
|
|
|
|
data["voice"] = v.ToString();
|
|
|
|
data["user"] = sender;
|
|
|
|
|
|
|
|
var check = await _database.ExecuteScalar("SELECT state FROM \"TtsVoiceState\" WHERE \"userId\" = @user AND \"ttsVoiceId\" = @voice", data) ?? false;
|
2024-10-18 21:50:46 -04:00
|
|
|
if ((check is not bool state || !state) && chatterId != _configuration.Tts.OwnerId)
|
2024-06-24 18:21:59 -04:00
|
|
|
return new RequestResult(false, null);
|
|
|
|
|
2024-10-18 21:50:46 -04:00
|
|
|
var channel = _channels.Get(sender);
|
|
|
|
if (channel == null)
|
|
|
|
return new RequestResult(false, null);
|
|
|
|
|
|
|
|
channel.Chatters.Set(chatterId.ToString(), new ChatterVoice()
|
|
|
|
{
|
|
|
|
UserId = sender,
|
|
|
|
ChatterId = chatterId.ToString(),
|
|
|
|
VoiceId = data["voice"].ToString()!
|
|
|
|
});
|
2024-08-10 15:36:32 -04:00
|
|
|
_logger.Information($"Updated chatter's [chatter: {data["chatter"]}] selected tts voice [voice: {data["voice"]}] in channel [channel: {sender}]");
|
2024-10-17 23:21:16 -04:00
|
|
|
return new RequestResult(true, null);
|
2024-06-24 18:21:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|