2020-05-29 09:28:19 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2019-01-13 19:22:24 +00:00
|
|
|
using MediaBrowser.Controller.Library;
|
2020-03-26 19:28:30 +00:00
|
|
|
using MediaBrowser.Model.Globalization;
|
2021-04-17 10:37:55 +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>
|
2020-02-01 13:27:25 +00:00
|
|
|
/// Class PeopleValidationTask.
|
2013-02-21 01:33:05 +00:00
|
|
|
/// </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>
|
2020-02-01 13:27:25 +00:00
|
|
|
/// The library manager.
|
2013-02-28 19:32:41 +00:00
|
|
|
/// </summary>
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2020-03-26 19:28:30 +00:00
|
|
|
private readonly ILocalizationManager _localization;
|
2015-12-13 02:31:37 +00:00
|
|
|
|
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>
|
2020-05-29 09:28:19 +00:00
|
|
|
/// <param name="localization">The localization manager.</param>
|
|
|
|
public PeopleValidationTask(ILibraryManager libraryManager, ILocalizationManager localization)
|
2013-02-23 07:57:11 +00:00
|
|
|
{
|
2013-02-28 19:32:41 +00:00
|
|
|
_libraryManager = libraryManager;
|
2020-03-26 21:26:25 +00:00
|
|
|
_localization = localization;
|
2013-02-23 07:57:11 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
2020-02-01 13:27:25 +00:00
|
|
|
/// Creates the triggers that define when the task will run.
|
2013-02-21 01:33:05 +00:00
|
|
|
/// </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-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>
|
2020-02-01 13:27:25 +00:00
|
|
|
/// Returns the task to be executed.
|
2013-02-21 01:33:05 +00:00
|
|
|
/// </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
|
|
|
}
|
|
|
|
|
2020-03-26 19:28:30 +00:00
|
|
|
public string Name => _localization.GetLocalizedString("TaskRefreshPeople");
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2020-03-26 19:28:30 +00:00
|
|
|
public string Description => _localization.GetLocalizedString("TaskRefreshPeopleDescription");
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2020-03-29 21:46:19 +00:00
|
|
|
public string Category => _localization.GetLocalizedString("TasksLibraryCategory");
|
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
|
|
|
}
|
|
|
|
}
|