2024-06-24 22:21:59 +00:00
|
|
|
using HermesSocketLibrary.db;
|
2024-10-19 01:50:46 +00:00
|
|
|
using HermesSocketServer.Models;
|
2024-06-24 22:21:59 +00:00
|
|
|
using ILogger = Serilog.ILogger;
|
|
|
|
|
|
|
|
namespace HermesSocketServer.Requests
|
|
|
|
{
|
|
|
|
public class CreateTTSUser : IRequest
|
|
|
|
{
|
|
|
|
public string Name => "create_tts_user";
|
2024-10-20 20:39:13 +00:00
|
|
|
public string[] RequiredKeys => ["chatter", "voice"];
|
2024-06-24 22:21:59 +00:00
|
|
|
private Database _database;
|
2024-10-19 01:50:46 +00:00
|
|
|
private readonly ServerConfiguration _configuration;
|
2024-06-24 22:21:59 +00:00
|
|
|
private ILogger _logger;
|
|
|
|
|
2024-12-27 23:31:36 +00:00
|
|
|
public CreateTTSUser(Database database, ServerConfiguration configuration, ILogger logger)
|
2024-06-24 22:21:59 +00:00
|
|
|
{
|
|
|
|
_database = database;
|
2024-10-19 01:50:46 +00:00
|
|
|
_configuration = configuration;
|
2024-06-24 22:21:59 +00:00
|
|
|
_logger = logger;
|
|
|
|
}
|
|
|
|
|
2024-12-27 23:31:36 +00:00
|
|
|
public async Task<RequestResult> Grant(Channel channel, IDictionary<string, object> data)
|
2024-06-24 22:21:59 +00:00
|
|
|
{
|
2024-12-27 22:28:22 +00:00
|
|
|
if (!long.TryParse(data["chatter"].ToString(), out long chatterId))
|
2024-10-20 20:39:13 +00:00
|
|
|
return RequestResult.Failed("Invalid Twitch user id");
|
2024-12-27 22:28:22 +00:00
|
|
|
|
2024-12-27 23:31:36 +00:00
|
|
|
data["user"] = channel.Id;
|
|
|
|
data["voice"] = data["voice"].ToString()!;
|
2024-06-24 22:21:59 +00:00
|
|
|
|
|
|
|
var check = await _database.ExecuteScalar("SELECT state FROM \"TtsVoiceState\" WHERE \"userId\" = @user AND \"ttsVoiceId\" = @voice", data) ?? false;
|
2024-10-19 01:50:46 +00:00
|
|
|
if ((check is not bool state || !state) && chatterId != _configuration.Tts.OwnerId)
|
2024-10-20 20:39:13 +00:00
|
|
|
return RequestResult.Failed("Voice is disabled on this channel.");
|
2024-08-10 19:36:32 +00:00
|
|
|
|
2024-10-20 20:39:13 +00:00
|
|
|
bool result = channel.Chatters.Set(chatterId.ToString(), new ChatterVoice()
|
2024-10-19 01:50:46 +00:00
|
|
|
{
|
2024-12-27 23:31:36 +00:00
|
|
|
UserId = channel.Id,
|
2024-10-21 20:44:20 +00:00
|
|
|
ChatterId = chatterId,
|
2024-10-19 01:50:46 +00:00
|
|
|
VoiceId = data["voice"].ToString()!
|
|
|
|
});
|
2024-10-20 20:39:13 +00: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 22:21:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|