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

178 lines
6.5 KiB
C#
Raw Permalink Normal View History

using System;
2013-02-21 01:33:05 +00:00
using System.Collections.Generic;
using System.IO;
2013-02-21 01:33:05 +00:00
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Jellyfin.Data.Enums;
2021-12-20 12:31:07 +00:00
using Jellyfin.Extensions;
using MediaBrowser.Common.Configuration;
2017-05-21 07:25:49 +00: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;
2021-04-17 10:37:55 +00:00
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Tasks;
2022-11-23 14:58:11 +00:00
using Microsoft.Extensions.Logging;
2013-02-21 01:33:05 +00:00
2021-12-15 17:25:36 +00:00
namespace Emby.Server.Implementations.ScheduledTasks.Tasks
2013-02-21 01:33:05 +00:00
{
2013-02-23 07:57:11 +00:00
/// <summary>
2019-09-10 20:37:53 +00:00
/// Class ChapterImagesTask.
2013-02-23 07:57:11 +00:00
/// </summary>
public class ChapterImagesTask : IScheduledTask
2013-02-21 01:33:05 +00:00
{
2022-11-27 13:35:07 +00:00
private readonly ILogger<ChapterImagesTask> _logger;
private readonly ILibraryManager _libraryManager;
2013-06-18 19:16:27 +00:00
private readonly IItemRepository _itemRepo;
2014-02-20 16:37:41 +00:00
private readonly IApplicationPaths _appPaths;
private readonly IEncodingManager _encodingManager;
2015-09-13 23:07:54 +00:00
private readonly IFileSystem _fileSystem;
private readonly ILocalizationManager _localization;
2014-02-20 16:37:41 +00:00
2013-02-23 07:57:11 +00:00
/// <summary>
/// Initializes a new instance of the <see cref="ChapterImagesTask" /> class.
/// </summary>
2024-09-04 15:38:10 +00:00
/// <param name="logger">Instance of the <see cref="ILogger"/> interface.</param>
/// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
/// <param name="itemRepo">Instance of the <see cref="IItemRepository"/> interface.</param>
/// <param name="appPaths">Instance of the <see cref="IApplicationPaths"/> interface.</param>
/// <param name="encodingManager">Instance of the <see cref="IEncodingManager"/> interface.</param>
/// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
/// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param>
2020-03-26 21:26:25 +00:00
public ChapterImagesTask(
2022-11-23 14:58:11 +00:00
ILogger<ChapterImagesTask> logger,
2020-03-26 21:26:25 +00:00
ILibraryManager libraryManager,
IItemRepository itemRepo,
IApplicationPaths appPaths,
IEncodingManager encodingManager,
IFileSystem fileSystem,
ILocalizationManager localization)
2013-02-23 07:57:11 +00:00
{
2022-11-23 14:58:11 +00:00
_logger = logger;
_libraryManager = libraryManager;
2013-06-18 19:16:27 +00:00
_itemRepo = itemRepo;
2014-02-20 16:37:41 +00:00
_appPaths = appPaths;
_encodingManager = encodingManager;
2015-09-13 23:07:54 +00:00
_fileSystem = fileSystem;
2020-03-26 21:26:25 +00:00
_localization = localization;
}
2021-07-05 22:01:33 +00: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 01:33:05 +00:00
{
2024-09-04 15:38:10 +00:00
return
[
new TaskTriggerInfo
2013-02-21 01:33:05 +00:00
{
Type = TaskTriggerInfo.TriggerDaily,
2016-12-23 08:50:32 +00:00
TimeOfDayTicks = TimeSpan.FromHours(2).Ticks,
2018-09-12 17:26:21 +00:00
MaxRuntimeTicks = TimeSpan.FromHours(4).Ticks
}
2024-09-04 15:38:10 +00:00
];
}
2022-02-15 17:59:46 +00:00
/// <inheritdoc />
public async Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken)
2013-02-21 01:33:05 +00:00
{
2016-05-09 04:56:41 +00:00
var videos = _libraryManager.GetItemList(new InternalItemsQuery
{
2024-09-04 15:38:10 +00:00
MediaTypes = [MediaType.Video],
2016-05-09 04:56:41 +00:00
IsFolder = false,
2017-05-21 07:25:49 +00:00
Recursive = true,
DtoOptions = new DtoOptions(false)
2017-09-10 03:18:23 +00:00
{
EnableImages = false
},
2024-09-04 15:38:10 +00:00
SourceTypes = [SourceType.Library],
2017-09-10 03:18:23 +00:00
IsVirtualItem = false
2016-05-09 04:56:41 +00:00
})
2024-09-04 15:38:10 +00:00
.OfType<Video>()
.ToList();
2013-02-21 01:33:05 +00:00
var numComplete = 0;
2014-02-20 16:37:41 +00:00
var failHistoryPath = Path.Combine(_appPaths.CachePath, "chapter-failures.txt");
List<string> previouslyFailedImages;
if (File.Exists(failHistoryPath))
{
try
{
2023-10-12 19:28:04 +00:00
previouslyFailedImages = (await File.ReadAllTextAsync(failHistoryPath, cancellationToken).ConfigureAwait(false))
2020-11-14 15:28:49 +00:00
.Split('|', StringSplitOptions.RemoveEmptyEntries)
.ToList();
}
catch (IOException)
{
previouslyFailedImages = new List<string>();
}
}
else
2013-09-25 15:11:23 +00:00
{
previouslyFailedImages = new List<string>();
}
2019-09-10 20:37:53 +00:00
var directoryService = new DirectoryService(_fileSystem);
2013-04-15 18:45:58 +00:00
foreach (var video in videos)
2013-02-21 01:33:05 +00:00
{
2013-04-15 18:45:58 +00:00
cancellationToken.ThrowIfCancellationRequested();
var key = video.Path + video.DateModified.Ticks;
2021-12-20 12:31:07 +00:00
var extract = !previouslyFailedImages.Contains(key, StringComparison.OrdinalIgnoreCase);
2016-03-17 16:39:39 +00:00
try
2014-02-20 16:37:41 +00:00
{
2018-09-12 17:26:21 +00:00
var chapters = _itemRepo.GetChapters(video);
2014-02-20 16:37:41 +00:00
2018-09-12 17:26:21 +00:00
var success = await _encodingManager.RefreshChapterImages(video, directoryService, chapters, extract, true, cancellationToken).ConfigureAwait(false);
2013-06-04 02:02:49 +00:00
2016-03-17 16:39:39 +00:00
if (!success)
{
previouslyFailedImages.Add(key);
2013-06-04 02:02:49 +00:00
var parentPath = Path.GetDirectoryName(failHistoryPath);
2022-12-05 14:01:13 +00:00
if (parentPath is not null)
{
Directory.CreateDirectory(parentPath);
}
2013-02-21 01:33:05 +00:00
2021-02-12 23:39:18 +00:00
string text = string.Join('|', previouslyFailedImages);
2023-10-07 21:50:45 +00:00
await File.WriteAllTextAsync(failHistoryPath, text, cancellationToken).ConfigureAwait(false);
2016-03-17 16:39:39 +00:00
}
numComplete++;
double percent = numComplete;
percent /= videos.Count;
2013-02-21 01:33:05 +00:00
2016-03-17 16:39:39 +00:00
progress.Report(100 * percent);
}
2022-11-23 14:58:11 +00:00
catch (ObjectDisposedException ex)
2016-03-17 16:39:39 +00:00
{
2020-06-14 09:11:11 +00:00
// TODO Investigate and properly fix.
2022-11-23 14:58:11 +00:00
_logger.LogError(ex, "Object Disposed");
2016-03-17 16:39:39 +00:00
break;
}
2013-04-15 18:45:58 +00:00
}
2013-02-21 01:33:05 +00:00
}
}
}