mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| #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
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Class RefreshMediaLibraryTask.
 | |
|     /// </summary>
 | |
|     public class RefreshMediaLibraryTask : IScheduledTask
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// The _library manager.
 | |
|         /// </summary>
 | |
|         private readonly ILibraryManager _libraryManager;
 | |
|         private readonly ILocalizationManager _localization;
 | |
| 
 | |
|         /// <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>
 | |
|         public RefreshMediaLibraryTask(ILibraryManager libraryManager, ILocalizationManager localization)
 | |
|         {
 | |
|             _libraryManager = libraryManager;
 | |
|             _localization = localization;
 | |
|         }
 | |
| 
 | |
|         /// <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";
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Creates the triggers that define when the task will run.
 | |
|         /// </summary>
 | |
|         /// <returns>IEnumerable{BaseTaskTrigger}.</returns>
 | |
|         public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
 | |
|         {
 | |
|             yield return new TaskTriggerInfo
 | |
|             {
 | |
|                 Type = TaskTriggerInfo.TriggerInterval,
 | |
|                 IntervalTicks = TimeSpan.FromHours(12).Ticks
 | |
|             };
 | |
|         }
 | |
| 
 | |
|         /// <inheritdoc />
 | |
|         public Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken)
 | |
|         {
 | |
|             cancellationToken.ThrowIfCancellationRequested();
 | |
| 
 | |
|             progress.Report(0);
 | |
| 
 | |
|             return ((LibraryManager)_libraryManager).ValidateMediaLibraryInternal(progress, cancellationToken);
 | |
|         }
 | |
|     }
 | |
| }
 |