jellyfin/Emby.Server.Implementations/ScheduledTasks/Tasks/ChapterImagesTask.cs

183 lines
6.2 KiB
C#
Raw Normal View History

using System;
2013-02-21 02:33:05 +01:00
using System.Collections.Generic;
using System.IO;
2013-02-21 02:33:05 +01:00
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Common.Configuration;
2017-05-21 09:25:49 +02:00
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.MediaEncoding;
using MediaBrowser.Controller.Persistence;
using MediaBrowser.Controller.Providers;
2016-05-09 06:56:41 +02:00
using MediaBrowser.Model.Entities;
2021-04-17 12:37:55 +02:00
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Tasks;
2013-02-21 02:33:05 +01:00
namespace Emby.Server.Implementations.ScheduledTasks
2013-02-21 02:33:05 +01:00
{
2013-02-23 08:57:11 +01:00
/// <summary>
2019-09-10 22:37:53 +02:00
/// Class ChapterImagesTask.
2013-02-23 08:57:11 +01:00
/// </summary>
public class ChapterImagesTask : IScheduledTask
2013-02-21 02:33:05 +01:00
{
/// <summary>
2019-09-10 22:37:53 +02:00
/// The _library manager.
/// </summary>
private readonly ILibraryManager _libraryManager;
2013-06-18 21:16:27 +02:00
private readonly IItemRepository _itemRepo;
2014-02-20 17:37:41 +01:00
private readonly IApplicationPaths _appPaths;
private readonly IEncodingManager _encodingManager;
2015-09-14 01:07:54 +02:00
private readonly IFileSystem _fileSystem;
private readonly ILocalizationManager _localization;
2014-02-20 17:37:41 +01:00
2013-02-23 08:57:11 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="ChapterImagesTask" /> class.
/// </summary>
2021-10-02 18:53:51 +02:00
/// <param name="libraryManager">The library manager.</param>.
/// <param name="itemRepo">The item repository.</param>
/// <param name="appPaths">The application paths.</param>
/// <param name="encodingManager">The encoding manager.</param>
/// <param name="fileSystem">The filesystem.</param>
/// <param name="localization">The localization manager.</param>
2020-03-26 22:26:25 +01:00
public ChapterImagesTask(
ILibraryManager libraryManager,
IItemRepository itemRepo,
IApplicationPaths appPaths,
IEncodingManager encodingManager,
IFileSystem fileSystem,
ILocalizationManager localization)
2013-02-23 08:57:11 +01:00
{
_libraryManager = libraryManager;
2013-06-18 21:16:27 +02:00
_itemRepo = itemRepo;
2014-02-20 17:37:41 +01:00
_appPaths = appPaths;
_encodingManager = encodingManager;
2015-09-14 01:07:54 +02:00
_fileSystem = fileSystem;
2020-03-26 22:26:25 +01:00
_localization = localization;
}
2021-07-06 00:01:33 +02:00
/// <inheritdoc />
public string Name => _localization.GetLocalizedString("TaskRefreshChapterImages");
/// <inheritdoc />
public string Description => _localization.GetLocalizedString("TaskRefreshChapterImagesDescription");
/// <inheritdoc />
public string Category => _localization.GetLocalizedString("TasksLibraryCategory");
/// <inheritdoc />
public string Key => "RefreshChapterImages";
/// <inheritdoc />
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
2013-02-21 02:33:05 +01:00
{
2019-09-10 22:37:53 +02:00
return new[]
{
new TaskTriggerInfo
2013-02-21 02:33:05 +01:00
{
Type = TaskTriggerInfo.TriggerDaily,
2016-12-23 09:50:32 +01:00
TimeOfDayTicks = TimeSpan.FromHours(2).Ticks,
2018-09-12 19:26:21 +02:00
MaxRuntimeTicks = TimeSpan.FromHours(4).Ticks
}
};
}
2013-02-21 02:33:05 +01:00
/// <summary>
2020-02-01 14:27:25 +01:00
/// Returns the task to be executed.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task.</returns>
2013-04-15 20:45:58 +02:00
public async Task Execute(CancellationToken cancellationToken, IProgress<double> progress)
2013-02-21 02:33:05 +01:00
{
2016-05-09 06:56:41 +02:00
var videos = _libraryManager.GetItemList(new InternalItemsQuery
{
MediaTypes = new[] { MediaType.Video },
IsFolder = false,
2017-05-21 09:25:49 +02:00
Recursive = true,
DtoOptions = new DtoOptions(false)
2017-09-10 05:18:23 +02:00
{
EnableImages = false
},
SourceTypes = new SourceType[] { SourceType.Library },
HasChapterImages = false,
IsVirtualItem = false
2016-05-09 06:56:41 +02:00
})
.OfType<Video>()
2013-04-15 20:45:58 +02:00
.ToList();
2013-02-21 02:33:05 +01:00
var numComplete = 0;
2014-02-20 17:37:41 +01:00
var failHistoryPath = Path.Combine(_appPaths.CachePath, "chapter-failures.txt");
List<string> previouslyFailedImages;
if (File.Exists(failHistoryPath))
{
try
{
previouslyFailedImages = File.ReadAllText(failHistoryPath)
2020-11-14 16:28:49 +01:00
.Split('|', StringSplitOptions.RemoveEmptyEntries)
.ToList();
}
catch (IOException)
{
previouslyFailedImages = new List<string>();
}
}
else
2013-09-25 17:11:23 +02:00
{
previouslyFailedImages = new List<string>();
}
2019-09-10 22:37:53 +02:00
var directoryService = new DirectoryService(_fileSystem);
2013-04-15 20:45:58 +02:00
foreach (var video in videos)
2013-02-21 02:33:05 +01:00
{
2013-04-15 20:45:58 +02:00
cancellationToken.ThrowIfCancellationRequested();
var key = video.Path + video.DateModified.Ticks;
var extract = !previouslyFailedImages.Contains(key, StringComparer.OrdinalIgnoreCase);
2016-03-17 17:39:39 +01:00
try
2014-02-20 17:37:41 +01:00
{
2018-09-12 19:26:21 +02:00
var chapters = _itemRepo.GetChapters(video);
2014-02-20 17:37:41 +01:00
2018-09-12 19:26:21 +02:00
var success = await _encodingManager.RefreshChapterImages(video, directoryService, chapters, extract, true, cancellationToken).ConfigureAwait(false);
2013-06-04 04:02:49 +02:00
2016-03-17 17:39:39 +01:00
if (!success)
{
previouslyFailedImages.Add(key);
2013-06-04 04:02:49 +02:00
var parentPath = Path.GetDirectoryName(failHistoryPath);
if (parentPath != null)
{
Directory.CreateDirectory(parentPath);
}
2013-02-21 02:33:05 +01:00
2021-02-13 00:39:18 +01:00
string text = string.Join('|', previouslyFailedImages);
File.WriteAllText(failHistoryPath, text);
2016-03-17 17:39:39 +01:00
}
numComplete++;
double percent = numComplete;
percent /= videos.Count;
2013-02-21 02:33:05 +01:00
2016-03-17 17:39:39 +01:00
progress.Report(100 * percent);
}
catch (ObjectDisposedException)
{
2020-06-14 11:11:11 +02:00
// TODO Investigate and properly fix.
2016-03-17 17:39:39 +01:00
break;
}
2013-04-15 20:45:58 +02:00
}
2013-02-21 02:33:05 +01:00
}
}
}