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;
|
2019-01-13 19:22:24 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
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>
|
|
|
|
/// Class ChapterImagesTask
|
|
|
|
/// </summary>
|
2019-02-15 22:05:14 +00:00
|
|
|
public class ChapterImagesTask : IScheduledTask
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-02-26 03:43:04 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The _logger
|
|
|
|
/// </summary>
|
|
|
|
private readonly ILogger _logger;
|
2013-04-15 15:10:12 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The _library manager
|
|
|
|
/// </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;
|
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>
|
2018-12-13 13:18:25 +00:00
|
|
|
public ChapterImagesTask(ILoggerFactory loggerFactory, ILibraryManager libraryManager, IItemRepository itemRepo, IApplicationPaths appPaths, IEncodingManager encodingManager, IFileSystem fileSystem)
|
2013-02-23 07:57:11 +00:00
|
|
|
{
|
2018-12-13 13:18:25 +00:00
|
|
|
_logger = loggerFactory.CreateLogger(GetType().Name);
|
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;
|
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>
|
|
|
|
/// Creates the triggers that define when the task will run
|
|
|
|
/// </summary>
|
2016-10-23 19:14:57 +00:00
|
|
|
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2017-09-10 03:18:23 +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>
|
|
|
|
/// Returns the task to be executed
|
|
|
|
/// </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
|
2017-05-21 07:25:49 +00:00
|
|
|
|
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)
|
2019-01-27 16:00:17 +00:00
|
|
|
.Split(new[] { '|' }, StringSplitOptions.RemoveEmptyEntries)
|
|
|
|
.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
|
|
|
|
2018-12-14 19:17:29 +00:00
|
|
|
var directoryService = new DirectoryService(_logger, _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
|
|
|
|
2019-01-28 21:21:14 +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)
|
|
|
|
{
|
2019-01-06 20:50:43 +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
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
public string Name => "Chapter image extraction";
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
public string Description => "Creates thumbnails for videos that have chapters.";
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
public string Category => "Library";
|
2019-01-31 06:20:34 +00:00
|
|
|
|
|
|
|
public string Key => "RefreshChapterImages";
|
|
|
|
|
|
|
|
public bool IsHidden => false;
|
|
|
|
|
|
|
|
public bool IsEnabled => true;
|
|
|
|
|
|
|
|
public bool IsLogged => true;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|