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

178 lines
6.3 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 Jellyfin.Data.Enums;
2021-12-20 13:31:07 +01:00
using Jellyfin.Extensions;
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;
2021-04-17 12:37:55 +02:00
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Tasks;
2022-11-23 15:58:11 +01:00
using Microsoft.Extensions.Logging;
2013-02-21 02:33:05 +01:00
2021-12-15 18:25:36 +01:00
namespace Emby.Server.Implementations.ScheduledTasks.Tasks
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
{
2022-11-27 14:35:07 +01:00
private readonly ILogger<ChapterImagesTask> _logger;
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>
2022-11-23 15:58:11 +01:00
/// <param name="logger">The logger.</param>.
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(
2022-11-23 15:58:11 +01:00
ILogger<ChapterImagesTask> logger,
2020-03-26 22:26:25 +01:00
ILibraryManager libraryManager,
IItemRepository itemRepo,
IApplicationPaths appPaths,
IEncodingManager encodingManager,
IFileSystem fileSystem,
ILocalizationManager localization)
2013-02-23 08:57:11 +01:00
{
2022-11-23 15:58:11 +01:00
_logger = logger;
_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
}
};
}
2022-02-15 18:59:46 +01:00
/// <inheritdoc />
public async Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken)
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 },
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
{
2023-10-12 21:28:04 +02:00
previouslyFailedImages = (await File.ReadAllTextAsync(failHistoryPath, cancellationToken).ConfigureAwait(false))
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;
2021-12-20 13:31:07 +01:00
var extract = !previouslyFailedImages.Contains(key, StringComparison.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);
2022-12-05 15:01:13 +01:00
if (parentPath is not 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);
2023-10-07 23:50:45 +02:00
await File.WriteAllTextAsync(failHistoryPath, text, cancellationToken).ConfigureAwait(false);
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);
}
2022-11-23 15:58:11 +01:00
catch (ObjectDisposedException ex)
2016-03-17 17:39:39 +01:00
{
2020-06-14 11:11:11 +02:00
// TODO Investigate and properly fix.
2022-11-23 15:58:11 +01:00
_logger.LogError(ex, "Object Disposed");
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
}
}
}