| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.IO; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Threading; |
| | 6 | | using System.Threading.Tasks; |
| | 7 | | using Jellyfin.Data.Enums; |
| | 8 | | using Jellyfin.Extensions; |
| | 9 | | using MediaBrowser.Common.Configuration; |
| | 10 | | using MediaBrowser.Controller.Chapters; |
| | 11 | | using MediaBrowser.Controller.Dto; |
| | 12 | | using MediaBrowser.Controller.Entities; |
| | 13 | | using MediaBrowser.Controller.Library; |
| | 14 | | using MediaBrowser.Controller.MediaEncoding; |
| | 15 | | using MediaBrowser.Controller.Persistence; |
| | 16 | | using MediaBrowser.Controller.Providers; |
| | 17 | | using MediaBrowser.Model.Globalization; |
| | 18 | | using MediaBrowser.Model.IO; |
| | 19 | | using MediaBrowser.Model.Tasks; |
| | 20 | | using Microsoft.Extensions.Logging; |
| | 21 | |
|
| | 22 | | namespace Emby.Server.Implementations.ScheduledTasks.Tasks |
| | 23 | | { |
| | 24 | | /// <summary> |
| | 25 | | /// Class ChapterImagesTask. |
| | 26 | | /// </summary> |
| | 27 | | public class ChapterImagesTask : IScheduledTask |
| | 28 | | { |
| | 29 | | private readonly ILogger<ChapterImagesTask> _logger; |
| | 30 | | private readonly ILibraryManager _libraryManager; |
| | 31 | | private readonly IItemRepository _itemRepo; |
| | 32 | | private readonly IApplicationPaths _appPaths; |
| | 33 | | private readonly IEncodingManager _encodingManager; |
| | 34 | | private readonly IFileSystem _fileSystem; |
| | 35 | | private readonly ILocalizationManager _localization; |
| | 36 | | private readonly IChapterRepository _chapterRepository; |
| | 37 | |
|
| | 38 | | /// <summary> |
| | 39 | | /// Initializes a new instance of the <see cref="ChapterImagesTask" /> class. |
| | 40 | | /// </summary> |
| | 41 | | /// <param name="logger">Instance of the <see cref="ILogger"/> interface.</param> |
| | 42 | | /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param> |
| | 43 | | /// <param name="itemRepo">Instance of the <see cref="IItemRepository"/> interface.</param> |
| | 44 | | /// <param name="appPaths">Instance of the <see cref="IApplicationPaths"/> interface.</param> |
| | 45 | | /// <param name="encodingManager">Instance of the <see cref="IEncodingManager"/> interface.</param> |
| | 46 | | /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param> |
| | 47 | | /// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param> |
| | 48 | | /// <param name="chapterRepository">Instance of the <see cref="IChapterRepository"/> interface.</param> |
| | 49 | | public ChapterImagesTask( |
| | 50 | | ILogger<ChapterImagesTask> logger, |
| | 51 | | ILibraryManager libraryManager, |
| | 52 | | IItemRepository itemRepo, |
| | 53 | | IApplicationPaths appPaths, |
| | 54 | | IEncodingManager encodingManager, |
| | 55 | | IFileSystem fileSystem, |
| | 56 | | ILocalizationManager localization, |
| | 57 | | IChapterRepository chapterRepository) |
| | 58 | | { |
| 21 | 59 | | _logger = logger; |
| 21 | 60 | | _libraryManager = libraryManager; |
| 21 | 61 | | _itemRepo = itemRepo; |
| 21 | 62 | | _appPaths = appPaths; |
| 21 | 63 | | _encodingManager = encodingManager; |
| 21 | 64 | | _fileSystem = fileSystem; |
| 21 | 65 | | _localization = localization; |
| 21 | 66 | | _chapterRepository = chapterRepository; |
| 21 | 67 | | } |
| | 68 | |
|
| | 69 | | /// <inheritdoc /> |
| 21 | 70 | | public string Name => _localization.GetLocalizedString("TaskRefreshChapterImages"); |
| | 71 | |
|
| | 72 | | /// <inheritdoc /> |
| 0 | 73 | | public string Description => _localization.GetLocalizedString("TaskRefreshChapterImagesDescription"); |
| | 74 | |
|
| | 75 | | /// <inheritdoc /> |
| 0 | 76 | | public string Category => _localization.GetLocalizedString("TasksLibraryCategory"); |
| | 77 | |
|
| | 78 | | /// <inheritdoc /> |
| 0 | 79 | | public string Key => "RefreshChapterImages"; |
| | 80 | |
|
| | 81 | | /// <inheritdoc /> |
| | 82 | | public IEnumerable<TaskTriggerInfo> GetDefaultTriggers() |
| | 83 | | { |
| 21 | 84 | | return |
| 21 | 85 | | [ |
| 21 | 86 | | new TaskTriggerInfo |
| 21 | 87 | | { |
| 21 | 88 | | Type = TaskTriggerInfoType.DailyTrigger, |
| 21 | 89 | | TimeOfDayTicks = TimeSpan.FromHours(2).Ticks, |
| 21 | 90 | | MaxRuntimeTicks = TimeSpan.FromHours(4).Ticks |
| 21 | 91 | | } |
| 21 | 92 | | ]; |
| | 93 | | } |
| | 94 | |
|
| | 95 | | /// <inheritdoc /> |
| | 96 | | public async Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken) |
| | 97 | | { |
| | 98 | | var videos = _libraryManager.GetItemList(new InternalItemsQuery |
| | 99 | | { |
| | 100 | | MediaTypes = [MediaType.Video], |
| | 101 | | IsFolder = false, |
| | 102 | | Recursive = true, |
| | 103 | | DtoOptions = new DtoOptions(false) |
| | 104 | | { |
| | 105 | | EnableImages = false |
| | 106 | | }, |
| | 107 | | SourceTypes = [SourceType.Library], |
| | 108 | | IsVirtualItem = false |
| | 109 | | }) |
| | 110 | | .OfType<Video>() |
| | 111 | | .ToList(); |
| | 112 | |
|
| | 113 | | var numComplete = 0; |
| | 114 | |
|
| | 115 | | var failHistoryPath = Path.Combine(_appPaths.CachePath, "chapter-failures.txt"); |
| | 116 | |
|
| | 117 | | List<string> previouslyFailedImages; |
| | 118 | |
|
| | 119 | | if (File.Exists(failHistoryPath)) |
| | 120 | | { |
| | 121 | | try |
| | 122 | | { |
| | 123 | | previouslyFailedImages = (await File.ReadAllTextAsync(failHistoryPath, cancellationToken).ConfigureA |
| | 124 | | .Split('|', StringSplitOptions.RemoveEmptyEntries) |
| | 125 | | .ToList(); |
| | 126 | | } |
| | 127 | | catch (IOException) |
| | 128 | | { |
| | 129 | | previouslyFailedImages = new List<string>(); |
| | 130 | | } |
| | 131 | | } |
| | 132 | | else |
| | 133 | | { |
| | 134 | | previouslyFailedImages = new List<string>(); |
| | 135 | | } |
| | 136 | |
|
| | 137 | | var directoryService = new DirectoryService(_fileSystem); |
| | 138 | |
|
| | 139 | | foreach (var video in videos) |
| | 140 | | { |
| | 141 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 142 | |
|
| | 143 | | var key = video.Path + video.DateModified.Ticks; |
| | 144 | |
|
| | 145 | | var extract = !previouslyFailedImages.Contains(key, StringComparison.OrdinalIgnoreCase); |
| | 146 | |
|
| | 147 | | try |
| | 148 | | { |
| | 149 | | var chapters = _chapterRepository.GetChapters(video.Id); |
| | 150 | |
|
| | 151 | | var success = await _encodingManager.RefreshChapterImages(video, directoryService, chapters, extract |
| | 152 | |
|
| | 153 | | if (!success) |
| | 154 | | { |
| | 155 | | previouslyFailedImages.Add(key); |
| | 156 | |
|
| | 157 | | var parentPath = Path.GetDirectoryName(failHistoryPath); |
| | 158 | | if (parentPath is not null) |
| | 159 | | { |
| | 160 | | Directory.CreateDirectory(parentPath); |
| | 161 | | } |
| | 162 | |
|
| | 163 | | string text = string.Join('|', previouslyFailedImages); |
| | 164 | | await File.WriteAllTextAsync(failHistoryPath, text, cancellationToken).ConfigureAwait(false); |
| | 165 | | } |
| | 166 | |
|
| | 167 | | numComplete++; |
| | 168 | | double percent = numComplete; |
| | 169 | | percent /= videos.Count; |
| | 170 | |
|
| | 171 | | progress.Report(100 * percent); |
| | 172 | | } |
| | 173 | | catch (ObjectDisposedException ex) |
| | 174 | | { |
| | 175 | | // TODO Investigate and properly fix. |
| | 176 | | _logger.LogError(ex, "Object Disposed"); |
| | 177 | | break; |
| | 178 | | } |
| | 179 | | } |
| | 180 | | } |
| | 181 | | } |
| | 182 | | } |