jellyfin/MediaBrowser.Server.Implementations/ScheduledTasks/RefreshMediaLibraryTask.cs

100 lines
2.9 KiB
C#
Raw Normal View History

2015-08-27 03:31:54 +02:00
using System.Linq;
using MediaBrowser.Common.ScheduledTasks;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Library;
2013-05-18 23:47:50 +02:00
using MediaBrowser.Server.Implementations.Library;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Implementations.ScheduledTasks
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Class RefreshMediaLibraryTask
/// </summary>
2014-12-13 22:26:04 +01:00
public class RefreshMediaLibraryTask : IScheduledTask, IHasKey
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// The _library manager
/// </summary>
private readonly ILibraryManager _libraryManager;
2015-08-27 03:31:54 +02:00
private readonly IServerConfigurationManager _config;
2013-02-23 08:57:11 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="RefreshMediaLibraryTask" /> class.
/// </summary>
/// <param name="libraryManager">The library manager.</param>
2015-08-27 03:31:54 +02:00
public RefreshMediaLibraryTask(ILibraryManager libraryManager, IServerConfigurationManager config)
2013-02-23 08:57:11 +01:00
{
_libraryManager = libraryManager;
2015-08-27 03:31:54 +02:00
_config = config;
2013-02-23 08:57:11 +01:00
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the default triggers.
/// </summary>
/// <returns>IEnumerable{BaseTaskTrigger}.</returns>
public IEnumerable<ITaskTrigger> GetDefaultTriggers()
2013-02-21 02:33:05 +01:00
{
2015-08-27 03:31:54 +02:00
var list = new ITaskTrigger[] {
2013-02-21 02:33:05 +01:00
2015-08-28 19:59:09 +02:00
new IntervalTrigger{ Interval = TimeSpan.FromHours(12)}
2015-08-27 03:31:54 +02:00
}.ToList();
return list;
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Executes the internal.
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task.</returns>
public Task Execute(CancellationToken cancellationToken, IProgress<double> progress)
2013-02-21 02:33:05 +01:00
{
cancellationToken.ThrowIfCancellationRequested();
2013-02-22 05:23:06 +01:00
progress.Report(0);
2013-02-21 02:33:05 +01:00
return ((LibraryManager)_libraryManager).ValidateMediaLibraryInternal(progress, cancellationToken);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name
2013-02-21 02:33:05 +01:00
{
get { return "Scan media library"; }
}
/// <summary>
/// Gets the description.
/// </summary>
/// <value>The description.</value>
public string Description
2013-02-21 02:33:05 +01:00
{
get { return "Scans your media library and refreshes metatata based on configuration."; }
}
/// <summary>
/// Gets the category.
/// </summary>
/// <value>The category.</value>
public string Category
2013-02-21 02:33:05 +01:00
{
get
{
return "Library";
}
}
2014-12-13 22:26:04 +01:00
public string Key
{
get { return "RefreshLibrary"; }
}
2013-02-21 02:33:05 +01:00
}
}