jellyfin/MediaBrowser.Common.Implementations/ScheduledTasks/Tasks/SystemUpdateTask.cs

143 lines
4.5 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using MediaBrowser.Common.Kernel;
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;
2013-02-24 22:53:54 +01:00
namespace MediaBrowser.Common.Implementations.ScheduledTasks.Tasks
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Plugin Update Task
/// </summary>
public class SystemUpdateTask : IScheduledTask
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>
/// Gets or sets the kernel.
/// </summary>
/// <value>The kernel.</value>
private IKernel Kernel { 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-02-23 08:57:11 +01:00
/// <param name="kernel">The kernel.</param>
/// <param name="logger">The logger.</param>
public SystemUpdateTask(IApplicationHost appHost, IKernel kernel, ILogger logger)
2013-02-22 05:23:06 +01:00
{
_appHost = appHost;
Kernel = kernel;
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-02-24 22:53:54 +01:00
return new ITaskTrigger[] {
2013-02-21 02:33:05 +01:00
// 1am
new DailyTrigger { TimeOfDay = TimeSpan.FromHours(1) },
new IntervalTrigger { Interval = TimeSpan.FromHours(2)}
};
}
/// <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
if (!_appHost.CanSelfUpdate) return;
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-02-22 05:23:06 +01:00
if (!updateInfo.IsUpdateAvailable)
2013-02-21 02:33:05 +01:00
{
2013-02-22 05:23:06 +01:00
progress.Report(100);
2013-02-21 02:33:05 +01:00
return;
}
cancellationToken.ThrowIfCancellationRequested();
if (Kernel.Configuration.EnableAutoUpdate)
{
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;
2013-02-22 05:23:06 +01:00
await _appHost.UpdateApplication(cancellationToken, innerProgress).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
// Release the event handler
innerProgress.ProgressChanged -= innerProgressHandler;
Kernel.OnApplicationUpdated(updateInfo.AvailableVersion);
}
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"; }
}
2013-02-21 02:33:05 +01:00
}
}