jellyfin/MediaBrowser.Common/Updates/IInstallationManager.cs

120 lines
4.9 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
2019-12-11 00:13:57 +01:00
#pragma warning disable SA1600
using System;
2018-12-28 00:27:57 +01:00
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Common.Plugins;
using MediaBrowser.Model.Events;
using MediaBrowser.Model.Updates;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Common.Updates
{
public interface IInstallationManager : IDisposable
{
event EventHandler<InstallationEventArgs> PackageInstalling;
2019-11-07 10:55:02 +01:00
2018-12-28 00:27:57 +01:00
event EventHandler<InstallationEventArgs> PackageInstallationCompleted;
2019-11-07 10:55:02 +01:00
2018-12-28 00:27:57 +01:00
event EventHandler<InstallationFailedEventArgs> PackageInstallationFailed;
2019-11-07 10:55:02 +01:00
2018-12-28 00:27:57 +01:00
event EventHandler<InstallationEventArgs> PackageInstallationCancelled;
/// <summary>
2019-11-07 10:55:02 +01:00
/// Occurs when a plugin is uninstalled.
2018-12-28 00:27:57 +01:00
/// </summary>
event EventHandler<GenericEventArgs<IPlugin>> PluginUninstalled;
/// <summary>
2019-11-07 10:55:02 +01:00
/// Occurs when a plugin is updated.
2018-12-28 00:27:57 +01:00
/// </summary>
2019-06-14 18:38:14 +02:00
event EventHandler<GenericEventArgs<(IPlugin, PackageVersionInfo)>> PluginUpdated;
2018-12-28 00:27:57 +01:00
/// <summary>
2019-11-07 10:55:02 +01:00
/// Occurs when a plugin is installed.
2018-12-28 00:27:57 +01:00
/// </summary>
event EventHandler<GenericEventArgs<PackageVersionInfo>> PluginInstalled;
/// <summary>
2019-11-09 20:23:09 +01:00
/// Gets the completed installations.
2018-12-28 00:27:57 +01:00
/// </summary>
2019-10-08 20:51:11 +02:00
IEnumerable<InstallationInfo> CompletedInstallations { get; }
2018-12-28 00:27:57 +01:00
/// <summary>
2019-10-08 20:51:11 +02:00
/// Gets all available packages.
2018-12-28 00:27:57 +01:00
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
2019-10-08 20:51:11 +02:00
/// <returns>Task{IReadOnlyList{PackageInfo}}.</returns>
Task<IReadOnlyList<PackageInfo>> GetAvailablePackages(CancellationToken cancellationToken = default);
2018-12-28 00:27:57 +01:00
/// <summary>
2019-10-08 20:51:11 +02:00
/// Returns all plugins matching the requirements.
2018-12-28 00:27:57 +01:00
/// </summary>
2019-10-08 20:51:11 +02:00
/// <param name="availablePackages">The available packages.</param>
/// <param name="name">The name of the plugin.</param>
/// <param name="guid">The id of the plugin.</param>
/// <returns>All plugins matching the requirements.</returns>
IEnumerable<PackageInfo> FilterPackages(
IEnumerable<PackageInfo> availablePackages,
string name = null,
Guid guid = default);
2018-12-28 00:27:57 +01:00
/// <summary>
2019-10-08 20:51:11 +02:00
/// Returns all compatible versions ordered from newest to oldest.
2018-12-28 00:27:57 +01:00
/// </summary>
2019-10-08 20:51:11 +02:00
/// <param name="availableVersions">The available version of the plugin.</param>
/// <param name="minVersion">The minimum required version of the plugin.</param>
/// <param name="classification">The classification of updates.</param>
/// <returns>All compatible versions ordered from newest to oldest.</returns>
IEnumerable<PackageVersionInfo> GetCompatibleVersions(
IEnumerable<PackageVersionInfo> availableVersions,
Version minVersion = null,
PackageVersionClass classification = PackageVersionClass.Release);
2018-12-28 00:27:57 +01:00
/// <summary>
2019-10-08 20:51:11 +02:00
/// Returns all compatible versions ordered from newest to oldest.
2018-12-28 00:27:57 +01:00
/// </summary>
/// <param name="availablePackages">The available packages.</param>
/// <param name="name">The name.</param>
2019-10-08 20:51:11 +02:00
/// <param name="guid">The guid of the plugin.</param>
/// <param name="minVersion">The minimum required version of the plugin.</param>
2018-12-28 00:27:57 +01:00
/// <param name="classification">The classification.</param>
2019-10-08 20:51:11 +02:00
/// <returns>All compatible versions ordered from newest to oldest.</returns>
IEnumerable<PackageVersionInfo> GetCompatibleVersions(
IEnumerable<PackageInfo> availablePackages,
string name = null,
Guid guid = default,
Version minVersion = null,
PackageVersionClass classification = PackageVersionClass.Release);
2018-12-28 00:27:57 +01:00
/// <summary>
2019-10-08 20:51:11 +02:00
/// Returns the available plugin updates.
2018-12-28 00:27:57 +01:00
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
2019-11-09 20:23:09 +01:00
/// <returns>The available plugin updates.</returns>
IAsyncEnumerable<PackageVersionInfo> GetAvailablePluginUpdates(CancellationToken cancellationToken = default);
2018-12-28 00:27:57 +01:00
/// <summary>
/// Installs the package.
/// </summary>
/// <param name="package">The package.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns><see cref="Task" />.</returns>
2019-08-11 15:57:36 +02:00
Task InstallPackage(PackageVersionInfo package, CancellationToken cancellationToken = default);
2018-12-28 00:27:57 +01:00
/// <summary>
2019-12-11 00:13:57 +01:00
/// Uninstalls a plugin.
2018-12-28 00:27:57 +01:00
/// </summary>
/// <param name="plugin">The plugin.</param>
void UninstallPlugin(IPlugin plugin);
2019-06-14 18:38:14 +02:00
/// <summary>
2019-12-11 00:13:57 +01:00
/// Cancels the installation.
2019-06-14 18:38:14 +02:00
/// </summary>
2019-12-11 00:13:57 +01:00
/// <param name="id">The id of the package that is being installed.</param>
/// <returns>Returns true if the install was cancelled.</returns>
2019-06-14 18:38:14 +02:00
bool CancelInstallation(Guid id);
2018-12-28 00:27:57 +01:00
}
}