| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Threading; |
| | 4 | | using System.Threading.Tasks; |
| | 5 | | using MediaBrowser.Controller.Library; |
| | 6 | | using MediaBrowser.Model.Globalization; |
| | 7 | | using MediaBrowser.Model.Tasks; |
| | 8 | |
|
| | 9 | | namespace Emby.Server.Implementations.ScheduledTasks.Tasks |
| | 10 | | { |
| | 11 | | /// <summary> |
| | 12 | | /// Class PeopleValidationTask. |
| | 13 | | /// </summary> |
| | 14 | | public class PeopleValidationTask : IScheduledTask, IConfigurableScheduledTask |
| | 15 | | { |
| | 16 | | private readonly ILibraryManager _libraryManager; |
| | 17 | | private readonly ILocalizationManager _localization; |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// Initializes a new instance of the <see cref="PeopleValidationTask" /> class. |
| | 21 | | /// </summary> |
| | 22 | | /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param> |
| | 23 | | /// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param> |
| | 24 | | public PeopleValidationTask(ILibraryManager libraryManager, ILocalizationManager localization) |
| | 25 | | { |
| 21 | 26 | | _libraryManager = libraryManager; |
| 21 | 27 | | _localization = localization; |
| 21 | 28 | | } |
| | 29 | |
|
| | 30 | | /// <inheritdoc /> |
| 21 | 31 | | public string Name => _localization.GetLocalizedString("TaskRefreshPeople"); |
| | 32 | |
|
| | 33 | | /// <inheritdoc /> |
| 0 | 34 | | public string Description => _localization.GetLocalizedString("TaskRefreshPeopleDescription"); |
| | 35 | |
|
| | 36 | | /// <inheritdoc /> |
| 0 | 37 | | public string Category => _localization.GetLocalizedString("TasksLibraryCategory"); |
| | 38 | |
|
| | 39 | | /// <inheritdoc /> |
| 0 | 40 | | public string Key => "RefreshPeople"; |
| | 41 | |
|
| | 42 | | /// <inheritdoc /> |
| 0 | 43 | | public bool IsHidden => false; |
| | 44 | |
|
| | 45 | | /// <inheritdoc /> |
| 0 | 46 | | public bool IsEnabled => true; |
| | 47 | |
|
| | 48 | | /// <inheritdoc /> |
| 0 | 49 | | public bool IsLogged => true; |
| | 50 | |
|
| | 51 | | /// <summary> |
| | 52 | | /// Creates the triggers that define when the task will run. |
| | 53 | | /// </summary> |
| | 54 | | /// <returns>An <see cref="IEnumerable{TaskTriggerInfo}"/> containing the default trigger infos for this task.</ |
| | 55 | | public IEnumerable<TaskTriggerInfo> GetDefaultTriggers() |
| | 56 | | { |
| 21 | 57 | | return new[] |
| 21 | 58 | | { |
| 21 | 59 | | new TaskTriggerInfo |
| 21 | 60 | | { |
| 21 | 61 | | Type = TaskTriggerInfoType.IntervalTrigger, |
| 21 | 62 | | IntervalTicks = TimeSpan.FromDays(7).Ticks |
| 21 | 63 | | } |
| 21 | 64 | | }; |
| | 65 | | } |
| | 66 | |
|
| | 67 | | /// <inheritdoc /> |
| | 68 | | public Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken) |
| | 69 | | { |
| 0 | 70 | | return _libraryManager.ValidatePeopleAsync(progress, cancellationToken); |
| | 71 | | } |
| | 72 | | } |
| | 73 | | } |