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

117 lines
3.9 KiB
C#
Raw Normal View History

#nullable disable
2019-11-01 18:38:54 +01:00
#pragma warning disable CS1591
using System;
2019-02-06 21:31:41 +01:00
using System.Collections.Generic;
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;
using MediaBrowser.Model.Entities;
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;
2019-05-11 11:55:41 +02:00
private static readonly HashSet<string> _ignoreFiles = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
{
"folder",
"thumb",
"landscape",
"fanart",
"backdrop",
"poster",
"cover",
"logo",
"default"
};
2016-07-11 06:57:22 +02:00
2019-02-06 20:38:42 +01:00
public PhotoResolver(IImageProcessor imageProcessor, ILibraryManager libraryManager)
2015-04-08 16:38:02 +02:00
{
_imageProcessor = imageProcessor;
2016-07-11 06:57:22 +02:00
_libraryManager = libraryManager;
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
2019-05-11 11:55:41 +02:00
var collectionType = args.CollectionType;
2016-07-11 06:57:22 +02:00
2019-05-11 11:55:41 +02:00
if (string.Equals(collectionType, CollectionType.Photos, StringComparison.OrdinalIgnoreCase)
2021-05-05 15:30:32 +02:00
|| (string.Equals(collectionType, CollectionType.HomeVideos, StringComparison.OrdinalIgnoreCase) && args.LibraryOptions.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
var files = args.DirectoryService.GetFiles(Path.GetDirectoryName(args.Path));
2017-10-21 18:39:52 +02:00
foreach (var file in files)
2016-07-11 06:57:22 +02:00
{
2020-02-19 21:56:35 +01:00
if (IsOwnedByMedia(_libraryManager, file.FullName, filename))
2017-10-21 18:39:52 +02:00
{
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;
}
2020-02-19 21:56:35 +01:00
internal static bool IsOwnedByMedia(ILibraryManager libraryManager, string file, string imageFilename)
2016-07-11 06:57:22 +02:00
{
2020-02-19 21:56:35 +01:00
if (libraryManager.IsVideoFile(file))
2016-07-11 06:57:22 +02:00
{
2020-02-19 21:56:35 +01:00
return IsOwnedByResolvedMedia(libraryManager, file, imageFilename);
2017-10-21 18:39:52 +02:00
}
return false;
}
2020-02-19 21:56:35 +01:00
internal static bool IsOwnedByResolvedMedia(ILibraryManager libraryManager, string file, string imageFilename)
2019-05-11 11:55:41 +02:00
=> imageFilename.StartsWith(Path.GetFileNameWithoutExtension(file), StringComparison.OrdinalIgnoreCase);
internal static bool IsImageFile(string path, IImageProcessor imageProcessor)
2017-10-21 18:39:52 +02:00
{
2019-05-11 11:55:41 +02:00
if (path == null)
2017-10-21 18:39:52 +02:00
{
2019-05-11 11:55:41 +02:00
throw new ArgumentNullException(nameof(path));
2016-07-11 06:57:22 +02:00
}
2019-05-11 11:55:41 +02:00
var filename = Path.GetFileNameWithoutExtension(path);
2014-08-29 06:06:30 +02:00
2019-05-11 11:55:41 +02:00
if (_ignoreFiles.Contains(filename))
{
return false;
}
2019-05-11 11:55:41 +02:00
if (_ignoreFiles.Any(i => filename.IndexOf(i, StringComparison.OrdinalIgnoreCase) != -1))
{
return false;
}
2019-05-11 11:55:41 +02:00
string extension = Path.GetExtension(path).TrimStart('.');
return imageProcessor.SupportedInputFormats.Contains(extension, StringComparer.OrdinalIgnoreCase);
2014-02-13 06:11:54 +01:00
}
}
}