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