jellyfin/Emby.Server.Implementations/ScheduledTasks/Tasks/RefreshMediaLibraryTask.cs

72 lines
2.5 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2013-02-20 20:33:05 -05:00
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Emby.Server.Implementations.Library;
using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Globalization;
2021-04-17 06:37:55 -04:00
using MediaBrowser.Model.Tasks;
2013-02-20 20:33:05 -05:00
2021-12-15 12:25:36 -05:00
namespace Emby.Server.Implementations.ScheduledTasks.Tasks
2013-02-20 20:33:05 -05:00
{
/// <summary>
2019-08-29 03:14:50 -04:00
/// Class RefreshMediaLibraryTask.
2013-02-20 20:33:05 -05:00
/// </summary>
public class RefreshMediaLibraryTask : IScheduledTask
2013-02-20 20:33:05 -05:00
{
/// <summary>
/// The _library manager.
/// </summary>
private readonly ILibraryManager _libraryManager;
private readonly ILocalizationManager _localization;
2013-02-23 02:57:11 -05:00
/// <summary>
/// Initializes a new instance of the <see cref="RefreshMediaLibraryTask" /> class.
/// </summary>
/// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
/// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param>
2022-01-10 10:25:46 -05:00
public RefreshMediaLibraryTask(ILibraryManager libraryManager, ILocalizationManager localization)
2013-02-23 02:57:11 -05:00
{
_libraryManager = libraryManager;
2020-03-26 17:26:25 -04:00
_localization = localization;
2013-02-23 02:57:11 -05:00
}
2021-10-02 12:53:51 -04:00
/// <inheritdoc />
public string Name => _localization.GetLocalizedString("TaskRefreshLibrary");
/// <inheritdoc />
public string Description => _localization.GetLocalizedString("TaskRefreshLibraryDescription");
/// <inheritdoc />
public string Category => _localization.GetLocalizedString("TasksLibraryCategory");
/// <inheritdoc />
public string Key => "RefreshLibrary";
2013-02-20 20:33:05 -05:00
/// <summary>
2019-08-29 03:14:50 -04:00
/// Creates the triggers that define when the task will run.
2013-02-20 20:33:05 -05:00
/// </summary>
/// <returns>IEnumerable{BaseTaskTrigger}.</returns>
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
2013-02-20 20:33:05 -05:00
{
2019-08-29 03:14:50 -04:00
yield return new TaskTriggerInfo
{
2020-03-24 11:12:06 -04:00
Type = TaskTriggerInfo.TriggerInterval,
IntervalTicks = TimeSpan.FromHours(12).Ticks
};
2013-02-20 20:33:05 -05:00
}
2022-02-15 12:59:46 -05:00
/// <inheritdoc />
public Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken)
2013-02-20 20:33:05 -05:00
{
cancellationToken.ThrowIfCancellationRequested();
2013-02-21 23:23:06 -05:00
progress.Report(0);
2013-02-20 20:33:05 -05:00
return ((LibraryManager)_libraryManager).ValidateMediaLibraryInternal(progress, cancellationToken);
2013-02-20 20:33:05 -05:00
}
}
}