aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/ScheduledTasks/PluginUpdateTask.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-25 22:43:04 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-25 22:43:04 -0500
commit2d06095447b972c8c7239277428e2c67c8b7ca86 (patch)
tree14278bd4c0732ee962b73ff4845e5022e157a0a3 /MediaBrowser.Controller/ScheduledTasks/PluginUpdateTask.cs
parent364fbb9e0c7586afa296ddd7d739df086f4c3533 (diff)
plugin security fixes and other abstractions
Diffstat (limited to 'MediaBrowser.Controller/ScheduledTasks/PluginUpdateTask.cs')
-rw-r--r--MediaBrowser.Controller/ScheduledTasks/PluginUpdateTask.cs121
1 files changed, 0 insertions, 121 deletions
diff --git a/MediaBrowser.Controller/ScheduledTasks/PluginUpdateTask.cs b/MediaBrowser.Controller/ScheduledTasks/PluginUpdateTask.cs
deleted file mode 100644
index 7a1007f1b..000000000
--- a/MediaBrowser.Controller/ScheduledTasks/PluginUpdateTask.cs
+++ /dev/null
@@ -1,121 +0,0 @@
-using MediaBrowser.Common.ScheduledTasks;
-using MediaBrowser.Model.Logging;
-using MediaBrowser.Model.Net;
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Threading;
-using System.Threading.Tasks;
-
-namespace MediaBrowser.Controller.ScheduledTasks
-{
- /// <summary>
- /// Plugin Update Task
- /// </summary>
- public class PluginUpdateTask : BaseScheduledTask<Kernel>
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="PluginUpdateTask" /> class.
- /// </summary>
- /// <param name="kernel">The kernel.</param>
- /// <param name="logger"></param>
- public PluginUpdateTask(Kernel kernel, ITaskManager taskManager, ILogger logger)
- : base(kernel, taskManager, logger)
- {
- }
-
- /// <summary>
- /// Creates the triggers that define when the task will run
- /// </summary>
- /// <returns>IEnumerable{BaseTaskTrigger}.</returns>
- public override IEnumerable<ITaskTrigger> GetDefaultTriggers()
- {
- return new ITaskTrigger[] {
-
- // 1:30am
- new DailyTrigger { TimeOfDay = TimeSpan.FromHours(1.5) },
-
- new IntervalTrigger { Interval = TimeSpan.FromHours(2)}
- };
- }
-
- /// <summary>
- /// Update installed plugins
- /// </summary>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <param name="progress">The progress.</param>
- /// <returns>Task.</returns>
- protected override async Task ExecuteInternal(CancellationToken cancellationToken, IProgress<double> progress)
- {
- progress.Report(0);
-
- var packagesToInstall = (await Kernel.InstallationManager.GetAvailablePluginUpdates(true, cancellationToken).ConfigureAwait(false)).ToList();
-
- progress.Report(10);
-
- var numComplete = 0;
-
- // Create tasks for each one
- var tasks = packagesToInstall.Select(i => Task.Run(async () =>
- {
- cancellationToken.ThrowIfCancellationRequested();
-
- try
- {
- await Kernel.InstallationManager.InstallPackage(i, new Progress<double> { }, cancellationToken).ConfigureAwait(false);
- }
- catch (OperationCanceledException)
- {
- // InstallPackage has it's own inner cancellation token, so only throw this if it's ours
- if (cancellationToken.IsCancellationRequested)
- {
- throw;
- }
- }
- catch (HttpException ex)
- {
- Logger.ErrorException("Error downloading {0}", ex, i.name);
- }
- catch (IOException ex)
- {
- Logger.ErrorException("Error updating {0}", ex, i.name);
- }
-
- // Update progress
- lock (progress)
- {
- numComplete++;
- double percent = numComplete;
- percent /= packagesToInstall.Count;
-
- progress.Report((90 * percent) + 10);
- }
- }));
-
- cancellationToken.ThrowIfCancellationRequested();
-
- await Task.WhenAll(tasks).ConfigureAwait(false);
-
- progress.Report(100);
- }
-
- /// <summary>
- /// Gets the name of the task
- /// </summary>
- /// <value>The name.</value>
- public override string Name
- {
- get { return "Check for plugin updates"; }
- }
-
- /// <summary>
- /// Gets the description.
- /// </summary>
- /// <value>The description.</value>
- public override string Description
- {
- get { return "Downloads and installs updates for plugins that are configured to update automatically."; }
- }
- }
-} \ No newline at end of file