Moved Requests classes to here. Added some checks to requests.
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
using System.Text.Json;
|
||||
using HermesSocketLibrary.Requests;
|
||||
using HermesSocketServer.Models;
|
||||
using HermesSocketServer.Store;
|
||||
using ILogger = Serilog.ILogger;
|
||||
@@ -9,6 +7,7 @@ namespace HermesSocketServer.Requests
|
||||
public class CreateTTSVoice : IRequest
|
||||
{
|
||||
public string Name => "create_tts_voice";
|
||||
public string[] RequiredKeys => ["voice"];
|
||||
private IStore<string, Voice> _voices;
|
||||
private ILogger _logger;
|
||||
private Random _random;
|
||||
@@ -23,27 +22,20 @@ namespace HermesSocketServer.Requests
|
||||
|
||||
public async Task<RequestResult> Grant(string sender, IDictionary<string, object>? data)
|
||||
{
|
||||
if (data == null)
|
||||
{
|
||||
_logger.Warning("Data received from request is null. Ignoring it.");
|
||||
return new RequestResult(false, null);
|
||||
}
|
||||
|
||||
if (data["voice"] is JsonElement v)
|
||||
data["voice"] = v.ToString();
|
||||
else
|
||||
return new RequestResult(false, "Invalid voice name.");
|
||||
|
||||
data["voice"] = data["voice"].ToString()!;
|
||||
string id = RandomString(25);
|
||||
|
||||
_voices.Set(id, new Voice()
|
||||
var result = _voices.Set(id, new Voice()
|
||||
{
|
||||
Id = id,
|
||||
Name = data["voice"].ToString()!
|
||||
Name = data["voice"].ToString()
|
||||
});
|
||||
_logger.Information($"Added a new voice [voice: {data["voice"]}][voice id: {id}]");
|
||||
|
||||
return new RequestResult(true, id);
|
||||
if (result) {
|
||||
_logger.Information($"Added a new voice [voice: {data["voice"]}][voice id: {id}]");
|
||||
return RequestResult.Successful(id);
|
||||
}
|
||||
return RequestResult.Failed("Something went wrong when updating the cache.");
|
||||
}
|
||||
|
||||
private string RandomString(int length)
|
||||
|
||||
Reference in New Issue
Block a user