2024-03-12 14:05:27 -04:00
|
|
|
using TwitchChatTTS.Helpers;
|
|
|
|
using TwitchChatTTS;
|
2024-01-05 05:07:41 -05:00
|
|
|
using TwitchChatTTS.Hermes;
|
2024-03-12 14:05:27 -04:00
|
|
|
using System.Text.Json;
|
2023-12-30 04:27:31 -05:00
|
|
|
|
|
|
|
public class HermesClient {
|
2024-03-12 14:05:27 -04:00
|
|
|
private WebClientWrap _web;
|
2023-12-30 04:27:31 -05:00
|
|
|
|
2024-03-12 14:05:27 -04:00
|
|
|
public HermesClient(Configuration configuration) {
|
2024-03-15 08:27:35 -04:00
|
|
|
if (string.IsNullOrWhiteSpace(configuration.Hermes?.Token)) {
|
2023-12-30 04:27:31 -05:00
|
|
|
throw new Exception("Ensure you have written your API key in \".token\" file, in the same folder as this application.");
|
|
|
|
}
|
|
|
|
|
2024-03-12 14:05:27 -04:00
|
|
|
_web = new WebClientWrap(new JsonSerializerOptions() {
|
|
|
|
PropertyNameCaseInsensitive = false,
|
|
|
|
PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower
|
|
|
|
});
|
2024-03-15 08:27:35 -04:00
|
|
|
_web.AddHeader("x-api-key", configuration.Hermes.Token);
|
2023-12-30 04:27:31 -05:00
|
|
|
}
|
|
|
|
|
2024-03-15 08:27:35 -04:00
|
|
|
public async Task<Account> FetchHermesAccountDetails() {
|
|
|
|
var account = await _web.GetJson<Account>("https://hermes.goblincaves.com/api/account");
|
|
|
|
if (account == null || account.Id == null || account.Username == null)
|
|
|
|
throw new NullReferenceException("Invalid value found while fetching for hermes account data.");
|
|
|
|
return account;
|
2023-12-30 04:27:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public async Task<TwitchBotToken> FetchTwitchBotToken() {
|
2024-01-05 05:07:41 -05:00
|
|
|
var token = await _web.GetJson<TwitchBotToken>("https://hermes.goblincaves.com/api/token/bot");
|
2024-03-15 08:27:35 -04:00
|
|
|
if (token == null || token.ClientId == null || token.AccessToken == null || token.RefreshToken == null || token.ClientSecret == null)
|
2023-12-30 04:27:31 -05:00
|
|
|
throw new Exception("Failed to fetch Twitch API token from Hermes.");
|
|
|
|
|
|
|
|
return token;
|
|
|
|
}
|
2024-01-05 05:07:41 -05:00
|
|
|
|
|
|
|
public async Task<IEnumerable<TTSUsernameFilter>> FetchTTSUsernameFilters() {
|
|
|
|
var filters = await _web.GetJson<IEnumerable<TTSUsernameFilter>>("https://hermes.goblincaves.com/api/settings/tts/filter/users");
|
2024-03-15 08:27:35 -04:00
|
|
|
if (filters == null)
|
2024-01-05 05:07:41 -05:00
|
|
|
throw new Exception("Failed to fetch TTS username filters from Hermes.");
|
|
|
|
|
|
|
|
return filters;
|
|
|
|
}
|
|
|
|
|
2024-03-15 08:27:35 -04:00
|
|
|
public async Task<string> FetchTTSDefaultVoice() {
|
2024-01-05 05:07:41 -05:00
|
|
|
var data = await _web.GetJson<TTSVoice>("https://hermes.goblincaves.com/api/settings/tts/default");
|
2024-03-15 08:27:35 -04:00
|
|
|
if (data == null)
|
2024-01-05 05:07:41 -05:00
|
|
|
throw new Exception("Failed to fetch TTS default voice from Hermes.");
|
|
|
|
|
2024-03-12 14:05:27 -04:00
|
|
|
return data.Label;
|
2024-01-05 05:07:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public async Task<IEnumerable<TTSVoice>> FetchTTSEnabledVoices() {
|
|
|
|
var voices = await _web.GetJson<IEnumerable<TTSVoice>>("https://hermes.goblincaves.com/api/settings/tts");
|
2024-03-15 08:27:35 -04:00
|
|
|
if (voices == null)
|
2024-01-05 05:07:41 -05:00
|
|
|
throw new Exception("Failed to fetch TTS enabled voices from Hermes.");
|
|
|
|
|
|
|
|
return voices;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task<IEnumerable<TTSWordFilter>> FetchTTSWordFilters() {
|
|
|
|
var filters = await _web.GetJson<IEnumerable<TTSWordFilter>>("https://hermes.goblincaves.com/api/settings/tts/filter/words");
|
2024-03-15 08:27:35 -04:00
|
|
|
if (filters == null)
|
2024-01-05 05:07:41 -05:00
|
|
|
throw new Exception("Failed to fetch TTS word filters from Hermes.");
|
|
|
|
|
|
|
|
return filters;
|
|
|
|
}
|
2023-12-30 04:27:31 -05:00
|
|
|
}
|