Redid stores. Added user store. Added Channel Manager, to manage data from a single channel.
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
using System.Text.Json;
|
||||
using System.Threading.Channels;
|
||||
using HermesSocketLibrary.db;
|
||||
using HermesSocketLibrary.Requests;
|
||||
using HermesSocketServer.Models;
|
||||
using HermesSocketServer.Services;
|
||||
using HermesSocketServer.Store;
|
||||
using ILogger = Serilog.ILogger;
|
||||
|
||||
@@ -10,15 +13,15 @@ namespace HermesSocketServer.Requests
|
||||
{
|
||||
public string Name => "update_tts_user";
|
||||
|
||||
private ChannelManager _channels;
|
||||
private Database _database;
|
||||
private readonly ServerConfiguration _configuration;
|
||||
private readonly Database _database;
|
||||
private ChatterStore _chatters;
|
||||
private ILogger _logger;
|
||||
|
||||
public UpdateTTSUser(ChatterStore chatters, Database database, ServerConfiguration configuration, ILogger logger)
|
||||
public UpdateTTSUser(ChannelManager channels, Database database, ServerConfiguration configuration, ILogger logger)
|
||||
{
|
||||
_database = database;
|
||||
_chatters = chatters;
|
||||
_channels = channels;
|
||||
_configuration = configuration;
|
||||
_logger = logger;
|
||||
}
|
||||
@@ -39,12 +42,19 @@ namespace HermesSocketServer.Requests
|
||||
data["user"] = sender;
|
||||
|
||||
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.OwnerId)
|
||||
{
|
||||
if ((check is not bool state || !state) && chatterId != _configuration.Tts.OwnerId)
|
||||
return new RequestResult(false, null);
|
||||
}
|
||||
|
||||
_chatters.Set(sender, chatterId, data["voice"].ToString());
|
||||
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()!
|
||||
});
|
||||
_logger.Information($"Updated chatter's [chatter: {data["chatter"]}] selected tts voice [voice: {data["voice"]}] in channel [channel: {sender}]");
|
||||
return new RequestResult(true, null);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user