2024-06-24 18:21:59 -04:00
|
|
|
using HermesSocketLibrary.db;
|
2024-10-18 21:50:46 -04:00
|
|
|
using HermesSocketServer.Models;
|
|
|
|
using HermesSocketServer.Services;
|
2024-06-24 18:21:59 -04:00
|
|
|
using ILogger = Serilog.ILogger;
|
|
|
|
|
|
|
|
namespace HermesSocketServer.Requests
|
|
|
|
{
|
|
|
|
public class CreateTTSUser : IRequest
|
|
|
|
{
|
|
|
|
public string Name => "create_tts_user";
|
2024-10-20 16:39:13 -04:00
|
|
|
public string[] RequiredKeys => ["chatter", "voice"];
|
2024-10-18 21:50:46 -04:00
|
|
|
private ChannelManager _channels;
|
2024-06-24 18:21:59 -04:00
|
|
|
private Database _database;
|
2024-10-18 21:50:46 -04:00
|
|
|
private readonly ServerConfiguration _configuration;
|
2024-06-24 18:21:59 -04:00
|
|
|
private ILogger _logger;
|
|
|
|
|
2024-10-18 21:50:46 -04:00
|
|
|
public CreateTTSUser(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;
|
|
|
|
_configuration = configuration;
|
2024-06-24 18:21:59 -04:00
|
|
|
_logger = logger;
|
|
|
|
}
|
|
|
|
|
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-10-17 23:21:16 -04:00
|
|
|
if (long.TryParse(data["chatter"].ToString(), out long chatterId))
|
|
|
|
data["chatter"] = chatterId;
|
2024-10-17 15:07:00 -04:00
|
|
|
else
|
2024-10-20 16:39:13 -04:00
|
|
|
return RequestResult.Failed("Invalid Twitch user id");
|
|
|
|
|
|
|
|
data["voice"] = data["voice"].ToString();
|
2024-06-24 18:21:59 -04:00
|
|
|
|
|
|
|
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-10-20 16:39:13 -04:00
|
|
|
return RequestResult.Failed("Voice is disabled on this channel.");
|
2024-08-10 15:36:32 -04:00
|
|
|
|
2024-10-18 21:50:46 -04:00
|
|
|
var channel = _channels.Get(sender);
|
2024-10-20 16:39:13 -04:00
|
|
|
bool result = channel.Chatters.Set(chatterId.ToString(), new ChatterVoice()
|
2024-10-18 21:50:46 -04:00
|
|
|
{
|
|
|
|
UserId = sender,
|
2024-10-21 16:44:20 -04:00
|
|
|
ChatterId = chatterId,
|
2024-10-18 21:50:46 -04:00
|
|
|
VoiceId = data["voice"].ToString()!
|
|
|
|
});
|
2024-10-20 16:39:13 -04:00
|
|
|
|
|
|
|
if (result)
|
|
|
|
{
|
|
|
|
_logger.Information($"Selected a tts voice [voice: {data["voice"]}] for user [chatter: {data["chatter"]}] in channel [channel: {data["user"]}]");
|
|
|
|
return RequestResult.Successful(null);
|
|
|
|
}
|
|
|
|
return RequestResult.Failed("Something went wrong when updating the cache.");
|
2024-06-24 18:21:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|