| | 1 | | using System; |
| | 2 | | using System.Diagnostics.CodeAnalysis; |
| | 3 | | using System.IO; |
| | 4 | | using Emby.Naming.Common; |
| | 5 | | using Emby.Naming.Video; |
| | 6 | | using MediaBrowser.Controller.Entities; |
| | 7 | | using MediaBrowser.Controller.Library; |
| | 8 | | using MediaBrowser.Controller.Providers; |
| | 9 | | using MediaBrowser.Controller.Resolvers; |
| | 10 | | using MediaBrowser.Model.Entities; |
| | 11 | | using Microsoft.Extensions.Logging; |
| | 12 | | using static Emby.Naming.Video.ExtraRuleResolver; |
| | 13 | |
|
| | 14 | | namespace Emby.Server.Implementations.Library.Resolvers |
| | 15 | | { |
| | 16 | | /// <summary> |
| | 17 | | /// Resolves a Path into a Video or Video subclass. |
| | 18 | | /// </summary> |
| | 19 | | internal class ExtraResolver : BaseVideoResolver<Video> |
| | 20 | | { |
| | 21 | | private readonly NamingOptions _namingOptions; |
| | 22 | | private readonly IItemResolver[] _trailerResolvers; |
| | 23 | | private readonly IItemResolver[] _videoResolvers; |
| | 24 | |
|
| | 25 | | /// <summary> |
| | 26 | | /// Initializes a new instance of the <see cref="ExtraResolver"/> class. |
| | 27 | | /// </summary> |
| | 28 | | /// <param name="logger">The logger.</param> |
| | 29 | | /// <param name="namingOptions">An instance of <see cref="NamingOptions"/>.</param> |
| | 30 | | /// <param name="directoryService">The directory service.</param> |
| | 31 | | public ExtraResolver(ILogger<ExtraResolver> logger, NamingOptions namingOptions, IDirectoryService directoryServ |
| 28 | 32 | | : base(logger, namingOptions, directoryService) |
| | 33 | | { |
| 28 | 34 | | _namingOptions = namingOptions; |
| 28 | 35 | | _trailerResolvers = new IItemResolver[] { new GenericVideoResolver<Trailer>(logger, namingOptions, directory |
| 28 | 36 | | _videoResolvers = new IItemResolver[] { this }; |
| 28 | 37 | | } |
| | 38 | |
|
| | 39 | | protected override Video Resolve(ItemResolveArgs args) |
| | 40 | | { |
| 8 | 41 | | return ResolveVideo<Video>(args, true); |
| | 42 | | } |
| | 43 | |
|
| | 44 | | /// <summary> |
| | 45 | | /// Gets the resolvers for the extra type. |
| | 46 | | /// </summary> |
| | 47 | | /// <param name="extraType">The extra type.</param> |
| | 48 | | /// <returns>The resolvers for the extra type.</returns> |
| 17 | 49 | | public IItemResolver[]? GetResolversForExtraType(ExtraType extraType) => extraType switch |
| 17 | 50 | | { |
| 7 | 51 | | ExtraType.Trailer => _trailerResolvers, |
| 17 | 52 | | // For audio we'll have to rely on the AudioResolver, which is a "built-in" |
| 2 | 53 | | ExtraType.ThemeSong => null, |
| 8 | 54 | | _ => _videoResolvers |
| 17 | 55 | | }; |
| | 56 | |
|
| | 57 | | public bool TryGetExtraTypeForOwner(string path, VideoFileInfo ownerVideoFileInfo, [NotNullWhen(true)] out Extra |
| | 58 | | { |
| 34 | 59 | | var extraResult = GetExtraInfo(path, _namingOptions, libraryRoot); |
| 34 | 60 | | if (extraResult.ExtraType is null) |
| | 61 | | { |
| 15 | 62 | | extraType = null; |
| 15 | 63 | | return false; |
| | 64 | | } |
| | 65 | |
|
| 19 | 66 | | var cleanDateTimeResult = CleanDateTimeParser.Clean(Path.GetFileNameWithoutExtension(path), _namingOptions.C |
| 19 | 67 | | var name = cleanDateTimeResult.Name; |
| 19 | 68 | | var year = cleanDateTimeResult.Year; |
| | 69 | |
|
| 19 | 70 | | var parentDir = ownerVideoFileInfo.IsDirectory ? ownerVideoFileInfo.Path : Path.GetDirectoryName(ownerVideoF |
| | 71 | |
|
| 19 | 72 | | var trimmedFileNameWithoutExtension = TrimFilenameDelimiters(ownerVideoFileInfo.FileNameWithoutExtension, _n |
| 19 | 73 | | var trimmedVideoInfoName = TrimFilenameDelimiters(ownerVideoFileInfo.Name, _namingOptions.VideoFlagDelimiter |
| 19 | 74 | | var trimmedExtraFileName = TrimFilenameDelimiters(name, _namingOptions.VideoFlagDelimiters); |
| | 75 | |
|
| | 76 | | // first check filenames |
| 19 | 77 | | bool isValid = StartsWith(trimmedExtraFileName, trimmedFileNameWithoutExtension) |
| 19 | 78 | | || (StartsWith(trimmedExtraFileName, trimmedVideoInfoName) && year == ownerVideoFileInfo.Year |
| | 79 | |
|
| 19 | 80 | | if (!isValid) |
| | 81 | | { |
| | 82 | | // When the extra rule type is DirectoryName we must go one level higher to get the "real" dir name |
| 14 | 83 | | var currentParentDir = extraResult.Rule?.RuleType == ExtraRuleType.DirectoryName |
| 14 | 84 | | ? Path.GetDirectoryName(Path.GetDirectoryName(path.AsSpan())) |
| 14 | 85 | | : Path.GetDirectoryName(path.AsSpan()); |
| | 86 | |
|
| 14 | 87 | | isValid = !currentParentDir.IsEmpty && !parentDir.IsEmpty && currentParentDir.Equals(parentDir, StringCo |
| | 88 | | } |
| | 89 | |
|
| 19 | 90 | | extraType = extraResult.ExtraType; |
| 19 | 91 | | return isValid; |
| | 92 | | } |
| | 93 | |
|
| | 94 | | private static ReadOnlySpan<char> TrimFilenameDelimiters(ReadOnlySpan<char> name, ReadOnlySpan<char> videoFlagDe |
| | 95 | | { |
| 57 | 96 | | return name.IsEmpty ? name : name.TrimEnd().TrimEnd(videoFlagDelimiters).TrimEnd(); |
| | 97 | | } |
| | 98 | |
|
| | 99 | | private static bool StartsWith(ReadOnlySpan<char> fileName, ReadOnlySpan<char> baseName) |
| | 100 | | { |
| 33 | 101 | | return !baseName.IsEmpty && fileName.StartsWith(baseName, StringComparison.OrdinalIgnoreCase); |
| | 102 | | } |
| | 103 | | } |
| | 104 | | } |