2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2013-02-20 18:33:05 -07:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2016-11-02 23:37:52 -07:00
|
|
|
using Emby.Server.Implementations.Library;
|
2019-01-13 12:22:24 -07:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
using MediaBrowser.Controller.Library;
|
2016-10-23 12:14:57 -07:00
|
|
|
using MediaBrowser.Model.Tasks;
|
2020-03-26 12:28:30 -07:00
|
|
|
using MediaBrowser.Model.Globalization;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2016-11-02 23:37:52 -07:00
|
|
|
namespace Emby.Server.Implementations.ScheduledTasks
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2019-08-29 00:14:50 -07:00
|
|
|
/// Class RefreshMediaLibraryTask.
|
2013-02-20 18:33:05 -07:00
|
|
|
/// </summary>
|
2016-10-23 12:14:57 -07:00
|
|
|
public class RefreshMediaLibraryTask : IScheduledTask
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
2013-02-25 20:43:04 -07:00
|
|
|
/// <summary>
|
2013-02-28 12:32:41 -07:00
|
|
|
/// The _library manager
|
2013-02-25 20:43:04 -07:00
|
|
|
/// </summary>
|
2013-02-28 12:32:41 -07:00
|
|
|
private readonly ILibraryManager _libraryManager;
|
2015-08-26 18:31:54 -07:00
|
|
|
private readonly IServerConfigurationManager _config;
|
2020-03-26 12:28:30 -07:00
|
|
|
private readonly ILocalizationManager _localization;
|
2013-02-25 20:43:04 -07:00
|
|
|
|
2013-02-23 00:57:11 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="RefreshMediaLibraryTask" /> class.
|
|
|
|
/// </summary>
|
2013-02-28 12:32:41 -07:00
|
|
|
/// <param name="libraryManager">The library manager.</param>
|
2020-03-26 14:26:25 -07:00
|
|
|
public RefreshMediaLibraryTask(ILibraryManager libraryManager, IServerConfigurationManager config, ILocalizationManager localization)
|
2013-02-23 00:57:11 -07:00
|
|
|
{
|
2013-02-28 12:32:41 -07:00
|
|
|
_libraryManager = libraryManager;
|
2015-08-26 18:31:54 -07:00
|
|
|
_config = config;
|
2020-03-26 14:26:25 -07:00
|
|
|
_localization = localization;
|
2013-02-23 00:57:11 -07:00
|
|
|
}
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
/// <summary>
|
2019-08-29 00:14:50 -07:00
|
|
|
/// Creates the triggers that define when the task will run.
|
2013-02-20 18:33:05 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <returns>IEnumerable{BaseTaskTrigger}.</returns>
|
2016-10-23 12:14:57 -07:00
|
|
|
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
2019-08-29 00:14:50 -07:00
|
|
|
yield return new TaskTriggerInfo
|
|
|
|
{
|
2020-03-24 08:12:06 -07:00
|
|
|
Type = TaskTriggerInfo.TriggerInterval,
|
|
|
|
IntervalTicks = TimeSpan.FromHours(12).Ticks
|
2016-10-23 12:14:57 -07:00
|
|
|
};
|
2013-02-20 18:33:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Executes the internal.
|
|
|
|
/// </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
|
|
|
{
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
2013-02-21 21:23:06 -07:00
|
|
|
progress.Report(0);
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2013-04-14 12:39:25 -07:00
|
|
|
return ((LibraryManager)_libraryManager).ValidateMediaLibraryInternal(progress, cancellationToken);
|
2013-02-20 18:33:05 -07:00
|
|
|
}
|
|
|
|
|
2020-03-26 12:28:30 -07:00
|
|
|
public string Name => _localization.GetLocalizedString("TaskRefreshLibrary");
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2020-03-26 12:28:30 -07:00
|
|
|
public string Description => _localization.GetLocalizedString("TaskRefreshLibraryDescription");
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2020-03-29 14:46:19 -07:00
|
|
|
public string Category => _localization.GetLocalizedString("TasksLibraryCategory");
|
2014-12-13 14:26:04 -07:00
|
|
|
|
2019-01-06 13:50:43 -07:00
|
|
|
public string Key => "RefreshLibrary";
|
2019-01-30 23:20:34 -07:00
|
|
|
|
|
|
|
public bool IsHidden => false;
|
|
|
|
|
|
|
|
public bool IsEnabled => true;
|
|
|
|
|
|
|
|
public bool IsLogged => true;
|
2013-02-20 18:33:05 -07:00
|
|
|
}
|
|
|
|
}
|