2024-06-24 18:21:59 -04:00
|
|
|
using System.Text.Json;
|
|
|
|
using HermesSocketLibrary.Requests;
|
2024-10-17 15:07:00 -04:00
|
|
|
using HermesSocketServer.Store;
|
2024-06-24 18:21:59 -04:00
|
|
|
using ILogger = Serilog.ILogger;
|
|
|
|
|
|
|
|
namespace HermesSocketServer.Requests
|
|
|
|
{
|
|
|
|
public class DeleteTTSVoice : IRequest
|
|
|
|
{
|
|
|
|
public string Name => "delete_tts_voice";
|
2024-10-17 15:07:00 -04:00
|
|
|
private IStore<string, string> _voices;
|
2024-06-24 18:21:59 -04:00
|
|
|
private ILogger _logger;
|
|
|
|
|
2024-10-17 15:07:00 -04:00
|
|
|
public DeleteTTSVoice(VoiceStore voices, ILogger logger)
|
2024-06-24 18:21:59 -04:00
|
|
|
{
|
2024-10-17 15:07:00 -04:00
|
|
|
_voices = voices;
|
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-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 (data["voice"] is JsonElement v)
|
|
|
|
data["voice"] = v.ToString();
|
|
|
|
|
2024-10-17 15:07:00 -04:00
|
|
|
_voices.Remove(data["voice"].ToString());
|
2024-08-10 15:36:32 -04:00
|
|
|
_logger.Information($"Deleted a voice by id [voice id: {data["voice"]}]");
|
2024-10-17 15:07:00 -04:00
|
|
|
return new RequestResult(true, null);
|
2024-06-24 18:21:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|