mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
* Expose core error logger to plugins and report custom criteria errors Fixes #77 This adds an error logging method on the IObservatoryCore interface that writes the exception details to ObservatoryCore's central error log (found in `${Documents}/ObservatoryErrorLog.txt`). In addition, added a timestamp to each error log. Also updates the Explorer to report Custom Criteria file load errors and execution errors to the log. Also updates HeraldNotifier to report CacheIndex.json parse failures to the error log as well. * Expand debugging/error logging in Herald; cleanup empty mp3 files Herald crashes if attempting to play 0-byte mp3s so if detected, delete, re-request (empty files can occur in some azure failure cases (ie. out of quota). Trap and log errors in other places in HeraldQueue to avoid hard crashes due to weird and wonderful unexpected stuff.
107 lines
3.7 KiB
C#
107 lines
3.7 KiB
C#
using Observatory.Framework;
|
|
using Observatory.Framework.Interfaces;
|
|
using System.Text.Json;
|
|
|
|
namespace Observatory.Herald
|
|
{
|
|
public class HeraldNotifier : IObservatoryNotifier
|
|
{
|
|
public HeraldNotifier()
|
|
{
|
|
heraldSettings = DefaultSettings;
|
|
}
|
|
|
|
private static HeraldSettings DefaultSettings
|
|
{
|
|
get => new HeraldSettings()
|
|
{
|
|
SelectedVoice = "American - Christopher",
|
|
SelectedRate = "Default",
|
|
Volume = 75,
|
|
Enabled = false,
|
|
ApiEndpoint = "https://api.observatory.xjph.net/AzureVoice",
|
|
CacheSize = 100
|
|
};
|
|
}
|
|
|
|
public string Name => "Observatory Herald";
|
|
|
|
public string ShortName => "Herald";
|
|
|
|
public string Version => typeof(HeraldNotifier).Assembly.GetName().Version.ToString();
|
|
|
|
public PluginUI PluginUI => new (PluginUI.UIType.None, null);
|
|
|
|
public object Settings
|
|
{
|
|
get => heraldSettings;
|
|
set
|
|
{
|
|
// Need to perform migration here, older
|
|
// version settings object not fully compatible.
|
|
var savedSettings = (HeraldSettings)value;
|
|
if (string.IsNullOrWhiteSpace(savedSettings.SelectedRate))
|
|
{
|
|
heraldSettings.SelectedVoice = savedSettings.SelectedVoice;
|
|
heraldSettings.Enabled = savedSettings.Enabled;
|
|
}
|
|
else
|
|
{
|
|
heraldSettings = savedSettings;
|
|
}
|
|
}
|
|
}
|
|
public void Load(IObservatoryCore observatoryCore)
|
|
{
|
|
var speechManager = new SpeechRequestManager(
|
|
heraldSettings, observatoryCore.HttpClient, observatoryCore.PluginStorageFolder, observatoryCore.GetPluginErrorLogger(this));
|
|
heraldSpeech = new HeraldQueue(speechManager, observatoryCore.GetPluginErrorLogger(this));
|
|
heraldSettings.Test = TestVoice;
|
|
}
|
|
|
|
private void TestVoice()
|
|
{
|
|
heraldSpeech.Enqueue(
|
|
new NotificationArgs()
|
|
{
|
|
Title = "Herald voice testing",
|
|
Detail = $"This is {heraldSettings.SelectedVoice.Split(" - ")[1]}."
|
|
},
|
|
GetAzureNameFromSetting(heraldSettings.SelectedVoice),
|
|
GetAzureStyleNameFromSetting(heraldSettings.SelectedVoice),
|
|
heraldSettings.Rate[heraldSettings.SelectedRate].ToString(),
|
|
heraldSettings.Volume);
|
|
}
|
|
|
|
public void OnNotificationEvent(NotificationArgs notificationEventArgs)
|
|
{
|
|
if (heraldSettings.Enabled)
|
|
heraldSpeech.Enqueue(
|
|
notificationEventArgs,
|
|
GetAzureNameFromSetting(heraldSettings.SelectedVoice),
|
|
GetAzureStyleNameFromSetting(heraldSettings.SelectedVoice),
|
|
heraldSettings.Rate[heraldSettings.SelectedRate].ToString(),
|
|
heraldSettings.Volume);
|
|
}
|
|
|
|
private string GetAzureNameFromSetting(string settingName)
|
|
{
|
|
var voiceInfo = (JsonElement)heraldSettings.Voices[settingName];
|
|
return voiceInfo.GetProperty("ShortName").GetString();
|
|
}
|
|
|
|
private string GetAzureStyleNameFromSetting(string settingName)
|
|
{
|
|
string[] settingParts = settingName.Split(" - ");
|
|
|
|
if (settingParts.Length == 3)
|
|
return settingParts[2];
|
|
else
|
|
return string.Empty;
|
|
}
|
|
|
|
private HeraldSettings heraldSettings;
|
|
private HeraldQueue heraldSpeech;
|
|
}
|
|
}
|