using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using MediaBrowser.Controller; using MediaBrowser.Controller.Library; using MediaBrowser.Model.Tasks; namespace Emby.Server.Implementations.ScheduledTasks { /// /// Class PeopleValidationTask /// public class PeopleValidationTask : IScheduledTask { /// /// The _library manager /// private readonly ILibraryManager _libraryManager; private readonly IServerApplicationHost _appHost; /// /// Initializes a new instance of the class. /// /// The library manager. /// The server application host public PeopleValidationTask(ILibraryManager libraryManager, IServerApplicationHost appHost) { _libraryManager = libraryManager; _appHost = appHost; } /// /// Creates the triggers that define when the task will run /// public IEnumerable GetDefaultTriggers() { return new[] { // Every so often new TaskTriggerInfo { Type = TaskTriggerInfo.TriggerInterval, IntervalTicks = TimeSpan.FromDays(7).Ticks } }; } public string Key => "RefreshPeople"; /// /// Returns the task to be executed /// /// The cancellation token. /// The progress. /// Task. public Task Execute(CancellationToken cancellationToken, IProgress progress) { return _libraryManager.ValidatePeople(cancellationToken, progress); } /// /// Gets the name of the task /// /// The name. public string Name => "Refresh people"; /// /// Gets the description. /// /// The description. public string Description => "Updates metadata for actors and directors in your media library."; /// /// Gets the category. /// /// The category. public string Category => "Library"; } }