jellyfin/Emby.Server.Implementations/Library/Resolvers/PhotoResolver.cs

120 lines
4.1 KiB
C#
Raw Normal View History

using System;
2014-08-29 06:06:30 +02:00
using System.IO;
2014-02-13 06:11:54 +01:00
using System.Linq;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
2016-08-13 22:54:29 +02:00
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Entities;
2017-05-04 20:14:45 +02:00
using MediaBrowser.Model.IO;
2014-02-13 06:11:54 +01:00
namespace Emby.Server.Implementations.Library.Resolvers
2014-02-13 06:11:54 +01:00
{
public class PhotoResolver : ItemResolver<Photo>
{
2015-04-08 16:38:02 +02:00
private readonly IImageProcessor _imageProcessor;
2016-07-11 06:57:22 +02:00
private readonly ILibraryManager _libraryManager;
2017-05-04 20:14:45 +02:00
private readonly IFileSystem _fileSystem;
2016-07-11 06:57:22 +02:00
2017-05-04 20:14:45 +02:00
public PhotoResolver(IImageProcessor imageProcessor, ILibraryManager libraryManager, IFileSystem fileSystem)
2015-04-08 16:38:02 +02:00
{
_imageProcessor = imageProcessor;
2016-07-11 06:57:22 +02:00
_libraryManager = libraryManager;
2017-05-04 20:14:45 +02:00
_fileSystem = fileSystem;
2015-04-08 16:38:02 +02:00
}
2014-02-13 06:11:54 +01:00
/// <summary>
/// Resolves the specified args.
/// </summary>
/// <param name="args">The args.</param>
/// <returns>Trailer.</returns>
protected override Photo Resolve(ItemResolveArgs args)
{
2016-07-11 06:57:22 +02:00
if (!args.IsDirectory)
2014-02-13 06:11:54 +01:00
{
2016-07-11 06:57:22 +02:00
// Must be an image file within a photo collection
var collectionType = args.GetCollectionType();
if (string.Equals(collectionType, CollectionType.Photos, StringComparison.OrdinalIgnoreCase) ||
2016-08-15 06:36:17 +02:00
(string.Equals(collectionType, CollectionType.HomeVideos, StringComparison.OrdinalIgnoreCase) && args.GetLibraryOptions().EnablePhotos))
2014-02-13 06:11:54 +01:00
{
2016-07-11 06:57:22 +02:00
if (IsImageFile(args.Path, _imageProcessor))
{
var filename = Path.GetFileNameWithoutExtension(args.Path);
// Make sure the image doesn't belong to a video file
2017-10-21 18:39:52 +02:00
var files = args.DirectoryService.GetFiles(_fileSystem.GetDirectoryName(args.Path));
var libraryOptions = args.GetLibraryOptions();
foreach (var file in files)
2016-07-11 06:57:22 +02:00
{
2017-10-21 18:39:52 +02:00
if (IsOwnedByMedia(_libraryManager, libraryOptions, file.FullName, filename))
{
return null;
}
2016-07-11 06:57:22 +02:00
}
return new Photo
{
Path = args.Path
};
}
}
2014-02-13 06:11:54 +01:00
}
return null;
}
2017-10-21 18:39:52 +02:00
internal static bool IsOwnedByMedia(ILibraryManager libraryManager, LibraryOptions libraryOptions, string file, string imageFilename)
2016-07-11 06:57:22 +02:00
{
2017-10-21 18:39:52 +02:00
if (libraryManager.IsVideoFile(file, libraryOptions))
2016-07-11 06:57:22 +02:00
{
2017-10-21 18:39:52 +02:00
return IsOwnedByResolvedMedia(libraryManager, libraryOptions, file, imageFilename);
}
return false;
}
internal static bool IsOwnedByResolvedMedia(ILibraryManager libraryManager, LibraryOptions libraryOptions, string file, string imageFilename)
{
if (imageFilename.StartsWith(Path.GetFileNameWithoutExtension(file), StringComparison.OrdinalIgnoreCase))
{
return true;
2016-07-11 06:57:22 +02:00
}
return false;
}
2014-10-12 03:46:02 +02:00
private static readonly string[] IgnoreFiles =
{
"folder",
"thumb",
"landscape",
"fanart",
"backdrop",
2016-07-11 06:57:22 +02:00
"poster",
2017-10-21 18:39:52 +02:00
"cover",
2018-09-12 19:26:21 +02:00
"logo",
"default"
2014-10-12 03:46:02 +02:00
};
2015-04-08 16:38:02 +02:00
internal static bool IsImageFile(string path, IImageProcessor imageProcessor)
2014-02-13 06:11:54 +01:00
{
2014-10-12 03:46:02 +02:00
var filename = Path.GetFileNameWithoutExtension(path) ?? string.Empty;
2014-08-29 06:06:30 +02:00
if (IgnoreFiles.Contains(filename, StringComparer.OrdinalIgnoreCase))
{
return false;
}
2016-09-20 17:22:00 +02:00
if (IgnoreFiles.Any(i => filename.IndexOf(i, StringComparison.OrdinalIgnoreCase) != -1))
{
return false;
}
return imageProcessor.SupportedInputFormats.Contains((Path.GetExtension(path) ?? string.Empty).TrimStart('.'), StringComparer.OrdinalIgnoreCase);
2014-02-13 06:11:54 +01:00
}
}
}