From 3eb4091808735858b01855d298226d239be464af Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 3 Nov 2016 02:37:52 -0400 Subject: move additional classes to new server lib --- .../ScheduledTasks/RefreshMediaLibraryTask.cs | 96 ++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 Emby.Server.Implementations/ScheduledTasks/RefreshMediaLibraryTask.cs (limited to 'Emby.Server.Implementations/ScheduledTasks/RefreshMediaLibraryTask.cs') diff --git a/Emby.Server.Implementations/ScheduledTasks/RefreshMediaLibraryTask.cs b/Emby.Server.Implementations/ScheduledTasks/RefreshMediaLibraryTask.cs new file mode 100644 index 000000000..fb07b8e99 --- /dev/null +++ b/Emby.Server.Implementations/ScheduledTasks/RefreshMediaLibraryTask.cs @@ -0,0 +1,96 @@ +using MediaBrowser.Controller.Configuration; +using MediaBrowser.Controller.Library; +using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using Emby.Server.Implementations.Library; +using MediaBrowser.Model.Tasks; + +namespace Emby.Server.Implementations.ScheduledTasks +{ + /// + /// Class RefreshMediaLibraryTask + /// + public class RefreshMediaLibraryTask : IScheduledTask + { + /// + /// The _library manager + /// + private readonly ILibraryManager _libraryManager; + private readonly IServerConfigurationManager _config; + + /// + /// Initializes a new instance of the class. + /// + /// The library manager. + public RefreshMediaLibraryTask(ILibraryManager libraryManager, IServerConfigurationManager config) + { + _libraryManager = libraryManager; + _config = config; + } + + /// + /// Creates the triggers that define when the task will run + /// + /// IEnumerable{BaseTaskTrigger}. + public IEnumerable GetDefaultTriggers() + { + return new[] { + + // Every so often + new TaskTriggerInfo { Type = TaskTriggerInfo.TriggerInterval, IntervalTicks = TimeSpan.FromHours(12).Ticks} + }; + } + + /// + /// Executes the internal. + /// + /// The cancellation token. + /// The progress. + /// Task. + public Task Execute(CancellationToken cancellationToken, IProgress progress) + { + cancellationToken.ThrowIfCancellationRequested(); + + progress.Report(0); + + return ((LibraryManager)_libraryManager).ValidateMediaLibraryInternal(progress, cancellationToken); + } + + /// + /// Gets the name. + /// + /// The name. + public string Name + { + get { return "Scan media library"; } + } + + /// + /// Gets the description. + /// + /// The description. + public string Description + { + get { return "Scans your media library and refreshes metatata based on configuration."; } + } + + /// + /// Gets the category. + /// + /// The category. + public string Category + { + get + { + return "Library"; + } + } + + public string Key + { + get { return "RefreshLibrary"; } + } + } +} -- cgit v1.2.3