2019-01-06 20:50:43 +00:00
|
|
|
using System;
|
2016-10-29 05:40:15 +00:00
|
|
|
using System.Collections.Concurrent;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
2019-06-14 16:38:14 +00:00
|
|
|
using System.Net.Http;
|
2019-07-29 21:47:25 +00:00
|
|
|
using System.Security.Cryptography;
|
2016-10-29 05:40:15 +00:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using MediaBrowser.Common;
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2013-02-21 01:33:05 +00:00
|
|
|
using MediaBrowser.Common.Net;
|
|
|
|
using MediaBrowser.Common.Plugins;
|
2013-02-26 20:21:43 +00:00
|
|
|
using MediaBrowser.Common.Updates;
|
2019-01-13 19:23:38 +00:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
2014-05-08 20:09:53 +00:00
|
|
|
using MediaBrowser.Model.Events;
|
2016-10-29 05:40:15 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
2013-02-24 21:53:54 +00:00
|
|
|
using MediaBrowser.Model.Serialization;
|
2013-02-21 01:33:05 +00:00
|
|
|
using MediaBrowser.Model.Updates;
|
2019-01-13 19:23:38 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2019-09-17 16:07:15 +00:00
|
|
|
using static MediaBrowser.Common.HexHelper;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2016-11-02 20:53:50 +00:00
|
|
|
namespace Emby.Server.Implementations.Updates
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Manages all install, uninstall and update operations (both plugins and system)
|
|
|
|
/// </summary>
|
2013-03-05 04:25:27 +00:00
|
|
|
public class InstallationManager : IInstallationManager
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-07-06 21:23:32 +00:00
|
|
|
public event EventHandler<InstallationEventArgs> PackageInstalling;
|
|
|
|
public event EventHandler<InstallationEventArgs> PackageInstallationCompleted;
|
|
|
|
public event EventHandler<InstallationFailedEventArgs> PackageInstallationFailed;
|
|
|
|
public event EventHandler<InstallationEventArgs> PackageInstallationCancelled;
|
2013-03-01 21:22:34 +00:00
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The current installations
|
|
|
|
/// </summary>
|
2019-06-14 16:38:14 +00:00
|
|
|
private List<(InstallationInfo info, CancellationTokenSource token)> _currentInstallations { get; set; }
|
2013-08-07 19:15:55 +00:00
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The completed installations
|
|
|
|
/// </summary>
|
2019-03-25 21:25:32 +00:00
|
|
|
private ConcurrentBag<InstallationInfo> _completedInstallationsInternal;
|
2016-11-03 19:07:48 +00:00
|
|
|
|
2019-03-25 21:25:32 +00:00
|
|
|
public IEnumerable<InstallationInfo> CompletedInstallations => _completedInstallationsInternal;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [plugin uninstalled].
|
|
|
|
/// </summary>
|
|
|
|
public event EventHandler<GenericEventArgs<IPlugin>> PluginUninstalled;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [plugin updated].
|
|
|
|
/// </summary>
|
2019-06-14 16:38:14 +00:00
|
|
|
public event EventHandler<GenericEventArgs<(IPlugin, PackageVersionInfo)>> PluginUpdated;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [plugin updated].
|
|
|
|
/// </summary>
|
|
|
|
public event EventHandler<GenericEventArgs<PackageVersionInfo>> PluginInstalled;
|
|
|
|
|
2013-02-21 21:39:53 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The _logger
|
|
|
|
/// </summary>
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
2013-08-07 19:15:55 +00:00
|
|
|
private readonly IApplicationPaths _appPaths;
|
|
|
|
private readonly IHttpClient _httpClient;
|
|
|
|
private readonly IJsonSerializer _jsonSerializer;
|
2018-09-12 17:26:21 +00:00
|
|
|
private readonly IServerConfigurationManager _config;
|
2015-01-13 03:46:44 +00:00
|
|
|
private readonly IFileSystem _fileSystem;
|
2013-02-25 00:13:45 +00:00
|
|
|
|
2013-02-26 03:43:04 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the application host.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The application host.</value>
|
2013-08-07 19:15:55 +00:00
|
|
|
private readonly IApplicationHost _applicationHost;
|
2013-02-26 03:43:04 +00:00
|
|
|
|
2019-02-10 22:29:55 +00:00
|
|
|
private readonly IZipClient _zipClient;
|
2016-11-02 20:53:50 +00:00
|
|
|
|
2019-01-04 21:42:56 +00:00
|
|
|
public InstallationManager(
|
2019-06-14 16:38:14 +00:00
|
|
|
ILogger<InstallationManager> logger,
|
2019-01-04 21:42:56 +00:00
|
|
|
IApplicationHost appHost,
|
|
|
|
IApplicationPaths appPaths,
|
|
|
|
IHttpClient httpClient,
|
2019-01-12 18:52:59 +00:00
|
|
|
IJsonSerializer jsonSerializer,
|
2019-01-04 21:42:56 +00:00
|
|
|
IServerConfigurationManager config,
|
|
|
|
IFileSystem fileSystem,
|
2019-03-25 21:25:32 +00:00
|
|
|
IZipClient zipClient)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
if (logger == null)
|
2013-02-23 17:54:51 +00:00
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
throw new ArgumentNullException(nameof(logger));
|
2013-02-23 17:54:51 +00:00
|
|
|
}
|
2013-02-24 21:53:54 +00:00
|
|
|
|
2019-06-14 16:38:14 +00:00
|
|
|
_currentInstallations = new List<(InstallationInfo, CancellationTokenSource)>();
|
2019-03-25 21:25:32 +00:00
|
|
|
_completedInstallationsInternal = new ConcurrentBag<InstallationInfo>();
|
2013-08-07 19:15:55 +00:00
|
|
|
|
2019-06-14 16:38:14 +00:00
|
|
|
_logger = logger;
|
2013-08-07 19:15:55 +00:00
|
|
|
_applicationHost = appHost;
|
|
|
|
_appPaths = appPaths;
|
|
|
|
_httpClient = httpClient;
|
|
|
|
_jsonSerializer = jsonSerializer;
|
2013-08-30 14:05:44 +00:00
|
|
|
_config = config;
|
2015-01-13 03:46:44 +00:00
|
|
|
_fileSystem = fileSystem;
|
2019-02-10 22:29:55 +00:00
|
|
|
_zipClient = zipClient;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets all available packages.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>Task{List{PackageInfo}}.</returns>
|
2019-06-14 16:38:14 +00:00
|
|
|
public async Task<List<PackageInfo>> GetAvailablePackages(
|
|
|
|
CancellationToken cancellationToken,
|
2015-08-24 20:37:34 +00:00
|
|
|
bool withRegistration = true,
|
2016-10-08 05:57:38 +00:00
|
|
|
string packageType = null,
|
2013-02-21 01:33:05 +00:00
|
|
|
Version applicationVersion = null)
|
|
|
|
{
|
2019-01-30 18:16:31 +00:00
|
|
|
var packages = await GetAvailablePackagesWithoutRegistrationInfo(cancellationToken).ConfigureAwait(false);
|
|
|
|
return FilterPackages(packages, packageType, applicationVersion);
|
2013-06-27 19:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets all available packages.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
/// <returns>Task{List{PackageInfo}}.</returns>
|
2017-08-24 19:52:19 +00:00
|
|
|
public async Task<List<PackageInfo>> GetAvailablePackagesWithoutRegistrationInfo(CancellationToken cancellationToken)
|
2013-06-27 19:08:57 +00:00
|
|
|
{
|
2019-07-29 21:47:25 +00:00
|
|
|
using (var response = await _httpClient.SendAsync(
|
|
|
|
new HttpRequestOptions
|
|
|
|
{
|
|
|
|
Url = "https://repo.jellyfin.org/releases/plugin/manifest.json",
|
|
|
|
CancellationToken = cancellationToken,
|
|
|
|
CacheMode = CacheMode.Unconditional,
|
|
|
|
CacheLength = GetCacheLength()
|
|
|
|
},
|
|
|
|
HttpMethod.Get).ConfigureAwait(false))
|
|
|
|
using (Stream stream = response.Content)
|
2016-01-02 21:54:37 +00:00
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
return FilterPackages(await _jsonSerializer.DeserializeFromStreamAsync<PackageInfo[]>(stream).ConfigureAwait(false));
|
2016-01-02 21:54:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static TimeSpan GetCacheLength()
|
2016-01-02 21:54:37 +00:00
|
|
|
{
|
2017-08-23 16:48:51 +00:00
|
|
|
return TimeSpan.FromMinutes(3);
|
2013-06-27 19:08:57 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 19:52:19 +00:00
|
|
|
protected List<PackageInfo> FilterPackages(IEnumerable<PackageInfo> packages)
|
2013-09-30 01:29:38 +00:00
|
|
|
{
|
2017-08-24 19:52:19 +00:00
|
|
|
var list = new List<PackageInfo>();
|
2017-08-20 21:07:47 +00:00
|
|
|
|
2013-09-30 01:29:38 +00:00
|
|
|
foreach (var package in packages)
|
|
|
|
{
|
2017-08-24 19:52:19 +00:00
|
|
|
var versions = new List<PackageVersionInfo>();
|
|
|
|
foreach (var version in package.versions)
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
if (string.IsNullOrEmpty(version.sourceUrl))
|
2017-08-24 19:52:19 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
versions.Add(version);
|
|
|
|
}
|
|
|
|
|
|
|
|
package.versions = versions
|
2019-06-14 16:38:14 +00:00
|
|
|
.OrderByDescending(x => x.Version)
|
2017-08-24 19:52:19 +00:00
|
|
|
.ToArray();
|
|
|
|
|
|
|
|
if (package.versions.Length == 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
list.Add(package);
|
2013-09-30 01:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Remove packages with no versions
|
2017-08-24 19:52:19 +00:00
|
|
|
return list;
|
2013-09-30 01:29:38 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 19:52:19 +00:00
|
|
|
protected List<PackageInfo> FilterPackages(IEnumerable<PackageInfo> packages, string packageType, Version applicationVersion)
|
2013-06-27 19:08:57 +00:00
|
|
|
{
|
2017-08-24 19:52:19 +00:00
|
|
|
var packagesList = FilterPackages(packages);
|
2013-08-07 19:15:55 +00:00
|
|
|
|
2017-08-24 19:52:19 +00:00
|
|
|
var returnList = new List<PackageInfo>();
|
2017-08-20 19:10:00 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
var filterOnPackageType = !string.IsNullOrEmpty(packageType);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2017-08-24 19:52:19 +00:00
|
|
|
foreach (var p in packagesList)
|
2013-02-27 12:49:55 +00:00
|
|
|
{
|
2017-08-24 19:52:19 +00:00
|
|
|
if (filterOnPackageType && !string.Equals(p.type, packageType, StringComparison.OrdinalIgnoreCase))
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2017-08-24 19:52:19 +00:00
|
|
|
continue;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 19:52:19 +00:00
|
|
|
// If an app version was supplied, filter the versions for each package to only include supported versions
|
|
|
|
if (applicationVersion != null)
|
|
|
|
{
|
|
|
|
p.versions = p.versions.Where(v => IsPackageVersionUpToDate(v, applicationVersion)).ToArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p.versions.Length == 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
returnList.Add(p);
|
|
|
|
}
|
2017-08-20 19:10:00 +00:00
|
|
|
|
2017-08-24 19:52:19 +00:00
|
|
|
return returnList;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Determines whether [is package version up to date] [the specified package version info].
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="packageVersionInfo">The package version info.</param>
|
2013-09-22 18:21:55 +00:00
|
|
|
/// <param name="currentServerVersion">The current server version.</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <returns><c>true</c> if [is package version up to date] [the specified package version info]; otherwise, <c>false</c>.</returns>
|
2019-01-06 20:50:43 +00:00
|
|
|
private static bool IsPackageVersionUpToDate(PackageVersionInfo packageVersionInfo, Version currentServerVersion)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
if (string.IsNullOrEmpty(packageVersionInfo.requiredVersionStr))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-01-13 20:46:33 +00:00
|
|
|
return Version.TryParse(packageVersionInfo.requiredVersionStr, out var requiredVersion) && currentServerVersion >= requiredVersion;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the package.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="name">The name.</param>
|
2013-11-04 18:16:47 +00:00
|
|
|
/// <param name="guid">The assembly guid</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <param name="classification">The classification.</param>
|
|
|
|
/// <param name="version">The version.</param>
|
|
|
|
/// <returns>Task{PackageVersionInfo}.</returns>
|
2013-11-04 18:16:47 +00:00
|
|
|
public async Task<PackageVersionInfo> GetPackage(string name, string guid, PackageVersionClass classification, Version version)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2017-02-26 21:47:52 +00:00
|
|
|
var packages = await GetAvailablePackages(CancellationToken.None, false).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2014-07-13 04:55:56 +00:00
|
|
|
var package = packages.FirstOrDefault(p => string.Equals(p.guid, guid ?? "none", StringComparison.OrdinalIgnoreCase))
|
2013-11-04 18:16:47 +00:00
|
|
|
?? packages.FirstOrDefault(p => p.name.Equals(name, StringComparison.OrdinalIgnoreCase));
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
if (package == null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-06-14 16:38:14 +00:00
|
|
|
return package.versions.FirstOrDefault(v => v.Version == version && v.classification == classification);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the latest compatible version.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="name">The name.</param>
|
2013-11-04 18:16:47 +00:00
|
|
|
/// <param name="guid">The assembly guid if this is a plug-in</param>
|
2013-09-22 18:21:55 +00:00
|
|
|
/// <param name="currentServerVersion">The current server version.</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <param name="classification">The classification.</param>
|
|
|
|
/// <returns>Task{PackageVersionInfo}.</returns>
|
2013-11-04 18:16:47 +00:00
|
|
|
public async Task<PackageVersionInfo> GetLatestCompatibleVersion(string name, string guid, Version currentServerVersion, PackageVersionClass classification = PackageVersionClass.Release)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2017-02-26 21:47:52 +00:00
|
|
|
var packages = await GetAvailablePackages(CancellationToken.None, false).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2013-11-04 18:16:47 +00:00
|
|
|
return GetLatestCompatibleVersion(packages, name, guid, currentServerVersion, classification);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the latest compatible version.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="availablePackages">The available packages.</param>
|
|
|
|
/// <param name="name">The name.</param>
|
2013-09-22 18:21:55 +00:00
|
|
|
/// <param name="currentServerVersion">The current server version.</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <param name="classification">The classification.</param>
|
|
|
|
/// <returns>PackageVersionInfo.</returns>
|
2013-11-04 18:16:47 +00:00
|
|
|
public PackageVersionInfo GetLatestCompatibleVersion(IEnumerable<PackageInfo> availablePackages, string name, string guid, Version currentServerVersion, PackageVersionClass classification = PackageVersionClass.Release)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2014-07-13 04:55:56 +00:00
|
|
|
var package = availablePackages.FirstOrDefault(p => string.Equals(p.guid, guid ?? "none", StringComparison.OrdinalIgnoreCase))
|
2013-11-04 18:16:47 +00:00
|
|
|
?? availablePackages.FirstOrDefault(p => p.name.Equals(name, StringComparison.OrdinalIgnoreCase));
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2019-08-11 13:57:36 +00:00
|
|
|
return package?.versions
|
2019-06-14 16:38:14 +00:00
|
|
|
.OrderByDescending(x => x.Version)
|
2013-09-22 18:21:55 +00:00
|
|
|
.FirstOrDefault(v => v.classification <= classification && IsPackageVersionUpToDate(v, currentServerVersion));
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2013-08-16 18:59:37 +00:00
|
|
|
/// Gets the available plugin updates.
|
2013-02-21 01:33:05 +00:00
|
|
|
/// </summary>
|
2013-09-30 15:04:38 +00:00
|
|
|
/// <param name="applicationVersion">The current server version.</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <param name="withAutoUpdateEnabled">if set to <c>true</c> [with auto update enabled].</param>
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
/// <returns>Task{IEnumerable{PackageVersionInfo}}.</returns>
|
2013-09-30 15:04:38 +00:00
|
|
|
public async Task<IEnumerable<PackageVersionInfo>> GetAvailablePluginUpdates(Version applicationVersion, bool withAutoUpdateEnabled, CancellationToken cancellationToken)
|
2013-06-27 19:08:57 +00:00
|
|
|
{
|
2017-08-19 19:43:35 +00:00
|
|
|
var catalog = await GetAvailablePackagesWithoutRegistrationInfo(cancellationToken).ConfigureAwait(false);
|
|
|
|
|
2019-06-14 16:38:14 +00:00
|
|
|
var systemUpdateLevel = _applicationHost.SystemUpdateLevel;
|
2017-04-10 01:51:36 +00:00
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
// Figure out what needs to be installed
|
2017-08-19 19:43:35 +00:00
|
|
|
return _applicationHost.Plugins.Select(p =>
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2017-04-10 01:51:36 +00:00
|
|
|
var latestPluginInfo = GetLatestCompatibleVersion(catalog, p.Name, p.Id.ToString(), applicationVersion, systemUpdateLevel);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2019-06-14 16:38:14 +00:00
|
|
|
return latestPluginInfo != null && latestPluginInfo.Version > p.Version ? latestPluginInfo : null;
|
2017-08-19 19:43:35 +00:00
|
|
|
}).Where(i => i != null)
|
2018-09-12 17:26:21 +00:00
|
|
|
.Where(p => !string.IsNullOrEmpty(p.sourceUrl) && !CompletedInstallations.Any(i => string.Equals(i.AssemblyGuid, p.guid, StringComparison.OrdinalIgnoreCase)));
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 21:47:25 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public async Task InstallPackage(PackageVersionInfo package, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
if (package == null)
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(package));
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var installationInfo = new InstallationInfo
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
Id = Guid.NewGuid(),
|
2013-02-21 01:33:05 +00:00
|
|
|
Name = package.name,
|
2013-11-04 18:16:47 +00:00
|
|
|
AssemblyGuid = package.guid,
|
2013-02-21 01:33:05 +00:00
|
|
|
UpdateClass = package.classification,
|
|
|
|
Version = package.versionStr
|
|
|
|
};
|
|
|
|
|
|
|
|
var innerCancellationTokenSource = new CancellationTokenSource();
|
|
|
|
|
2019-06-14 16:38:14 +00:00
|
|
|
var tuple = (installationInfo, innerCancellationTokenSource);
|
2013-02-24 21:53:54 +00:00
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
// Add it to the in-progress list
|
2019-06-14 16:38:14 +00:00
|
|
|
lock (_currentInstallations)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
_currentInstallations.Add(tuple);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var linkedToken = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, innerCancellationTokenSource.Token).Token;
|
|
|
|
|
2013-07-06 21:23:32 +00:00
|
|
|
var installationEventArgs = new InstallationEventArgs
|
|
|
|
{
|
|
|
|
InstallationInfo = installationInfo,
|
|
|
|
PackageVersionInfo = package
|
|
|
|
};
|
|
|
|
|
2018-12-28 14:21:02 +00:00
|
|
|
PackageInstalling?.Invoke(this, installationEventArgs);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2019-07-29 21:47:25 +00:00
|
|
|
await InstallPackageInternal(package, linkedToken).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2019-06-14 16:38:14 +00:00
|
|
|
lock (_currentInstallations)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
_currentInstallations.Remove(tuple);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2019-03-25 21:25:32 +00:00
|
|
|
_completedInstallationsInternal.Add(installationInfo);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2018-12-28 14:21:02 +00:00
|
|
|
PackageInstallationCompleted?.Invoke(this, installationEventArgs);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
catch (OperationCanceledException)
|
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
lock (_currentInstallations)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
_currentInstallations.Remove(tuple);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2018-12-13 13:18:25 +00:00
|
|
|
_logger.LogInformation("Package installation cancelled: {0} {1}", package.name, package.versionStr);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2018-12-28 14:21:02 +00:00
|
|
|
PackageInstallationCancelled?.Invoke(this, installationEventArgs);
|
2013-02-24 21:53:54 +00:00
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
throw;
|
|
|
|
}
|
2013-03-16 16:41:49 +00:00
|
|
|
catch (Exception ex)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
_logger.LogError(ex, "Package installation failed");
|
2013-03-16 16:41:49 +00:00
|
|
|
|
2019-06-14 16:38:14 +00:00
|
|
|
lock (_currentInstallations)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
_currentInstallations.Remove(tuple);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
2013-02-24 21:53:54 +00:00
|
|
|
|
2018-12-28 14:21:02 +00:00
|
|
|
PackageInstallationFailed?.Invoke(this, new InstallationFailedEventArgs
|
2013-07-06 21:23:32 +00:00
|
|
|
{
|
|
|
|
InstallationInfo = installationInfo,
|
|
|
|
Exception = ex
|
2018-12-28 14:21:02 +00:00
|
|
|
});
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
// Dispose the progress object and remove the installation from the in-progress list
|
|
|
|
tuple.Item2.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Installs the package internal.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="package">The package.</param>
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2019-07-29 21:47:25 +00:00
|
|
|
/// <returns><see cref="Task" />.</returns>
|
|
|
|
private async Task InstallPackageInternal(PackageVersionInfo package, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
// Set last update time if we were installed before
|
|
|
|
IPlugin plugin = _applicationHost.Plugins.FirstOrDefault(p => string.Equals(p.Id.ToString(), package.guid, StringComparison.OrdinalIgnoreCase))
|
2018-09-12 17:26:21 +00:00
|
|
|
?? _applicationHost.Plugins.FirstOrDefault(p => p.Name.Equals(package.name, StringComparison.OrdinalIgnoreCase));
|
2019-06-14 16:38:14 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
// Do the install
|
2019-07-29 21:47:25 +00:00
|
|
|
await PerformPackageInstallation(package, cancellationToken).ConfigureAwait(false);
|
2013-02-27 13:34:24 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
// Do plugin-specific processing
|
2019-06-14 16:38:14 +00:00
|
|
|
if (plugin == null)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
_logger.LogInformation("New plugin installed: {0} {1} {2}", package.name, package.versionStr ?? string.Empty, package.classification);
|
|
|
|
|
|
|
|
PluginInstalled?.Invoke(this, new GenericEventArgs<PackageVersionInfo>(package));
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
2019-06-14 16:38:14 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
_logger.LogInformation("Plugin updated: {0} {1} {2}", package.name, package.versionStr ?? string.Empty, package.classification);
|
|
|
|
|
|
|
|
PluginUpdated?.Invoke(this, new GenericEventArgs<(IPlugin, PackageVersionInfo)>((plugin, package)));
|
|
|
|
}
|
|
|
|
|
|
|
|
_applicationHost.NotifyPendingRestart();
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 21:47:25 +00:00
|
|
|
private async Task PerformPackageInstallation(PackageVersionInfo package, CancellationToken cancellationToken)
|
2013-08-07 19:15:55 +00:00
|
|
|
{
|
2013-09-30 00:51:04 +00:00
|
|
|
var extension = Path.GetExtension(package.targetFilename);
|
2019-07-29 21:47:25 +00:00
|
|
|
if (!string.Equals(extension, ".zip", StringComparison.OrdinalIgnoreCase))
|
2019-02-11 17:52:09 +00:00
|
|
|
{
|
|
|
|
_logger.LogError("Only zip packages are supported. {Filename} is not a zip archive.", package.targetFilename);
|
|
|
|
return;
|
|
|
|
}
|
2019-02-11 17:53:35 +00:00
|
|
|
|
2019-04-03 23:43:02 +00:00
|
|
|
// Always override the passed-in target (which is a file) and figure it out again
|
2019-07-29 21:47:25 +00:00
|
|
|
string targetDir = Path.Combine(_appPaths.PluginsPath, package.name);
|
2013-08-07 19:15:55 +00:00
|
|
|
|
2019-07-29 21:47:25 +00:00
|
|
|
// CA5351: Do Not Use Broken Cryptographic Algorithms
|
|
|
|
#pragma warning disable CA5351
|
|
|
|
using (var res = await _httpClient.SendAsync(
|
|
|
|
new HttpRequestOptions
|
|
|
|
{
|
|
|
|
Url = package.sourceUrl,
|
|
|
|
CancellationToken = cancellationToken,
|
|
|
|
// We need it to be buffered for setting the position
|
|
|
|
BufferContent = true
|
|
|
|
},
|
|
|
|
HttpMethod.Get).ConfigureAwait(false))
|
|
|
|
using (var stream = res.Content)
|
|
|
|
using (var md5 = MD5.Create())
|
2013-08-07 19:15:55 +00:00
|
|
|
{
|
2019-07-29 21:47:25 +00:00
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-08-07 19:15:55 +00:00
|
|
|
|
2019-09-17 16:07:15 +00:00
|
|
|
var hash = ToHexString(md5.ComputeHash(stream));
|
2019-07-29 21:47:25 +00:00
|
|
|
if (!string.Equals(package.checksum, hash, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
_logger.LogDebug("{0}, {1}", package.checksum, hash);
|
|
|
|
throw new InvalidDataException($"The checksums didn't match while installing {package.name}.");
|
|
|
|
}
|
2019-04-03 23:43:02 +00:00
|
|
|
|
2019-07-29 21:47:25 +00:00
|
|
|
if (Directory.Exists(targetDir))
|
2019-02-10 22:29:55 +00:00
|
|
|
{
|
2019-07-29 21:47:25 +00:00
|
|
|
Directory.Delete(targetDir);
|
2013-08-07 19:15:55 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 21:47:25 +00:00
|
|
|
stream.Position = 0;
|
|
|
|
_zipClient.ExtractAllFromZip(stream, targetDir, true);
|
2013-08-07 19:15:55 +00:00
|
|
|
}
|
2019-07-29 21:47:25 +00:00
|
|
|
|
|
|
|
#pragma warning restore CA5351
|
2013-08-07 19:15:55 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Uninstalls a plugin
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="plugin">The plugin.</param>
|
|
|
|
public void UninstallPlugin(IPlugin plugin)
|
|
|
|
{
|
|
|
|
plugin.OnUninstalling();
|
|
|
|
|
|
|
|
// Remove it the quick way for now
|
2013-08-07 19:15:55 +00:00
|
|
|
_applicationHost.RemovePlugin(plugin);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2017-05-08 18:06:36 +00:00
|
|
|
var path = plugin.AssemblyFilePath;
|
2019-04-04 05:54:31 +00:00
|
|
|
bool isDirectory = false;
|
2019-04-03 23:43:02 +00:00
|
|
|
// Check if we have a plugin directory we should remove too
|
|
|
|
if (Path.GetDirectoryName(plugin.AssemblyFilePath) != _appPaths.PluginsPath)
|
|
|
|
{
|
|
|
|
path = Path.GetDirectoryName(plugin.AssemblyFilePath);
|
2019-04-04 05:54:31 +00:00
|
|
|
isDirectory = true;
|
2019-04-03 23:43:02 +00:00
|
|
|
}
|
2016-12-17 20:52:05 +00:00
|
|
|
|
2017-05-08 18:06:36 +00:00
|
|
|
// Make this case-insensitive to account for possible incorrect assembly naming
|
2019-01-26 20:47:11 +00:00
|
|
|
var file = _fileSystem.GetFilePaths(Path.GetDirectoryName(path))
|
2017-05-08 18:06:36 +00:00
|
|
|
.FirstOrDefault(i => string.Equals(i, path, StringComparison.OrdinalIgnoreCase));
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(file))
|
|
|
|
{
|
|
|
|
path = file;
|
|
|
|
}
|
|
|
|
|
2019-04-04 05:54:31 +00:00
|
|
|
if (isDirectory)
|
2019-04-03 23:43:02 +00:00
|
|
|
{
|
2019-04-04 05:54:31 +00:00
|
|
|
_logger.LogInformation("Deleting plugin directory {0}", path);
|
2019-04-03 23:43:02 +00:00
|
|
|
Directory.Delete(path, true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-04-04 05:54:31 +00:00
|
|
|
_logger.LogInformation("Deleting plugin file {0}", path);
|
2019-04-03 23:43:02 +00:00
|
|
|
_fileSystem.DeleteFile(path);
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
var list = _config.Configuration.UninstalledPlugins.ToList();
|
|
|
|
var filename = Path.GetFileName(path);
|
|
|
|
if (!list.Contains(filename, StringComparer.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
list.Add(filename);
|
|
|
|
_config.Configuration.UninstalledPlugins = list.ToArray();
|
|
|
|
_config.SaveConfiguration();
|
|
|
|
}
|
|
|
|
|
2019-06-14 16:38:14 +00:00
|
|
|
PluginUninstalled?.Invoke(this, new GenericEventArgs<IPlugin> { Argument = plugin });
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2013-08-07 19:15:55 +00:00
|
|
|
_applicationHost.NotifyPendingRestart();
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2019-06-14 16:38:14 +00:00
|
|
|
/// <inheritdoc/>
|
|
|
|
public bool CancelInstallation(Guid id)
|
|
|
|
{
|
|
|
|
lock (_currentInstallations)
|
|
|
|
{
|
|
|
|
var install = _currentInstallations.Find(x => x.Item1.Id == id);
|
|
|
|
if (install == default((InstallationInfo, CancellationTokenSource)))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
install.Item2.Cancel();
|
|
|
|
_currentInstallations.Remove(install);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Releases unmanaged and - optionally - managed resources.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
|
2013-03-05 04:25:27 +00:00
|
|
|
protected virtual void Dispose(bool dispose)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
if (dispose)
|
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
lock (_currentInstallations)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-06-14 16:38:14 +00:00
|
|
|
foreach (var tuple in _currentInstallations)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
tuple.Item2.Dispose();
|
|
|
|
}
|
|
|
|
|
2019-06-14 16:38:14 +00:00
|
|
|
_currentInstallations.Clear();
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|
2013-03-05 04:25:27 +00:00
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|