jellyfin/MediaBrowser.Server.Implementations/ScheduledTasks/SystemUpdateTask.cs

150 lines
4.9 KiB
C#
Raw Normal View History

2014-09-06 22:09:35 +02:00
using MediaBrowser.Common;
using MediaBrowser.Common.Configuration;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Common.ScheduledTasks;
2013-02-23 08:57:11 +01:00
using MediaBrowser.Model.Logging;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
2014-09-06 22:09:35 +02:00
namespace MediaBrowser.Server.Implementations.ScheduledTasks
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Plugin Update Task
/// </summary>
2014-04-04 00:50:04 +02:00
public class SystemUpdateTask : IScheduledTask, IHasKey
2013-02-21 02:33:05 +01:00
{
2013-02-22 05:23:06 +01:00
/// <summary>
/// The _app host
/// </summary>
private readonly IApplicationHost _appHost;
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets or sets the configuration manager.
/// </summary>
2013-03-04 06:43:06 +01:00
/// <value>The configuration manager.</value>
private IConfigurationManager ConfigurationManager { get; set; }
/// <summary>
/// Gets or sets the logger.
/// </summary>
/// <value>The logger.</value>
private ILogger Logger { get; set; }
2013-02-22 05:23:06 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="SystemUpdateTask" /> class.
/// </summary>
/// <param name="appHost">The app host.</param>
2013-03-04 06:43:06 +01:00
/// <param name="configurationManager">The configuration manager.</param>
2013-02-23 08:57:11 +01:00
/// <param name="logger">The logger.</param>
2013-03-07 06:34:00 +01:00
public SystemUpdateTask(IApplicationHost appHost, IConfigurationManager configurationManager, ILogger logger)
2013-02-22 05:23:06 +01:00
{
_appHost = appHost;
2013-03-04 06:43:06 +01:00
ConfigurationManager = configurationManager;
Logger = logger;
2013-02-22 05:23:06 +01:00
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Creates the triggers that define when the task will run
/// </summary>
/// <returns>IEnumerable{BaseTaskTrigger}.</returns>
public IEnumerable<ITaskTrigger> GetDefaultTriggers()
2013-02-21 02:33:05 +01:00
{
2013-08-28 04:31:39 +02:00
// Until we can vary these default triggers per server and MBT, we need something that makes sense for both
2013-02-24 22:53:54 +01:00
return new ITaskTrigger[] {
2013-02-21 02:33:05 +01:00
2013-08-16 20:43:11 +02:00
// At startup
2014-08-12 01:41:11 +02:00
new StartupTrigger(),
2013-02-21 02:33:05 +01:00
2013-08-16 20:43:11 +02:00
// Every so often
new IntervalTrigger { Interval = TimeSpan.FromHours(24)}
2013-02-21 02:33:05 +01:00
};
}
/// <summary>
/// Returns the task to be executed
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task.</returns>
public async Task Execute(CancellationToken cancellationToken, IProgress<double> progress)
2013-02-21 02:33:05 +01:00
{
2013-02-22 05:23:06 +01:00
EventHandler<double> innerProgressHandler = (sender, e) => progress.Report(e * .1);
2013-02-21 02:33:05 +01:00
// Create a progress object for the update check
2013-02-22 05:23:06 +01:00
var innerProgress = new Progress<double>();
2013-02-21 02:33:05 +01:00
innerProgress.ProgressChanged += innerProgressHandler;
2013-02-22 05:23:06 +01:00
var updateInfo = await _appHost.CheckForApplicationUpdate(cancellationToken, innerProgress).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
// Release the event handler
innerProgress.ProgressChanged -= innerProgressHandler;
2013-02-22 05:23:06 +01:00
progress.Report(10);
2013-02-21 02:33:05 +01:00
2013-03-03 00:50:10 +01:00
if (!updateInfo.IsUpdateAvailable)
{
2013-11-12 16:36:08 +01:00
Logger.Debug("No application update available.");
2013-03-03 00:50:10 +01:00
progress.Report(100);
return;
}
2013-02-21 02:33:05 +01:00
cancellationToken.ThrowIfCancellationRequested();
2014-04-28 17:05:28 +02:00
if (!_appHost.CanSelfUpdate) return;
2013-03-04 06:43:06 +01:00
if (ConfigurationManager.CommonConfiguration.EnableAutoUpdate)
2013-02-21 02:33:05 +01:00
{
Logger.Info("Update Revision {0} available. Updating...", updateInfo.AvailableVersion);
2013-02-22 05:23:06 +01:00
innerProgressHandler = (sender, e) => progress.Report((e * .9) + .1);
2013-02-21 02:33:05 +01:00
2013-02-22 05:23:06 +01:00
innerProgress = new Progress<double>();
2013-02-21 02:33:05 +01:00
innerProgress.ProgressChanged += innerProgressHandler;
await _appHost.UpdateApplication(updateInfo.Package, cancellationToken, innerProgress).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
// Release the event handler
innerProgress.ProgressChanged -= innerProgressHandler;
}
else
{
Logger.Info("A new version of Media Browser is available.");
}
2013-02-22 05:23:06 +01:00
progress.Report(100);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the name of the task
/// </summary>
/// <value>The name.</value>
public string Name
2013-02-21 02:33:05 +01:00
{
get { return "Check for application updates"; }
}
/// <summary>
/// Gets the description.
/// </summary>
/// <value>The description.</value>
public string Description
2013-02-21 02:33:05 +01:00
{
get { return "Downloads and installs application updates."; }
}
/// <summary>
/// Gets the category.
/// </summary>
/// <value>The category.</value>
public string Category
{
get { return "Application"; }
}
2014-04-04 00:50:04 +02:00
public string Key
{
get { return "SystemUpdateTask"; }
}
2013-02-21 02:33:05 +01:00
}
}