jellyfin/MediaBrowser.Providers/Manager/ImageSaver.cs

618 lines
23 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Configuration;
2017-05-26 08:48:54 +02:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Logging;
2015-01-27 23:45:59 +01:00
using MediaBrowser.Model.Net;
using System;
using System.Collections.Generic;
2013-09-18 04:43:34 +02:00
using System.Globalization;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
namespace MediaBrowser.Providers.Manager
{
/// <summary>
/// Class ImageSaver
/// </summary>
public class ImageSaver
{
private static readonly CultureInfo UsCulture = new CultureInfo("en-US");
/// <summary>
/// The _config
/// </summary>
private readonly IServerConfigurationManager _config;
/// <summary>
/// The _directory watchers
/// </summary>
private readonly ILibraryMonitor _libraryMonitor;
private readonly IFileSystem _fileSystem;
2013-11-08 16:35:11 +01:00
private readonly ILogger _logger;
2016-11-08 19:44:23 +01:00
private readonly IMemoryStreamFactory _memoryStreamProvider;
/// <summary>
2014-02-08 21:02:35 +01:00
/// Initializes a new instance of the <see cref="ImageSaver" /> class.
/// </summary>
/// <param name="config">The config.</param>
/// <param name="libraryMonitor">The directory watchers.</param>
2014-02-08 21:02:35 +01:00
/// <param name="fileSystem">The file system.</param>
/// <param name="logger">The logger.</param>
2016-11-08 19:44:23 +01:00
public ImageSaver(IServerConfigurationManager config, ILibraryMonitor libraryMonitor, IFileSystem fileSystem, ILogger logger, IMemoryStreamFactory memoryStreamProvider)
{
_config = config;
_libraryMonitor = libraryMonitor;
_fileSystem = fileSystem;
2013-11-08 16:35:11 +01:00
_logger = logger;
2016-10-06 20:55:01 +02:00
_memoryStreamProvider = memoryStreamProvider;
}
/// <summary>
/// Saves the image.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="source">The source.</param>
/// <param name="mimeType">Type of the MIME.</param>
/// <param name="type">The type.</param>
/// <param name="imageIndex">Index of the image.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException">mimeType</exception>
2014-10-20 05:04:45 +02:00
public Task SaveImage(IHasImages item, Stream source, string mimeType, ImageType type, int? imageIndex, CancellationToken cancellationToken)
{
return SaveImage(item, source, mimeType, type, imageIndex, null, cancellationToken);
}
2016-10-17 18:35:29 +02:00
public async Task SaveImage(IHasImages item, Stream source, string mimeType, ImageType type, int? imageIndex, bool? saveLocallyWithMedia, CancellationToken cancellationToken)
{
if (string.IsNullOrEmpty(mimeType))
{
throw new ArgumentNullException("mimeType");
}
2014-02-15 23:42:06 +01:00
var saveLocally = item.SupportsLocalMetadata && item.IsSaveLocalMetadataEnabled() && !item.IsOwnedItem && !(item is Audio);
2014-04-13 19:27:13 +02:00
if (item is User)
{
saveLocally = true;
}
2013-10-25 22:58:31 +02:00
if (type != ImageType.Primary && item is Episode)
{
2013-10-25 22:58:31 +02:00
saveLocally = false;
}
2013-10-25 22:58:31 +02:00
var locationType = item.LocationType;
if (locationType == LocationType.Remote || locationType == LocationType.Virtual)
{
saveLocally = false;
var season = item as Season;
// If season is virtual under a physical series, save locally if using compatible convention
if (season != null && _config.Configuration.ImageSavingConvention == ImageSavingConvention.Compatible)
{
var series = season.Series;
2014-02-15 23:42:06 +01:00
if (series != null && series.SupportsLocalMetadata && series.IsSaveLocalMetadataEnabled())
{
2014-02-10 21:11:46 +01:00
saveLocally = true;
}
}
}
2016-10-17 18:35:29 +02:00
if (saveLocallyWithMedia.HasValue && !saveLocallyWithMedia.Value)
2014-10-20 05:04:45 +02:00
{
2016-10-17 18:35:29 +02:00
saveLocally = saveLocallyWithMedia.Value;
2014-10-20 05:04:45 +02:00
}
2014-02-07 21:30:41 +01:00
if (!imageIndex.HasValue && item.AllowsMultipleImages(type))
{
2014-02-07 21:30:41 +01:00
imageIndex = item.GetImages(type).Count();
}
2013-12-19 22:51:32 +01:00
var index = imageIndex ?? 0;
2015-10-30 17:45:22 +01:00
var paths = GetSavePaths(item, type, imageIndex, mimeType, saveLocally);
2015-10-30 17:45:22 +01:00
var retryPaths = GetSavePaths(item, type, imageIndex, mimeType, false);
// If there are more than one output paths, the stream will need to be seekable
2016-10-06 20:55:01 +02:00
var memoryStream = _memoryStreamProvider.CreateNew();
using (source)
{
await source.CopyToAsync(memoryStream).ConfigureAwait(false);
}
source = memoryStream;
2015-10-16 19:06:31 +02:00
var currentImage = GetCurrentImage(item, type, index);
var currentImageIsLocalFile = currentImage != null && currentImage.IsLocalFile;
var currentImagePath = currentImage == null ? null : currentImage.Path;
2016-01-17 04:23:59 +01:00
var savedPaths = new List<string>();
using (source)
{
var currentPathIndex = 0;
foreach (var path in paths)
{
source.Position = 0;
2015-10-11 02:39:30 +02:00
string retryPath = null;
if (paths.Length == retryPaths.Length)
{
retryPath = retryPaths[currentPathIndex];
}
2016-01-17 04:23:59 +01:00
var savedPath = await SaveImageToLocation(source, path, retryPath, cancellationToken).ConfigureAwait(false);
savedPaths.Add(savedPath);
currentPathIndex++;
}
}
2013-12-19 22:51:32 +01:00
// Set the path into the item
2016-01-17 04:23:59 +01:00
SetImagePath(item, type, imageIndex, savedPaths[0]);
// Delete the current path
if (currentImageIsLocalFile && !savedPaths.Contains(currentImagePath, StringComparer.OrdinalIgnoreCase))
{
var currentPath = currentImagePath;
2015-10-16 19:06:31 +02:00
2017-05-12 06:54:19 +02:00
_logger.Info("Deleting previous image {0}", currentPath);
2016-06-27 06:19:10 +02:00
_libraryMonitor.ReportFileSystemChangeBeginning(currentPath);
try
{
2017-03-24 16:03:49 +01:00
_fileSystem.DeleteFile(currentPath);
}
catch (FileNotFoundException)
{
}
finally
{
_libraryMonitor.ReportFileSystemChangeComplete(currentPath, false);
}
}
}
2016-01-17 04:23:59 +01:00
private async Task<string> SaveImageToLocation(Stream source, string path, string retryPath, CancellationToken cancellationToken)
{
try
{
await SaveImageToLocation(source, path, cancellationToken).ConfigureAwait(false);
2016-01-17 04:23:59 +01:00
return path;
}
catch (UnauthorizedAccessException)
{
2015-10-30 17:45:22 +01:00
var retry = !string.IsNullOrWhiteSpace(retryPath) &&
2015-10-11 02:39:30 +02:00
!string.Equals(path, retryPath, StringComparison.OrdinalIgnoreCase);
if (retry)
{
_logger.Error("UnauthorizedAccessException - Access to path {0} is denied. Will retry saving to {1}", path, retryPath);
}
else
{
throw;
}
}
2016-10-03 08:28:45 +02:00
catch (IOException ex)
{
var retry = !string.IsNullOrWhiteSpace(retryPath) &&
!string.Equals(path, retryPath, StringComparison.OrdinalIgnoreCase);
if (retry)
{
_logger.Error("IOException saving to {0}. {2}. Will retry saving to {1}", path, retryPath, ex.Message);
}
else
{
throw;
}
}
source.Position = 0;
await SaveImageToLocation(source, retryPath, cancellationToken).ConfigureAwait(false);
2016-01-17 04:23:59 +01:00
return retryPath;
}
/// <summary>
/// Saves the image to location.
/// </summary>
/// <param name="source">The source.</param>
/// <param name="path">The path.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
private async Task SaveImageToLocation(Stream source, string path, CancellationToken cancellationToken)
{
2017-05-12 06:54:19 +02:00
_logger.Info("Saving image to {0}", path);
2013-11-08 16:35:11 +01:00
2017-05-04 20:14:45 +02:00
var parentFolder = _fileSystem.GetDirectoryName(path);
2013-11-08 16:35:11 +01:00
try
{
2017-02-04 22:22:55 +01:00
_libraryMonitor.ReportFileSystemChangeBeginning(path);
_libraryMonitor.ReportFileSystemChangeBeginning(parentFolder);
2017-05-04 20:14:45 +02:00
_fileSystem.CreateDirectory(_fileSystem.GetDirectoryName(path));
2017-05-12 06:54:19 +02:00
_fileSystem.SetAttributes(path, false, false);
2017-05-12 06:54:19 +02:00
using (var fs = _fileSystem.GetFileStream(path, FileOpenMode.Create, FileAccessMode.Write, FileShareMode.Read, FileOpenOptions.Asynchronous))
{
2017-05-12 06:54:19 +02:00
await source.CopyToAsync(fs, StreamDefaults.DefaultCopyToBufferSize, cancellationToken).ConfigureAwait(false);
}
if (_config.Configuration.SaveMetadataHidden)
{
2017-05-12 06:54:19 +02:00
_fileSystem.SetHidden(path, true);
}
}
finally
{
_libraryMonitor.ReportFileSystemChangeComplete(path, false);
_libraryMonitor.ReportFileSystemChangeComplete(parentFolder, false);
}
}
/// <summary>
/// Gets the save paths.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="type">The type.</param>
/// <param name="imageIndex">Index of the image.</param>
/// <param name="mimeType">Type of the MIME.</param>
/// <param name="saveLocally">if set to <c>true</c> [save locally].</param>
/// <returns>IEnumerable{System.String}.</returns>
2014-02-15 23:42:06 +01:00
private string[] GetSavePaths(IHasImages item, ImageType type, int? imageIndex, string mimeType, bool saveLocally)
{
2016-06-28 06:47:30 +02:00
if (!saveLocally || (_config.Configuration.ImageSavingConvention == ImageSavingConvention.Legacy))
{
2013-10-17 17:35:39 +02:00
return new[] { GetStandardSavePath(item, type, imageIndex, mimeType, saveLocally) };
}
return GetCompatibleSavePaths(item, type, imageIndex, mimeType);
}
/// <summary>
/// Gets the current image path.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="type">The type.</param>
/// <param name="imageIndex">Index of the image.</param>
/// <returns>System.String.</returns>
/// <exception cref="System.ArgumentNullException">
/// imageIndex
/// or
/// imageIndex
/// </exception>
2015-10-16 19:06:31 +02:00
private ItemImageInfo GetCurrentImage(IHasImages item, ImageType type, int imageIndex)
{
2015-10-16 19:06:31 +02:00
return item.GetImageInfo(type, imageIndex);
}
/// <summary>
/// Sets the image path.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="type">The type.</param>
/// <param name="imageIndex">Index of the image.</param>
/// <param name="path">The path.</param>
/// <exception cref="System.ArgumentNullException">imageIndex
/// or
/// imageIndex</exception>
2014-02-15 23:42:06 +01:00
private void SetImagePath(IHasImages item, ImageType type, int? imageIndex, string path)
{
2015-10-04 05:38:46 +02:00
item.SetImagePath(type, imageIndex ?? 0, _fileSystem.GetFileInfo(path));
}
/// <summary>
/// Gets the save path.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="type">The type.</param>
/// <param name="imageIndex">Index of the image.</param>
/// <param name="mimeType">Type of the MIME.</param>
/// <param name="saveLocally">if set to <c>true</c> [save locally].</param>
/// <returns>System.String.</returns>
/// <exception cref="System.ArgumentNullException">
/// imageIndex
/// or
/// imageIndex
/// </exception>
2014-02-15 23:42:06 +01:00
private string GetStandardSavePath(IHasImages item, ImageType type, int? imageIndex, string mimeType, bool saveLocally)
{
2016-01-22 03:59:07 +01:00
var season = item as Season;
var extension = MimeTypes.ToExtension(mimeType);
2016-10-19 08:29:00 +02:00
if (string.IsNullOrWhiteSpace(extension))
{
throw new ArgumentException(string.Format("Unable to determine image file extension from mime type {0}", mimeType));
}
2016-01-22 03:59:07 +01:00
if (type == ImageType.Thumb && saveLocally)
{
if (season != null && season.IndexNumber.HasValue)
{
var seriesFolder = season.SeriesPath;
var seasonMarker = season.IndexNumber.Value == 0
? "-specials"
: season.IndexNumber.Value.ToString("00", UsCulture);
var imageFilename = "season" + seasonMarker + "-landscape" + extension;
return Path.Combine(seriesFolder, imageFilename);
}
2017-07-31 07:16:22 +02:00
if (item.IsInMixedFolder)
2016-01-22 03:59:07 +01:00
{
return GetSavePathForItemInMixedFolder(item, type, "landscape", extension);
}
return Path.Combine(item.ContainingFolderPath, "landscape" + extension);
}
if (type == ImageType.Banner && saveLocally)
{
if (season != null && season.IndexNumber.HasValue)
{
var seriesFolder = season.SeriesPath;
var seasonMarker = season.IndexNumber.Value == 0
? "-specials"
: season.IndexNumber.Value.ToString("00", UsCulture);
var imageFilename = "season" + seasonMarker + "-banner" + extension;
return Path.Combine(seriesFolder, imageFilename);
}
}
string filename;
2016-06-27 06:19:10 +02:00
var folderName = item is MusicAlbum ||
item is MusicArtist ||
item is PhotoAlbum ||
2017-03-05 16:38:17 +01:00
item is Person ||
2016-06-27 06:19:10 +02:00
(saveLocally && _config.Configuration.ImageSavingConvention == ImageSavingConvention.Legacy) ?
"folder" :
2016-02-06 03:13:36 +01:00
"poster";
2014-10-20 05:04:45 +02:00
switch (type)
{
case ImageType.Art:
filename = "clearart";
break;
2014-01-29 02:47:47 +01:00
case ImageType.BoxRear:
filename = "back";
break;
2016-01-22 03:59:07 +01:00
case ImageType.Thumb:
filename = "landscape";
break;
2013-11-19 17:44:53 +01:00
case ImageType.Disc:
filename = item is MusicAlbum ? "cdart" : "disc";
break;
case ImageType.Primary:
2016-01-22 03:59:07 +01:00
filename = item is Episode ? _fileSystem.GetFileNameWithoutExtension(item.Path) : folderName;
break;
case ImageType.Backdrop:
2014-02-07 21:30:41 +01:00
filename = GetBackdropSaveFilename(item.GetImages(type), "backdrop", "backdrop", imageIndex);
break;
case ImageType.Screenshot:
2014-02-07 21:30:41 +01:00
filename = GetBackdropSaveFilename(item.GetImages(type), "screenshot", "screenshot", imageIndex);
break;
default:
filename = type.ToString().ToLower();
break;
}
2016-01-23 18:12:11 +01:00
if (string.Equals(extension, ".jpeg", StringComparison.OrdinalIgnoreCase))
{
2016-01-23 18:12:11 +01:00
extension = ".jpg";
}
2016-01-23 18:12:11 +01:00
extension = extension.ToLower();
string path = null;
if (saveLocally)
{
2016-03-21 21:15:18 +01:00
if (type == ImageType.Primary && item is Episode)
{
2017-05-04 20:14:45 +02:00
path = Path.Combine(_fileSystem.GetDirectoryName(item.Path), "metadata", filename + extension);
}
2017-07-31 07:16:22 +02:00
else if (item.IsInMixedFolder)
{
path = GetSavePathForItemInMixedFolder(item, type, filename, extension);
}
2013-10-25 22:58:31 +02:00
if (string.IsNullOrEmpty(path))
{
path = Path.Combine(item.ContainingFolderPath, filename + extension);
}
}
// None of the save local conditions passed, so store it in our internal folders
if (string.IsNullOrEmpty(path))
{
2014-02-09 05:52:52 +01:00
if (string.IsNullOrEmpty(filename))
{
2016-01-22 03:59:07 +01:00
filename = folderName;
2014-02-09 05:52:52 +01:00
}
2014-09-28 17:27:26 +02:00
path = Path.Combine(item.GetInternalMetadataPath(), filename + extension);
}
return path;
}
2014-02-07 21:30:41 +01:00
private string GetBackdropSaveFilename(IEnumerable<ItemImageInfo> images, string zeroIndexFilename, string numberedIndexPrefix, int? index)
{
2014-02-07 21:30:41 +01:00
if (index.HasValue && index.Value == 0)
{
return zeroIndexFilename;
}
2014-07-26 19:30:15 +02:00
var filenames = images.Select(i => _fileSystem.GetFileNameWithoutExtension(i.Path)).ToList();
2013-11-03 02:58:56 +01:00
2014-02-07 21:30:41 +01:00
var current = 1;
2013-11-03 02:58:56 +01:00
while (filenames.Contains(numberedIndexPrefix + current.ToString(UsCulture), StringComparer.OrdinalIgnoreCase))
{
current++;
}
return numberedIndexPrefix + current.ToString(UsCulture);
}
/// <summary>
/// Gets the compatible save paths.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="type">The type.</param>
/// <param name="imageIndex">Index of the image.</param>
/// <param name="mimeType">Type of the MIME.</param>
/// <returns>IEnumerable{System.String}.</returns>
/// <exception cref="System.ArgumentNullException">imageIndex</exception>
2014-02-15 23:42:06 +01:00
private string[] GetCompatibleSavePaths(IHasImages item, ImageType type, int? imageIndex, string mimeType)
{
var season = item as Season;
2014-10-20 05:04:45 +02:00
var extension = MimeTypes.ToExtension(mimeType);
// Backdrop paths
if (type == ImageType.Backdrop)
{
if (!imageIndex.HasValue)
{
throw new ArgumentNullException("imageIndex");
}
if (imageIndex.Value == 0)
{
2017-07-31 07:16:22 +02:00
if (item.IsInMixedFolder)
2013-12-12 00:30:41 +01:00
{
return new[] { GetSavePathForItemInMixedFolder(item, type, "fanart", extension) };
}
2014-02-15 23:42:06 +01:00
if (season != null && season.IndexNumber.HasValue)
2013-10-16 03:44:23 +02:00
{
var seriesFolder = season.SeriesPath;
2013-10-16 03:44:23 +02:00
2014-02-15 23:42:06 +01:00
var seasonMarker = season.IndexNumber.Value == 0
2013-10-16 03:44:23 +02:00
? "-specials"
2014-02-15 23:42:06 +01:00
: season.IndexNumber.Value.ToString("00", UsCulture);
2013-10-16 03:44:23 +02:00
var imageFilename = "season" + seasonMarker + "-fanart" + extension;
return new[] { Path.Combine(seriesFolder, imageFilename) };
}
return new[]
{
Path.Combine(item.ContainingFolderPath, "fanart" + extension)
};
}
var outputIndex = imageIndex.Value;
2017-07-31 07:16:22 +02:00
if (item.IsInMixedFolder)
2013-12-12 00:30:41 +01:00
{
return new[] { GetSavePathForItemInMixedFolder(item, type, "fanart" + outputIndex.ToString(UsCulture), extension) };
}
2014-02-07 21:30:41 +01:00
var extraFanartFilename = GetBackdropSaveFilename(item.GetImages(ImageType.Backdrop), "fanart", "fanart", outputIndex);
2013-11-03 02:58:56 +01:00
var list = new List<string>
{
Path.Combine(item.ContainingFolderPath, "extrafanart", extraFanartFilename + extension)
};
if (EnableExtraThumbsDuplication)
{
list.Add(Path.Combine(item.ContainingFolderPath, "extrathumbs", "thumb" + outputIndex.ToString(UsCulture) + extension));
}
return list.ToArray();
}
if (type == ImageType.Primary)
{
2014-02-15 23:42:06 +01:00
if (season != null && season.IndexNumber.HasValue)
{
var seriesFolder = season.SeriesPath;
2014-02-15 23:42:06 +01:00
var seasonMarker = season.IndexNumber.Value == 0
? "-specials"
2014-02-15 23:42:06 +01:00
: season.IndexNumber.Value.ToString("00", UsCulture);
var imageFilename = "season" + seasonMarker + "-poster" + extension;
return new[] { Path.Combine(seriesFolder, imageFilename) };
}
if (item is Episode)
{
2017-05-04 20:14:45 +02:00
var seasonFolder = _fileSystem.GetDirectoryName(item.Path);
2014-07-26 19:30:15 +02:00
var imageFilename = _fileSystem.GetFileNameWithoutExtension(item.Path) + "-thumb" + extension;
return new[] { Path.Combine(seasonFolder, imageFilename) };
}
2017-07-31 07:16:22 +02:00
if (item.IsInMixedFolder || item is MusicVideo)
{
return new[] { GetSavePathForItemInMixedFolder(item, type, string.Empty, extension) };
}
2013-11-21 21:48:26 +01:00
if (item is MusicAlbum || item is MusicArtist)
{
return new[] { Path.Combine(item.ContainingFolderPath, "folder" + extension) };
}
return new[] { Path.Combine(item.ContainingFolderPath, "poster" + extension) };
}
// All other paths are the same
2013-10-17 17:35:39 +02:00
return new[] { GetStandardSavePath(item, type, imageIndex, mimeType, true) };
}
private bool EnableExtraThumbsDuplication
{
get
{
var config = _config.GetConfiguration<XbmcMetadataOptions>("xbmcmetadata");
return config.EnableExtraThumbsDuplication;
}
}
/// <summary>
/// Gets the save path for item in mixed folder.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="type">The type.</param>
/// <param name="imageFilename">The image filename.</param>
/// <param name="extension">The extension.</param>
/// <returns>System.String.</returns>
2013-12-19 22:51:32 +01:00
private string GetSavePathForItemInMixedFolder(IHasImages item, ImageType type, string imageFilename, string extension)
{
if (type == ImageType.Primary)
{
imageFilename = "poster";
}
2017-05-04 20:14:45 +02:00
var folder = _fileSystem.GetDirectoryName(item.Path);
2014-07-26 19:30:15 +02:00
return Path.Combine(folder, _fileSystem.GetFileNameWithoutExtension(item.Path) + "-" + imageFilename + extension);
}
}
}