using System; using System.Net.Http; using Observatory.Framework.Files; using Observatory.Framework.Files.Journal; namespace Observatory.Framework.Interfaces { /// /// Base plugin interface containing methods common to both notifiers and workers. /// Note: Not intended to be implemented on its own and will not define a functional plugin. Use IObservatoryWorker, IObservatoryNotifier, or both, as appropriate. /// public interface IObservatoryPlugin { /// /// This method will be called on startup by Observatory Core when a plugin is first loaded. /// Passes the Core interface to the plugin. /// /// Object implementing Observatory Core's main interface. A reference to this object should be maintained by the plugin for communication back to Core. public void Load(IObservatoryCore observatoryCore); /// /// Full name of the plugin. Displayed in the Core settings tab's plugin list. /// public string Name { get; } /// /// Short name of the plugin. Used as the tab title for the plugin UI.
/// Can be omitted, in which case the full Name will be used. ///
public string ShortName { get => Name; } /// /// Version string displayed in the Core settings tab's plugin list.
/// Potentially used for automated version checking. (Not yet implemented) ///
public string Version { get; } /// /// Reference to plugin UI to display within its tab. /// public PluginUI PluginUI { get; } /// /// Accessors for plugin settings object. Should be initialized with a default state during the plugin constructor. /// Saving and loading of settings is handled by Observatory Core, and any previously saved settings will be set after plugin instantiation, but before Load() is called. /// A plugin's settings class is expected to consist of properties with public getters and setters. The settings UI will be automatically generated based on each property type.
/// The [SettingDisplayName(string name)] attribute can be used to specify a display name, otherwise the name of the property will be used.
/// Private or internal properties and methods are ignored and can be used for backing values or any other purpose.
/// If a public property is necessary but not required to be user accessible the [SettingIgnore] property will suppress display.
///
public object Settings { get; set; } } /// /// Interface for worker plugins which process journal data to update their UI or send notifications. /// Work required on plugin startup — for example object instantiation — can be done in the constructor or Load() method.
/// Be aware that saved settings will not be available until Load() is called.
///
public interface IObservatoryWorker : IObservatoryPlugin { /// /// Method called when new journal data is processed. Most work done by worker plugins will occur here. /// /// Specific type of journal entry being received. /// Elite Dangerous journal event, deserialized into a .NET object. /// Unhandled json values within a journal entry type will be contained in member property:
Dictionary<string, object> AdditionalProperties.
/// Unhandled journal event types will be type JournalBase with all values contained in AdditionalProperties. public void JournalEvent(TJournal journal) where TJournal : JournalBase; /// /// Method called when status.json content is updated.
/// Can be omitted for plugins which do not use this data. ///
/// Player status.json content, deserialized into a .NET object. public void StatusChange(Status status) { } /// /// Called when the LogMonitor changes state. Useful for suppressing output in certain situations /// such as batch reads (ie. "Read all") or responding to other state transitions. /// public void LogMonitorStateChanged(LogMonitorStateChangedEventArgs eventArgs) { } /// /// Method called when the user begins "Read All" journal processing, before any journal events are sent.
/// Used to track if a "Read All" operation is in progress or not to avoid unnecessary processing or notifications.
/// Can be omitted for plugins which do not require the distinction. ///
[Obsolete] // Replaced by LogMonitorStateChanged public void ReadAllStarted() { } /// /// Method called when "Read All" journal processing completes.
/// Used to track if a "Read All" operation is in progress or not to avoid unnecessary processing or notifications.
/// Can be omitted for plugins which do not require the distinction. ///
[Obsolete] // Replaced by LogMonitorStateChanged public void ReadAllFinished() { } } /// /// Interface for notifier plugins which receive notification events from other plugins for any purpose. /// Work required on plugin startup — for example object instantiation — can be done in the constructor or Load() method.
/// Be aware that saved settings will not be available until Load() is called.
///
public interface IObservatoryNotifier : IObservatoryPlugin { /// /// Method called when other plugins send notification events to Observatory Core. /// /// Details of the notification as sent from the originating worker plugin. public void OnNotificationEvent(NotificationArgs notificationEventArgs); } /// /// Interface passed by Observatory Core to plugins. Primarily used for sending notifications and UI updates back to Core. /// public interface IObservatoryCore { /// /// Send a notification out to all native notifiers and any plugins implementing IObservatoryNotifier. /// /// Title text for notification. /// Detail/body text for notificaiton. /// Guid associated with the notification during its lifetime. Used as an argument with CancelNotification and UpdateNotification. public Guid SendNotification(string title, string detail); /// /// Send a notification with arguments out to all native notifiers and any plugins implementing IObservatoryNotifier. /// /// NotificationArgs object specifying notification content and behaviour. /// Guid associated with the notification during its lifetime. Used as an argument with CancelNotification and UpdateNotification. public Guid SendNotification(NotificationArgs notificationEventArgs); /// /// Cancel or close an active notification. /// /// Guid of notification to be cancelled. public void CancelNotification(Guid notificationId); /// /// Update an active notification with a new set of NotificationsArgs. Timeout values are reset and begin counting again from zero if specified. /// /// Guid of notification to be updated. /// NotificationArgs object specifying updated notification content and behaviour. public void UpdateNotification(Guid notificationId, NotificationArgs notificationEventArgs); /// /// Add an item to the bottom of the basic UI grid. /// /// Reference to the calling plugin's worker interface. /// Grid item to be added. Object type should match original template item used to create the grid. public void AddGridItem(IObservatoryWorker worker, object item); /// /// Add multiple items to the bottom of the basic UI grid. /// /// Reference to the calling plugin's worker interface. /// Grid items to be added. Object types should match original template item used to create the grid. public void AddGridItems(IObservatoryWorker worker, IEnumerable items); /// /// Add multiple items to the bottom of the basic UI grid. /// /// Reference to the calling plugin's worker interface. /// Grid items to be added. Object types should match original template item used to create the grid. public void AddGridItems(IObservatoryWorker worker, IEnumerable items); /// /// Clears basic UI grid, removing all items. /// /// Reference to the calling plugin's worker interface. /// Template item used to re-initialise the grid. public void ClearGrid(IObservatoryWorker worker, object templateItem); /// /// Requests current Elite Dangerous status.json content. /// /// Status object reflecting current Elite Dangerous player status. public Status GetStatus(); /// /// Version string of Observatory Core. /// public string Version { get; } /// /// Returns a delegate for logging an error for the calling plugin. A plugin can wrap this method /// or pass it along to its collaborators. /// /// The calling plugin public Action GetPluginErrorLogger(IObservatoryPlugin plugin); /// /// Perform an action on the current Avalonia UI thread. /// /// public void ExecuteOnUIThread(Action action); /// /// Shared application HttpClient object. Provided so that plugins can adhere to .NET recommended behaviour of a single HttpClient object per application. /// public HttpClient HttpClient { get; } /// /// Returns the current LogMonitor state. /// public LogMonitorState CurrentLogMonitorState { get; } /// /// Returns true if the current LogMonitor state represents a batch-read mode. /// public bool IsLogMonitorBatchReading { get; } /// /// Retrieves and ensures creation of a location which can be used by the plugin to store persistent data. /// public string PluginStorageFolder { get; } } }