#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Emby.Server.Implementations.Library;
using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.Tasks;
namespace Emby.Server.Implementations.ScheduledTasks.Tasks
{
///
/// Class RefreshMediaLibraryTask.
///
public class RefreshMediaLibraryTask : IScheduledTask
{
///
/// The _library manager.
///
private readonly ILibraryManager _libraryManager;
private readonly ILocalizationManager _localization;
///
/// Initializes a new instance of the class.
///
/// Instance of the interface.
/// Instance of the interface.
public RefreshMediaLibraryTask(ILibraryManager libraryManager, ILocalizationManager localization)
{
_libraryManager = libraryManager;
_localization = localization;
}
///
public string Name => _localization.GetLocalizedString("TaskRefreshLibrary");
///
public string Description => _localization.GetLocalizedString("TaskRefreshLibraryDescription");
///
public string Category => _localization.GetLocalizedString("TasksLibraryCategory");
///
public string Key => "RefreshLibrary";
///
/// Creates the triggers that define when the task will run.
///
/// IEnumerable{BaseTaskTrigger}.
public IEnumerable GetDefaultTriggers()
{
yield return new TaskTriggerInfo
{
Type = TaskTriggerInfo.TriggerInterval,
IntervalTicks = TimeSpan.FromHours(12).Ticks
};
}
///
public Task ExecuteAsync(IProgress progress, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
progress.Report(0);
return ((LibraryManager)_libraryManager).ValidateMediaLibraryInternal(progress, cancellationToken);
}
}
}