54 lines
2.1 KiB
C#
54 lines
2.1 KiB
C#
using HermesSocketLibrary.db;
|
|
using HermesSocketServer.Models;
|
|
using HermesSocketServer.Services;
|
|
using ILogger = Serilog.ILogger;
|
|
|
|
namespace HermesSocketServer.Requests
|
|
{
|
|
public class CreateTTSUser : IRequest
|
|
{
|
|
public string Name => "create_tts_user";
|
|
public string[] RequiredKeys => ["chatter", "voice"];
|
|
private ChannelManager _channels;
|
|
private Database _database;
|
|
private readonly ServerConfiguration _configuration;
|
|
private ILogger _logger;
|
|
|
|
public CreateTTSUser(ChannelManager channels, Database database, ServerConfiguration configuration, ILogger logger)
|
|
{
|
|
_database = database;
|
|
_channels = channels;
|
|
_configuration = configuration;
|
|
_logger = logger;
|
|
}
|
|
|
|
public async Task<RequestResult> Grant(string sender, IDictionary<string, object>? data)
|
|
{
|
|
if (long.TryParse(data["chatter"].ToString(), out long chatterId))
|
|
data["chatter"] = chatterId;
|
|
else
|
|
return RequestResult.Failed("Invalid Twitch user id");
|
|
|
|
data["voice"] = data["voice"].ToString();
|
|
|
|
var check = await _database.ExecuteScalar("SELECT state FROM \"TtsVoiceState\" WHERE \"userId\" = @user AND \"ttsVoiceId\" = @voice", data) ?? false;
|
|
if ((check is not bool state || !state) && chatterId != _configuration.Tts.OwnerId)
|
|
return RequestResult.Failed("Voice is disabled on this channel.");
|
|
|
|
var channel = _channels.Get(sender);
|
|
bool result = channel.Chatters.Set(chatterId.ToString(), new ChatterVoice()
|
|
{
|
|
UserId = sender,
|
|
ChatterId = chatterId,
|
|
VoiceId = data["voice"].ToString()!
|
|
});
|
|
|
|
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.");
|
|
}
|
|
}
|
|
} |