2024-06-24 18:21:59 -04:00
|
|
|
using System.Text.Json;
|
|
|
|
using HermesSocketLibrary.db;
|
|
|
|
using HermesSocketLibrary.Requests;
|
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
|
|
|
|
|
|
|
private readonly ServerConfiguration _configuration;
|
2024-06-24 18:21:59 -04:00
|
|
|
private readonly Database _database;
|
2024-10-17 23:21:16 -04:00
|
|
|
private ChatterStore _chatters;
|
|
|
|
private ILogger _logger;
|
2024-06-24 18:21:59 -04:00
|
|
|
|
2024-10-17 23:21:16 -04:00
|
|
|
public UpdateTTSUser(ChatterStore chatters, Database database, ServerConfiguration configuration, ILogger logger)
|
2024-06-24 18:21:59 -04:00
|
|
|
{
|
|
|
|
_database = database;
|
2024-10-17 23:21:16 -04:00
|
|
|
_chatters = chatters;
|
|
|
|
_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-08-10 15:36:32 -04:00
|
|
|
if ((check is not bool state || !state) && chatterId != _configuration.OwnerId)
|
2024-06-24 18:21:59 -04:00
|
|
|
{
|
|
|
|
return new RequestResult(false, null);
|
|
|
|
}
|
|
|
|
|
2024-10-17 23:21:16 -04:00
|
|
|
_chatters.Set(sender, chatterId, 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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|