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

114 lines
3.8 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 Emby.Naming.Common;
using Emby.Naming.Video;
2021-12-20 13:31:07 +01:00
using Jellyfin.Extensions;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Resolvers;
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;
private readonly NamingOptions _namingOptions;
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
public PhotoResolver(IImageProcessor imageProcessor, NamingOptions namingOptions)
2015-04-08 16:38:02 +02:00
{
_imageProcessor = imageProcessor;
_namingOptions = namingOptions;
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
{
if (IsOwnedByMedia(_namingOptions, 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;
}
internal static bool IsOwnedByMedia(NamingOptions namingOptions, string file, string imageFilename)
2016-07-11 06:57:22 +02:00
{
return VideoResolver.IsVideoFile(file, namingOptions) && IsOwnedByResolvedMedia(file, imageFilename);
2017-10-21 18:39:52 +02:00
}
internal static bool IsOwnedByResolvedMedia(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
{
ArgumentNullException.ThrowIfNull(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('.');
2021-12-20 13:31:07 +01:00
return imageProcessor.SupportedInputFormats.Contains(extension, StringComparison.OrdinalIgnoreCase);
2014-02-13 06:11:54 +01:00
}
}
}