2013-02-21 01:33:05 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2015-12-13 02:31:37 +00:00
|
|
|
using MediaBrowser.Controller;
|
2019-01-13 19:22:24 +00:00
|
|
|
using MediaBrowser.Controller.Library;
|
2016-10-23 19:14:57 +00:00
|
|
|
using MediaBrowser.Model.Tasks;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2016-11-02 20:58:51 +00:00
|
|
|
namespace Emby.Server.Implementations.ScheduledTasks
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class PeopleValidationTask
|
|
|
|
/// </summary>
|
2013-02-26 03:43:04 +00:00
|
|
|
public class PeopleValidationTask : IScheduledTask
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-02-28 19:32:41 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The _library manager
|
|
|
|
/// </summary>
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2013-02-26 03:43:04 +00:00
|
|
|
|
2015-12-13 02:31:37 +00:00
|
|
|
private readonly IServerApplicationHost _appHost;
|
|
|
|
|
2013-02-23 07:57:11 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="PeopleValidationTask" /> class.
|
|
|
|
/// </summary>
|
2013-02-28 19:32:41 +00:00
|
|
|
/// <param name="libraryManager">The library manager.</param>
|
2019-01-06 20:50:43 +00:00
|
|
|
/// <param name="appHost">The server application host</param>
|
2015-12-13 02:31:37 +00:00
|
|
|
public PeopleValidationTask(ILibraryManager libraryManager, IServerApplicationHost appHost)
|
2013-02-23 07:57:11 +00:00
|
|
|
{
|
2013-02-28 19:32:41 +00:00
|
|
|
_libraryManager = libraryManager;
|
2015-12-13 02:31:37 +00:00
|
|
|
_appHost = appHost;
|
2013-02-23 07:57:11 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Creates the triggers that define when the task will run
|
|
|
|
/// </summary>
|
2016-10-23 19:14:57 +00:00
|
|
|
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-01-07 23:27:46 +00:00
|
|
|
return new[]
|
|
|
|
{
|
2016-10-23 19:14:57 +00:00
|
|
|
// Every so often
|
2016-12-03 20:00:41 +00:00
|
|
|
new TaskTriggerInfo
|
|
|
|
{
|
|
|
|
Type = TaskTriggerInfo.TriggerInterval,
|
|
|
|
IntervalTicks = TimeSpan.FromDays(7).Ticks
|
|
|
|
}
|
2016-10-23 19:14:57 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00: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>
|
2013-02-26 03:43:04 +00:00
|
|
|
public Task Execute(CancellationToken cancellationToken, IProgress<double> progress)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-02-28 19:32:41 +00:00
|
|
|
return _libraryManager.ValidatePeople(cancellationToken, progress);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
public string Name => "Refresh people";
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
public string Description => "Updates metadata for actors and directors in your media library.";
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
public string Category => "Library";
|
2019-01-31 06:20:34 +00:00
|
|
|
|
|
|
|
public string Key => "RefreshPeople";
|
|
|
|
|
|
|
|
public bool IsHidden => false;
|
|
|
|
|
|
|
|
public bool IsEnabled => true;
|
|
|
|
|
|
|
|
public bool IsLogged => true;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|