mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Move actual installation to PackageManager
This commit is contained in:
parent
340280edf2
commit
e15ff541c6
@ -1,12 +1,16 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Security.Cryptography;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using MediaBrowser.Common.Kernel;
|
using MediaBrowser.Common.Kernel;
|
||||||
using MediaBrowser.Common.Net;
|
using MediaBrowser.Common.Net;
|
||||||
using MediaBrowser.Common.Security;
|
using MediaBrowser.Common.Security;
|
||||||
using MediaBrowser.Common.Updates;
|
using MediaBrowser.Common.Updates;
|
||||||
|
using MediaBrowser.Model.IO;
|
||||||
|
using MediaBrowser.Model.Logging;
|
||||||
using MediaBrowser.Model.Serialization;
|
using MediaBrowser.Model.Serialization;
|
||||||
using MediaBrowser.Model.Updates;
|
using MediaBrowser.Model.Updates;
|
||||||
|
|
||||||
@ -39,9 +43,62 @@ namespace MediaBrowser.Common.Implementations.Updates
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Task InstallPackage(PackageVersionInfo package, CancellationToken cancellationToken)
|
public async Task InstallPackage(IHttpClient client, ILogger logger, ResourcePool resourcePool, IProgress<double> progress, IZipClient zipClient, IApplicationPaths appPaths, PackageVersionInfo package, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
// Target based on if it is an archive or single assembly
|
||||||
|
// zip archives are assumed to contain directory structures relative to our ProgramDataPath
|
||||||
|
var isArchive = string.Equals(Path.GetExtension(package.sourceUrl), ".zip", StringComparison.OrdinalIgnoreCase);
|
||||||
|
var target = isArchive ? appPaths.ProgramDataPath : Path.Combine(appPaths.PluginsPath, package.targetFilename);
|
||||||
|
|
||||||
|
// Download to temporary file so that, if interrupted, it won't destroy the existing installation
|
||||||
|
var tempFile = await client.GetTempFile(package.sourceUrl, resourcePool.Mb, cancellationToken, progress).ConfigureAwait(false);
|
||||||
|
|
||||||
|
cancellationToken.ThrowIfCancellationRequested();
|
||||||
|
|
||||||
|
// Validate with a checksum
|
||||||
|
if (package.checksum != Guid.Empty) // support for legacy uploads for now
|
||||||
|
{
|
||||||
|
using (var crypto = new MD5CryptoServiceProvider())
|
||||||
|
using (var stream = new BufferedStream(File.OpenRead(tempFile), 100000))
|
||||||
|
{
|
||||||
|
var check = Guid.Parse(BitConverter.ToString(crypto.ComputeHash(stream)).Replace("-", String.Empty));
|
||||||
|
if (check != package.checksum)
|
||||||
|
{
|
||||||
|
throw new ApplicationException(string.Format("Download validation failed for {0}. Probably corrupted during transfer.", package.name));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
cancellationToken.ThrowIfCancellationRequested();
|
||||||
|
|
||||||
|
// Success - move it to the real target based on type
|
||||||
|
if (isArchive)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
zipClient.ExtractAll(tempFile, target, true);
|
||||||
|
}
|
||||||
|
catch (IOException e)
|
||||||
|
{
|
||||||
|
logger.ErrorException("Error attempting to extract archive from {0} to {1}", e, tempFile, target);
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
File.Copy(tempFile, target, true);
|
||||||
|
File.Delete(tempFile);
|
||||||
|
}
|
||||||
|
catch (IOException e)
|
||||||
|
{
|
||||||
|
logger.ErrorException("Error attempting to move file from {0} to {1}", e, tempFile, target);
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,8 @@ using System.Threading.Tasks;
|
|||||||
using MediaBrowser.Common.Kernel;
|
using MediaBrowser.Common.Kernel;
|
||||||
using MediaBrowser.Common.Net;
|
using MediaBrowser.Common.Net;
|
||||||
using MediaBrowser.Common.Security;
|
using MediaBrowser.Common.Security;
|
||||||
|
using MediaBrowser.Model.IO;
|
||||||
|
using MediaBrowser.Model.Logging;
|
||||||
using MediaBrowser.Model.Serialization;
|
using MediaBrowser.Model.Serialization;
|
||||||
using MediaBrowser.Model.Updates;
|
using MediaBrowser.Model.Updates;
|
||||||
|
|
||||||
@ -34,9 +36,22 @@ namespace MediaBrowser.Common.Updates
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Installs a package.
|
/// Installs a package.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="client"></param>
|
||||||
|
/// <param name="logger"></param>
|
||||||
|
/// <param name="resourcePool"></param>
|
||||||
|
/// <param name="progress"></param>
|
||||||
|
/// <param name="zipClient"></param>
|
||||||
|
/// <param name="appPaths"></param>
|
||||||
/// <param name="package">The package.</param>
|
/// <param name="package">The package.</param>
|
||||||
/// <param name="cancellationToken">The cancellation token.</param>
|
/// <param name="cancellationToken">The cancellation token.</param>
|
||||||
/// <returns>Task.</returns>
|
/// <returns>Task.</returns>
|
||||||
Task InstallPackage(PackageVersionInfo package, CancellationToken cancellationToken);
|
Task InstallPackage(IHttpClient client,
|
||||||
|
ILogger logger,
|
||||||
|
ResourcePool resourcePool,
|
||||||
|
IProgress<double> progress,
|
||||||
|
IZipClient zipClient,
|
||||||
|
IApplicationPaths appPaths,
|
||||||
|
PackageVersionInfo package,
|
||||||
|
CancellationToken cancellationToken);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -429,78 +429,32 @@ namespace MediaBrowser.Controller.Updates
|
|||||||
/// <returns>Task.</returns>
|
/// <returns>Task.</returns>
|
||||||
private async Task InstallPackageInternal(PackageVersionInfo package, IProgress<double> progress, CancellationToken cancellationToken)
|
private async Task InstallPackageInternal(PackageVersionInfo package, IProgress<double> progress, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
// Target based on if it is an archive or single assembly
|
// Do the install
|
||||||
// zip archives are assumed to contain directory structures relative to our ProgramDataPath
|
await _packageManager.InstallPackage(HttpClient, _logger, Kernel.ResourcePools, progress, ZipClient, Kernel.ApplicationPaths, package, cancellationToken).ConfigureAwait(false);
|
||||||
var isArchive = string.Equals(Path.GetExtension(package.sourceUrl), ".zip", StringComparison.OrdinalIgnoreCase);
|
|
||||||
var target = isArchive ? Kernel.ApplicationPaths.ProgramDataPath : Path.Combine(Kernel.ApplicationPaths.PluginsPath, package.targetFilename);
|
|
||||||
|
|
||||||
// Download to temporary file so that, if interrupted, it won't destroy the existing installation
|
// Do plugin-specific processing
|
||||||
var tempFile = await HttpClient.GetTempFile(package.sourceUrl, Kernel.ResourcePools.Mb, cancellationToken, progress).ConfigureAwait(false);
|
if (!(Path.GetExtension(package.targetFilename) ?? "").Equals(".zip", StringComparison.OrdinalIgnoreCase))
|
||||||
|
|
||||||
cancellationToken.ThrowIfCancellationRequested();
|
|
||||||
|
|
||||||
// Validate with a checksum
|
|
||||||
if (package.checksum != Guid.Empty) // support for legacy uploads for now
|
|
||||||
{
|
{
|
||||||
using (var crypto = new MD5CryptoServiceProvider())
|
// Set last update time if we were installed before
|
||||||
using (var stream = new BufferedStream(File.OpenRead(tempFile), 100000))
|
var plugin = Kernel.Plugins.FirstOrDefault(p => p.Name.Equals(package.name, StringComparison.OrdinalIgnoreCase));
|
||||||
|
|
||||||
|
if (plugin != null)
|
||||||
{
|
{
|
||||||
var check = Guid.Parse(BitConverter.ToString(crypto.ComputeHash(stream)).Replace("-", String.Empty));
|
// Synchronize the UpdateClass value
|
||||||
if (check != package.checksum)
|
if (plugin.Configuration.UpdateClass != package.classification)
|
||||||
{
|
{
|
||||||
throw new ApplicationException(string.Format("Download validation failed for {0}. Probably corrupted during transfer.", package.name));
|
plugin.Configuration.UpdateClass = package.classification;
|
||||||
|
plugin.SaveConfiguration();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
OnPluginUpdated(plugin, package);
|
||||||
}
|
}
|
||||||
}
|
else
|
||||||
|
|
||||||
cancellationToken.ThrowIfCancellationRequested();
|
|
||||||
|
|
||||||
// Success - move it to the real target based on type
|
|
||||||
if (isArchive)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
{
|
||||||
ZipClient.ExtractAll(tempFile, target, true);
|
OnPluginInstalled(package);
|
||||||
}
|
|
||||||
catch (IOException e)
|
|
||||||
{
|
|
||||||
_logger.ErrorException("Error attempting to extract archive from {0} to {1}", e, tempFile, target);
|
|
||||||
throw;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
File.Copy(tempFile, target, true);
|
|
||||||
File.Delete(tempFile);
|
|
||||||
}
|
|
||||||
catch (IOException e)
|
|
||||||
{
|
|
||||||
_logger.ErrorException("Error attempting to move file from {0} to {1}", e, tempFile, target);
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set last update time if we were installed before
|
|
||||||
var plugin = Kernel.Plugins.FirstOrDefault(p => p.Name.Equals(package.name, StringComparison.OrdinalIgnoreCase));
|
|
||||||
|
|
||||||
if (plugin != null)
|
|
||||||
{
|
|
||||||
// Synchronize the UpdateClass value
|
|
||||||
if (plugin.Configuration.UpdateClass != package.classification)
|
|
||||||
{
|
|
||||||
plugin.Configuration.UpdateClass = package.classification;
|
|
||||||
plugin.SaveConfiguration();
|
|
||||||
}
|
|
||||||
|
|
||||||
OnPluginUpdated(plugin, package);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
OnPluginInstalled(package);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user