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