2020-05-29 09:28:19 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
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;
|
2020-04-05 18:34:41 +00:00
|
|
|
using System.Runtime.Serialization;
|
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;
|
2020-09-05 22:58:16 +00:00
|
|
|
using Jellyfin.Data.Events;
|
2016-10-29 05:40:15 +00:00
|
|
|
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;
|
2020-09-30 23:37:30 +00:00
|
|
|
using MediaBrowser.Controller;
|
2019-01-13 19:23:38 +00:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
2020-09-05 22:58:16 +00:00
|
|
|
using MediaBrowser.Controller.Events;
|
|
|
|
using MediaBrowser.Controller.Events.Updates;
|
2016-10-29 05:40:15 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
2020-06-07 12:23:11 +00:00
|
|
|
using MediaBrowser.Model.Net;
|
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;
|
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>
|
2020-02-25 16:58:39 +00:00
|
|
|
/// Manages all install, uninstall, and update operations for the system and individual plugins.
|
2013-02-21 01:33:05 +00:00
|
|
|
/// </summary>
|
2013-03-05 04:25:27 +00:00
|
|
|
public class InstallationManager : IInstallationManager
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-25 16:58:39 +00:00
|
|
|
/// The logger.
|
2013-02-21 21:39:53 +00:00
|
|
|
/// </summary>
|
2020-06-06 00:15:56 +00:00
|
|
|
private readonly ILogger<InstallationManager> _logger;
|
2013-08-07 19:15:55 +00:00
|
|
|
private readonly IApplicationPaths _appPaths;
|
2020-09-05 22:58:16 +00:00
|
|
|
private readonly IEventManager _eventManager;
|
2020-08-31 17:30:05 +00:00
|
|
|
private readonly IHttpClientFactory _httpClientFactory;
|
2013-08-07 19:15:55 +00:00
|
|
|
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>
|
2020-09-30 23:37:30 +00:00
|
|
|
private readonly IServerApplicationHost _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-09-23 21:10:51 +00:00
|
|
|
private readonly object _currentInstallationsLock = new object();
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The current installations.
|
|
|
|
/// </summary>
|
2019-11-07 09:55:02 +00:00
|
|
|
private readonly List<(InstallationInfo info, CancellationTokenSource token)> _currentInstallations;
|
2019-09-23 21:10:51 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The completed installations.
|
|
|
|
/// </summary>
|
2019-11-07 09:55:02 +00:00
|
|
|
private readonly ConcurrentBag<InstallationInfo> _completedInstallationsInternal;
|
2019-09-23 21:10:51 +00:00
|
|
|
|
2019-01-04 21:42:56 +00:00
|
|
|
public InstallationManager(
|
2019-06-14 16:38:14 +00:00
|
|
|
ILogger<InstallationManager> logger,
|
2020-09-30 23:37:30 +00:00
|
|
|
IServerApplicationHost appHost,
|
2019-01-04 21:42:56 +00:00
|
|
|
IApplicationPaths appPaths,
|
2020-09-05 22:58:16 +00:00
|
|
|
IEventManager eventManager,
|
2020-08-31 17:30:05 +00:00
|
|
|
IHttpClientFactory httpClientFactory,
|
2019-01-12 18:52:59 +00:00
|
|
|
IJsonSerializer jsonSerializer,
|
2019-01-04 21:42:56 +00:00
|
|
|
IServerConfigurationManager config,
|
|
|
|
IFileSystem fileSystem,
|
2020-06-22 13:35:53 +00:00
|
|
|
IZipClient zipClient)
|
2013-02-21 01:33:05 +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;
|
2020-09-05 22:58:16 +00:00
|
|
|
_eventManager = eventManager;
|
2020-08-31 17:30:05 +00:00
|
|
|
_httpClientFactory = httpClientFactory;
|
2013-08-07 19:15:55 +00:00
|
|
|
_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
|
|
|
}
|
|
|
|
|
2019-11-07 09:55:02 +00:00
|
|
|
/// <inheritdoc />
|
2019-09-23 21:10:51 +00:00
|
|
|
public IEnumerable<InstallationInfo> CompletedInstallations => _completedInstallationsInternal;
|
|
|
|
|
2019-10-08 18:51:11 +00:00
|
|
|
/// <inheritdoc />
|
2020-11-19 13:34:09 +00:00
|
|
|
public async Task<IList<PackageInfo>> GetPackages(string manifestName, string manifest, CancellationToken cancellationToken = default)
|
2013-06-27 19:08:57 +00:00
|
|
|
{
|
2020-04-05 18:34:41 +00:00
|
|
|
try
|
|
|
|
{
|
2020-08-31 17:30:05 +00:00
|
|
|
using var response = await _httpClientFactory.CreateClient(NamedClient.Default)
|
2020-11-19 13:34:09 +00:00
|
|
|
.GetAsync(new Uri(manifest), cancellationToken).ConfigureAwait(false);
|
2020-11-17 18:43:00 +00:00
|
|
|
await using var stream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
|
2020-08-31 17:30:05 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2020-11-19 13:34:09 +00:00
|
|
|
var package = await _jsonSerializer.DeserializeFromStreamAsync<IList<PackageInfo>>(stream).ConfigureAwait(false);
|
|
|
|
|
|
|
|
// Store the repository and repository url with each version, as they may be spread apart.
|
|
|
|
foreach (var entry in package)
|
|
|
|
{
|
|
|
|
foreach (var ver in entry.versions)
|
|
|
|
{
|
|
|
|
ver.repositoryName = manifestName;
|
|
|
|
ver.repositoryUrl = manifest;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return package;
|
2020-08-31 17:30:05 +00:00
|
|
|
}
|
|
|
|
catch (SerializationException ex)
|
2019-07-29 21:47:25 +00:00
|
|
|
{
|
2020-08-31 17:30:05 +00:00
|
|
|
_logger.LogError(ex, "Failed to deserialize the plugin manifest retrieved from {Manifest}", manifest);
|
|
|
|
return Array.Empty<PackageInfo>();
|
2020-04-05 18:34:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (UriFormatException ex)
|
2016-01-02 21:54:37 +00:00
|
|
|
{
|
2020-06-04 14:57:57 +00:00
|
|
|
_logger.LogError(ex, "The URL configured for the plugin repository manifest URL is not valid: {Manifest}", manifest);
|
2020-06-22 13:35:53 +00:00
|
|
|
return Array.Empty<PackageInfo>();
|
2020-06-06 17:08:05 +00:00
|
|
|
}
|
2020-07-16 14:28:31 +00:00
|
|
|
catch (HttpRequestException ex)
|
|
|
|
{
|
|
|
|
_logger.LogError(ex, "An error occurred while accessing the plugin manifest: {Manifest}", manifest);
|
|
|
|
return Array.Empty<PackageInfo>();
|
|
|
|
}
|
2016-01-02 21:54:37 +00:00
|
|
|
}
|
|
|
|
|
2020-11-19 13:34:09 +00:00
|
|
|
private static void MergeSort(IList<VersionInfo> source, IList<VersionInfo> dest)
|
|
|
|
{
|
|
|
|
int sLength = source.Count - 1;
|
|
|
|
int dLength = dest.Count;
|
|
|
|
int s = 0, d = 0;
|
|
|
|
var sourceVersion = source[0].VersionNumber;
|
|
|
|
var destVersion = dest[0].VersionNumber;
|
|
|
|
|
|
|
|
while (d < dLength)
|
|
|
|
{
|
|
|
|
if (sourceVersion.CompareTo(destVersion) >= 0)
|
|
|
|
{
|
|
|
|
if (s < sLength)
|
|
|
|
{
|
|
|
|
sourceVersion = source[++s].VersionNumber;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Append all of destination to the end of source.
|
|
|
|
while (d < dLength)
|
|
|
|
{
|
|
|
|
source.Add(dest[d++]);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
source.Insert(s++, dest[d++]);
|
|
|
|
if (d >= dLength)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
sLength++;
|
|
|
|
destVersion = dest[d].VersionNumber;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 14:57:57 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public async Task<IReadOnlyList<PackageInfo>> GetAvailablePackages(CancellationToken cancellationToken = default)
|
|
|
|
{
|
|
|
|
var result = new List<PackageInfo>();
|
|
|
|
foreach (RepositoryInfo repository in _config.Configuration.PluginRepositories)
|
|
|
|
{
|
2020-11-19 13:34:09 +00:00
|
|
|
if (repository.Enabled)
|
2020-07-17 15:08:29 +00:00
|
|
|
{
|
2020-11-19 13:34:09 +00:00
|
|
|
// Where repositories have the same content, the details of the first is taken.
|
|
|
|
foreach (var package in await GetPackages(repository.Name, repository.Url, cancellationToken).ConfigureAwait(true))
|
|
|
|
{
|
|
|
|
var existing = FilterPackages(result, package.name, Guid.Parse(package.guid)).FirstOrDefault();
|
|
|
|
if (existing != null)
|
|
|
|
{
|
|
|
|
// Assumption is both lists are ordered, so slot these into the correct place.
|
|
|
|
MergeSort(existing.versions, package.versions);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result.Add(package);
|
|
|
|
}
|
|
|
|
}
|
2020-07-17 15:08:29 +00:00
|
|
|
}
|
2020-06-04 14:57:57 +00:00
|
|
|
}
|
|
|
|
|
2020-06-22 13:35:53 +00:00
|
|
|
return result;
|
2020-06-04 14:57:57 +00:00
|
|
|
}
|
|
|
|
|
2019-10-08 18:51:11 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public IEnumerable<PackageInfo> FilterPackages(
|
|
|
|
IEnumerable<PackageInfo> availablePackages,
|
|
|
|
string name = null,
|
2020-11-19 13:34:09 +00:00
|
|
|
Guid guid = default,
|
|
|
|
Version specificVersion = null)
|
2013-09-30 01:29:38 +00:00
|
|
|
{
|
2019-10-08 18:51:11 +00:00
|
|
|
if (name != null)
|
2013-09-30 01:29:38 +00:00
|
|
|
{
|
2019-10-08 18:51:11 +00:00
|
|
|
availablePackages = availablePackages.Where(x => x.name.Equals(name, StringComparison.OrdinalIgnoreCase));
|
2013-09-30 01:29:38 +00:00
|
|
|
}
|
|
|
|
|
2019-10-08 18:51:11 +00:00
|
|
|
if (guid != Guid.Empty)
|
2013-02-27 12:49:55 +00:00
|
|
|
{
|
2019-12-06 21:06:16 +00:00
|
|
|
availablePackages = availablePackages.Where(x => Guid.Parse(x.guid) == guid);
|
2017-08-24 19:52:19 +00:00
|
|
|
}
|
2017-08-20 19:10:00 +00:00
|
|
|
|
2020-11-19 13:34:09 +00:00
|
|
|
if (specificVersion != null)
|
|
|
|
{
|
|
|
|
availablePackages = availablePackages.Where(x => x.versions.Where(y => y.VersionNumber.Equals(specificVersion)).Any());
|
|
|
|
}
|
|
|
|
|
2019-10-08 18:51:11 +00:00
|
|
|
return availablePackages;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2019-10-11 16:08:41 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-24 06:04:10 +00:00
|
|
|
public IEnumerable<InstallationInfo> GetCompatibleVersions(
|
2019-10-08 18:51:11 +00:00
|
|
|
IEnumerable<PackageInfo> availablePackages,
|
|
|
|
string name = null,
|
|
|
|
Guid guid = default,
|
2020-08-14 14:54:21 +00:00
|
|
|
Version minVersion = null,
|
|
|
|
Version specificVersion = null)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2020-11-19 13:34:09 +00:00
|
|
|
var package = FilterPackages(availablePackages, name, guid, specificVersion).FirstOrDefault();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2020-02-25 16:58:39 +00:00
|
|
|
// Package not found in repository
|
2013-02-21 01:33:05 +00:00
|
|
|
if (package == null)
|
|
|
|
{
|
2020-05-24 06:04:10 +00:00
|
|
|
yield break;
|
|
|
|
}
|
|
|
|
|
|
|
|
var appVer = _applicationHost.ApplicationVersion;
|
|
|
|
var availableVersions = package.versions
|
|
|
|
.Where(x => Version.Parse(x.targetAbi) <= appVer);
|
|
|
|
|
2020-08-14 14:54:21 +00:00
|
|
|
if (specificVersion != null)
|
|
|
|
{
|
2020-11-19 13:34:09 +00:00
|
|
|
availableVersions = availableVersions.Where(x => x.VersionNumber.Equals(specificVersion));
|
2020-08-14 14:54:21 +00:00
|
|
|
}
|
|
|
|
else if (minVersion != null)
|
2020-05-24 06:04:10 +00:00
|
|
|
{
|
2020-11-19 13:34:09 +00:00
|
|
|
availableVersions = availableVersions.Where(x => x.VersionNumber >= minVersion);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2020-11-19 13:34:09 +00:00
|
|
|
foreach (var v in availableVersions.OrderByDescending(x => x.VersionNumber))
|
2020-05-24 06:04:10 +00:00
|
|
|
{
|
|
|
|
yield return new InstallationInfo
|
|
|
|
{
|
|
|
|
Changelog = v.changelog,
|
|
|
|
Guid = new Guid(package.guid),
|
|
|
|
Name = package.name,
|
2020-11-19 13:34:09 +00:00
|
|
|
Version = v.VersionNumber,
|
2020-06-03 18:18:55 +00:00
|
|
|
SourceUrl = v.sourceUrl,
|
|
|
|
Checksum = v.checksum
|
2020-05-24 06:04:10 +00:00
|
|
|
};
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2019-10-08 18:51:11 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-24 06:04:10 +00:00
|
|
|
public async Task<IEnumerable<InstallationInfo>> GetAvailablePluginUpdates(CancellationToken cancellationToken = default)
|
2013-06-27 19:08:57 +00:00
|
|
|
{
|
2019-10-08 18:51:11 +00:00
|
|
|
var catalog = await GetAvailablePackages(cancellationToken).ConfigureAwait(false);
|
2020-04-07 02:04:24 +00:00
|
|
|
return GetAvailablePluginUpdates(catalog);
|
|
|
|
}
|
2017-08-19 19:43:35 +00:00
|
|
|
|
2020-05-24 06:04:10 +00:00
|
|
|
private IEnumerable<InstallationInfo> GetAvailablePluginUpdates(IReadOnlyList<PackageInfo> pluginCatalog)
|
2020-04-07 02:04:24 +00:00
|
|
|
{
|
2020-09-30 23:37:30 +00:00
|
|
|
var plugins = _applicationHost.GetLocalPlugins(_appPaths.PluginsPath);
|
|
|
|
foreach (var plugin in plugins)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2020-08-14 14:54:21 +00:00
|
|
|
var compatibleVersions = GetCompatibleVersions(pluginCatalog, plugin.Name, plugin.Id, minVersion: plugin.Version);
|
|
|
|
var version = compatibleVersions.FirstOrDefault(y => y.Version > plugin.Version);
|
2020-05-24 06:04:10 +00:00
|
|
|
if (version != null && CompletedInstallations.All(x => x.Guid != version.Guid))
|
2019-11-24 16:08:28 +00:00
|
|
|
{
|
|
|
|
yield return version;
|
|
|
|
}
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 21:47:25 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-24 06:04:10 +00:00
|
|
|
public async Task InstallPackage(InstallationInfo 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 innerCancellationTokenSource = new CancellationTokenSource();
|
|
|
|
|
2020-05-24 06:04:10 +00:00
|
|
|
var tuple = (package, 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-09-23 21:10:51 +00:00
|
|
|
lock (_currentInstallationsLock)
|
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
|
|
|
}
|
|
|
|
|
2020-11-17 18:43:00 +00:00
|
|
|
using var linkedTokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, innerCancellationTokenSource.Token);
|
|
|
|
var linkedToken = linkedTokenSource.Token;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2020-09-05 22:58:16 +00:00
|
|
|
await _eventManager.PublishAsync(new PluginInstallingEventArgs(package)).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2020-09-05 22:58:16 +00:00
|
|
|
var isUpdate = await InstallPackageInternal(package, linkedToken).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2019-09-23 21:10:51 +00:00
|
|
|
lock (_currentInstallationsLock)
|
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
|
|
|
}
|
|
|
|
|
2020-05-24 06:04:10 +00:00
|
|
|
_completedInstallationsInternal.Add(package);
|
2020-09-05 22:58:16 +00:00
|
|
|
await _eventManager.PublishAsync(isUpdate
|
|
|
|
? (GenericEventArgs<InstallationInfo>)new PluginUpdatedEventArgs(package)
|
|
|
|
: new PluginInstalledEventArgs(package)).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2020-09-05 22:58:16 +00:00
|
|
|
_applicationHost.NotifyPendingRestart();
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
catch (OperationCanceledException)
|
|
|
|
{
|
2019-09-23 21:10:51 +00:00
|
|
|
lock (_currentInstallationsLock)
|
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
|
|
|
}
|
|
|
|
|
2020-05-24 06:04:10 +00:00
|
|
|
_logger.LogInformation("Package installation cancelled: {0} {1}", package.Name, package.Version);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2020-09-05 22:58:16 +00:00
|
|
|
await _eventManager.PublishAsync(new PluginInstallationCancelledEventArgs(package)).ConfigureAwait(false);
|
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-09-23 21:10:51 +00:00
|
|
|
lock (_currentInstallationsLock)
|
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
|
|
|
|
2020-09-05 22:58:16 +00:00
|
|
|
await _eventManager.PublishAsync(new InstallationFailedEventArgs
|
2013-07-06 21:23:32 +00:00
|
|
|
{
|
2020-05-24 06:04:10 +00:00
|
|
|
InstallationInfo = package,
|
2013-07-06 21:23:32 +00:00
|
|
|
Exception = ex
|
2020-09-05 22:58:16 +00:00
|
|
|
}).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
// Dispose the progress object and remove the installation from the in-progress list
|
2019-10-08 18:51:11 +00:00
|
|
|
tuple.innerCancellationTokenSource.Dispose();
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <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>
|
2020-09-05 22:58:16 +00:00
|
|
|
private async Task<bool> InstallPackageInternal(InstallationInfo 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
|
2020-05-24 06:04:10 +00:00
|
|
|
IPlugin plugin = _applicationHost.Plugins.FirstOrDefault(p => p.Id == package.Guid)
|
|
|
|
?? _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
|
2020-09-05 22:58:16 +00:00
|
|
|
_logger.LogInformation(plugin == null ? "New plugin installed: {0} {1}" : "Plugin updated: {0} {1}", package.Name, package.Version);
|
2019-06-14 16:38:14 +00:00
|
|
|
|
2020-09-05 22:58:16 +00:00
|
|
|
return plugin != null;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2020-05-24 06:04:10 +00:00
|
|
|
private async Task PerformPackageInstallation(InstallationInfo package, CancellationToken cancellationToken)
|
2013-08-07 19:15:55 +00:00
|
|
|
{
|
2020-11-19 13:34:09 +00:00
|
|
|
var extension = Path.GetExtension(package.SourceUrl.ToString());
|
2019-07-29 21:47:25 +00:00
|
|
|
if (!string.Equals(extension, ".zip", StringComparison.OrdinalIgnoreCase))
|
2019-02-11 17:52:09 +00:00
|
|
|
{
|
2020-05-24 06:53:17 +00:00
|
|
|
_logger.LogError("Only zip packages are supported. {SourceUrl} is not a zip archive.", package.SourceUrl);
|
2019-02-11 17:52:09 +00:00
|
|
|
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
|
2020-05-24 06:04:10 +00:00
|
|
|
string targetDir = Path.Combine(_appPaths.PluginsPath, package.Name);
|
2013-08-07 19:15:55 +00:00
|
|
|
|
2020-08-31 17:30:05 +00:00
|
|
|
using var response = await _httpClientFactory.CreateClient(NamedClient.Default)
|
|
|
|
.GetAsync(package.SourceUrl, cancellationToken).ConfigureAwait(false);
|
2020-11-17 18:43:00 +00:00
|
|
|
await using var stream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
|
2020-08-31 17:30:05 +00:00
|
|
|
|
2019-11-07 09:50:55 +00:00
|
|
|
// CA5351: Do Not Use Broken Cryptographic Algorithms
|
2019-07-29 21:47:25 +00:00
|
|
|
#pragma warning disable CA5351
|
2020-08-31 17:30:05 +00:00
|
|
|
using var md5 = MD5.Create();
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-08-07 19:15:55 +00:00
|
|
|
|
2020-08-31 17:30:05 +00:00
|
|
|
var hash = Hex.Encode(md5.ComputeHash(stream));
|
|
|
|
if (!string.Equals(package.Checksum, hash, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
_logger.LogError(
|
|
|
|
"The checksums didn't match while installing {Package}, expected: {Expected}, got: {Received}",
|
|
|
|
package.Name,
|
|
|
|
package.Checksum,
|
|
|
|
hash);
|
|
|
|
throw new InvalidDataException("The checksum of the received data doesn't match.");
|
|
|
|
}
|
2013-08-07 19:15:55 +00:00
|
|
|
|
2020-09-05 19:49:04 +00:00
|
|
|
// Version folder as they cannot be overwritten in Windows.
|
2020-09-08 16:50:19 +00:00
|
|
|
targetDir += "_" + package.Version;
|
2013-08-07 19:15:55 +00:00
|
|
|
|
2020-08-31 17:30:05 +00:00
|
|
|
if (Directory.Exists(targetDir))
|
|
|
|
{
|
2020-09-05 19:49:04 +00:00
|
|
|
try
|
2019-07-29 21:47:25 +00:00
|
|
|
{
|
2020-09-05 19:49:04 +00:00
|
|
|
Directory.Delete(targetDir, true);
|
2019-07-29 21:47:25 +00:00
|
|
|
}
|
2020-09-05 19:49:04 +00:00
|
|
|
catch
|
2019-02-10 22:29:55 +00:00
|
|
|
{
|
2020-09-05 19:49:04 +00:00
|
|
|
// Ignore any exceptions.
|
2013-08-07 19:15:55 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-28 20:04:31 +00:00
|
|
|
|
2020-08-31 17:30:05 +00:00
|
|
|
stream.Position = 0;
|
|
|
|
_zipClient.ExtractAllFromZip(stream, targetDir, true);
|
|
|
|
|
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>
|
2020-02-25 16:58:39 +00:00
|
|
|
/// Uninstalls a plugin.
|
2013-02-21 01:33:05 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="plugin">The plugin.</param>
|
|
|
|
public void UninstallPlugin(IPlugin plugin)
|
|
|
|
{
|
2020-06-22 09:13:28 +00:00
|
|
|
if (!plugin.CanUninstall)
|
|
|
|
{
|
2020-06-22 10:04:20 +00:00
|
|
|
_logger.LogWarning("Attempt to delete non removable plugin {0}, ignoring request", plugin.Name);
|
2020-06-22 09:13:28 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2020-06-21 12:29:35 +00:00
|
|
|
try
|
2019-04-03 23:43:02 +00:00
|
|
|
{
|
2020-06-21 12:29:35 +00:00
|
|
|
if (isDirectory)
|
|
|
|
{
|
|
|
|
_logger.LogInformation("Deleting plugin directory {0}", path);
|
|
|
|
Directory.Delete(path, true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_logger.LogInformation("Deleting plugin file {0}", path);
|
|
|
|
_fileSystem.DeleteFile(path);
|
|
|
|
}
|
2019-04-03 23:43:02 +00:00
|
|
|
}
|
2020-06-21 12:29:35 +00:00
|
|
|
catch
|
2019-04-03 23:43:02 +00:00
|
|
|
{
|
2020-06-21 12:29:35 +00:00
|
|
|
// Ignore file errors.
|
2019-04-03 23:43:02 +00:00
|
|
|
}
|
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();
|
|
|
|
}
|
|
|
|
|
2020-09-05 22:58:16 +00:00
|
|
|
_eventManager.Publish(new PluginUninstalledEventArgs(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)
|
|
|
|
{
|
2019-09-23 21:10:51 +00:00
|
|
|
lock (_currentInstallationsLock)
|
2019-06-14 16:38:14 +00:00
|
|
|
{
|
2020-05-24 06:04:10 +00:00
|
|
|
var install = _currentInstallations.Find(x => x.info.Guid == id);
|
2019-06-14 16:38:14 +00:00
|
|
|
if (install == default((InstallationInfo, CancellationTokenSource)))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-10-08 18:51:11 +00:00
|
|
|
install.token.Cancel();
|
2019-06-14 16:38:14 +00:00
|
|
|
_currentInstallations.Remove(install);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-08 18:51:11 +00:00
|
|
|
/// <inheritdoc />
|
2019-06-14 16:38:14 +00:00
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
2020-05-24 06:04:10 +00:00
|
|
|
/// Releases unmanaged and optionally managed resources.
|
2013-02-21 01:33:05 +00:00
|
|
|
/// </summary>
|
2020-05-24 06:04:10 +00:00
|
|
|
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources or <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-09-23 21:10:51 +00:00
|
|
|
lock (_currentInstallationsLock)
|
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
|
|
|
{
|
2019-10-08 18:51:11 +00:00
|
|
|
tuple.token.Dispose();
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|