2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2013-02-21 01:33:05 +00:00
|
|
|
using System.Collections.Generic;
|
2013-05-25 05:17:32 +00:00
|
|
|
using System.IO;
|
2013-02-21 01:33:05 +00:00
|
|
|
using System.Linq;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2019-01-13 19:22:24 +00:00
|
|
|
using MediaBrowser.Common.Configuration;
|
2017-05-21 07:25:49 +00:00
|
|
|
using MediaBrowser.Controller.Dto;
|
2019-01-13 19:22:24 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Controller.MediaEncoding;
|
|
|
|
using MediaBrowser.Controller.Persistence;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2016-05-09 04:56:41 +00:00
|
|
|
using MediaBrowser.Model.Entities;
|
2019-01-13 19:22:24 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
2016-10-23 19:14:57 +00:00
|
|
|
using MediaBrowser.Model.Tasks;
|
2020-03-26 19:28:30 +00:00
|
|
|
using MediaBrowser.Model.Globalization;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2016-11-02 20:58:51 +00:00
|
|
|
namespace Emby.Server.Implementations.ScheduledTasks
|
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>
|
2019-02-15 22:05:14 +00:00
|
|
|
public class ChapterImagesTask : IScheduledTask
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-04-15 15:10:12 +00:00
|
|
|
/// <summary>
|
2019-09-10 20:37:53 +00:00
|
|
|
/// The _library manager.
|
2013-04-15 15:10:12 +00:00
|
|
|
/// </summary>
|
2013-02-28 19:32:41 +00:00
|
|
|
private readonly ILibraryManager _libraryManager;
|
2013-02-26 03:43:04 +00:00
|
|
|
|
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;
|
2020-03-26 19:28:30 +00:00
|
|
|
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>
|
2020-03-26 21:26:25 +00:00
|
|
|
public ChapterImagesTask(
|
|
|
|
ILibraryManager libraryManager,
|
|
|
|
IItemRepository itemRepo,
|
|
|
|
IApplicationPaths appPaths,
|
|
|
|
IEncodingManager encodingManager,
|
|
|
|
IFileSystem fileSystem,
|
|
|
|
ILocalizationManager localization)
|
2013-02-23 07:57:11 +00:00
|
|
|
{
|
2013-02-28 19:32:41 +00:00
|
|
|
_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;
|
2013-05-03 15:08:02 +00:00
|
|
|
}
|
2013-07-09 16:11:16 +00:00
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
2019-09-10 20:37:53 +00:00
|
|
|
/// Creates the triggers that define when the task will run.
|
2013-02-21 01:33:05 +00:00
|
|
|
/// </summary>
|
2016-10-23 19:14:57 +00:00
|
|
|
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2019-09-10 20:37:53 +00:00
|
|
|
return new[]
|
|
|
|
{
|
2016-10-23 19:14:57 +00:00
|
|
|
new TaskTriggerInfo
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2016-10-23 19:14:57 +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
|
2016-10-23 19:14:57 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
2020-02-01 13:27:25 +00:00
|
|
|
/// Returns the task to be executed.
|
2013-02-21 01:33:05 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
/// <param name="progress">The progress.</param>
|
|
|
|
/// <returns>Task.</returns>
|
2013-04-15 18:45:58 +00:00
|
|
|
public async Task Execute(CancellationToken cancellationToken, IProgress<double> progress)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2016-05-09 04:56:41 +00:00
|
|
|
var videos = _libraryManager.GetItemList(new InternalItemsQuery
|
|
|
|
{
|
|
|
|
MediaTypes = new[] { MediaType.Video },
|
|
|
|
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
|
|
|
|
},
|
|
|
|
SourceTypes = new SourceType[] { SourceType.Library },
|
|
|
|
HasChapterImages = false,
|
|
|
|
IsVirtualItem = false
|
2016-05-09 04:56:41 +00:00
|
|
|
})
|
|
|
|
.OfType<Video>()
|
2013-04-15 18:45:58 +00:00
|
|
|
.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");
|
2013-05-25 05:17:32 +00:00
|
|
|
|
|
|
|
List<string> previouslyFailedImages;
|
2013-07-09 16:11:16 +00:00
|
|
|
|
2019-01-27 16:00:17 +00:00
|
|
|
if (File.Exists(failHistoryPath))
|
2013-05-25 05:17:32 +00:00
|
|
|
{
|
2019-01-27 16:00:17 +00:00
|
|
|
try
|
|
|
|
{
|
2019-01-26 22:09:07 +00:00
|
|
|
previouslyFailedImages = File.ReadAllText(failHistoryPath)
|
2020-11-14 15:28:49 +00:00
|
|
|
.Split('|', StringSplitOptions.RemoveEmptyEntries)
|
2019-01-27 16:00:17 +00:00
|
|
|
.ToList();
|
|
|
|
}
|
|
|
|
catch (IOException)
|
|
|
|
{
|
|
|
|
previouslyFailedImages = new List<string>();
|
|
|
|
}
|
2013-05-25 05:17:32 +00:00
|
|
|
}
|
2019-01-27 16:00:17 +00:00
|
|
|
else
|
2013-09-25 15:11:23 +00:00
|
|
|
{
|
|
|
|
previouslyFailedImages = new List<string>();
|
|
|
|
}
|
2013-05-25 05:17:32 +00:00
|
|
|
|
2019-09-10 20:37:53 +00:00
|
|
|
var directoryService = new DirectoryService(_fileSystem);
|
2017-11-05 21:51:23 +00:00
|
|
|
|
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();
|
|
|
|
|
2013-05-25 05:17:32 +00:00
|
|
|
var key = video.Path + video.DateModified.Ticks;
|
|
|
|
|
|
|
|
var extract = !previouslyFailedImages.Contains(key, StringComparer.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
|
|
|
|
2019-01-26 20:47:11 +00:00
|
|
|
var parentPath = Path.GetDirectoryName(failHistoryPath);
|
2013-06-04 02:02:49 +00:00
|
|
|
|
2019-01-26 21:08:04 +00:00
|
|
|
Directory.CreateDirectory(parentPath);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2021-02-12 23:39:18 +00:00
|
|
|
string text = string.Join('|', previouslyFailedImages);
|
2019-01-26 22:09:07 +00:00
|
|
|
File.WriteAllText(failHistoryPath, text);
|
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);
|
|
|
|
}
|
|
|
|
catch (ObjectDisposedException)
|
|
|
|
{
|
2020-06-14 09:11:11 +00:00
|
|
|
// TODO Investigate and properly fix.
|
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
|
|
|
}
|
|
|
|
|
2020-05-29 09:28:19 +00:00
|
|
|
/// <inheritdoc />
|
2020-03-26 19:28:30 +00:00
|
|
|
public string Name => _localization.GetLocalizedString("TaskRefreshChapterImages");
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2020-05-29 09:28:19 +00:00
|
|
|
/// <inheritdoc />
|
2020-03-26 19:28:30 +00:00
|
|
|
public string Description => _localization.GetLocalizedString("TaskRefreshChapterImagesDescription");
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2020-05-29 09:28:19 +00:00
|
|
|
/// <inheritdoc />
|
2020-03-29 21:46:19 +00:00
|
|
|
public string Category => _localization.GetLocalizedString("TasksLibraryCategory");
|
2019-01-31 06:20:34 +00:00
|
|
|
|
2020-05-29 09:28:19 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-31 06:20:34 +00:00
|
|
|
public string Key => "RefreshChapterImages";
|
|
|
|
|
2020-05-29 09:28:19 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-31 06:20:34 +00:00
|
|
|
public bool IsHidden => false;
|
|
|
|
|
2020-05-29 09:28:19 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-31 06:20:34 +00:00
|
|
|
public bool IsEnabled => true;
|
|
|
|
|
2020-05-29 09:28:19 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-31 06:20:34 +00:00
|
|
|
public bool IsLogged => true;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|