| | 1 | | using System; |
| | 2 | | using System.Diagnostics.CodeAnalysis; |
| | 3 | | using System.IO; |
| | 4 | | using Emby.Naming.Common; |
| | 5 | | using Jellyfin.Extensions; |
| | 6 | |
|
| | 7 | | namespace Emby.Naming.Video |
| | 8 | | { |
| | 9 | | /// <summary> |
| | 10 | | /// Resolves <see cref="VideoFileInfo"/> from file path. |
| | 11 | | /// </summary> |
| | 12 | | public static class VideoResolver |
| | 13 | | { |
| | 14 | | /// <summary> |
| | 15 | | /// Resolves the directory. |
| | 16 | | /// </summary> |
| | 17 | | /// <param name="path">The path.</param> |
| | 18 | | /// <param name="namingOptions">The naming options.</param> |
| | 19 | | /// <param name="parseName">Whether to parse the name or use the filename.</param> |
| | 20 | | /// <param name="libraryRoot">Top-level folder for the containing library.</param> |
| | 21 | | /// <returns>VideoFileInfo.</returns> |
| | 22 | | public static VideoFileInfo? ResolveDirectory(string? path, NamingOptions namingOptions, bool parseName = true, |
| | 23 | | { |
| 3 | 24 | | return Resolve(path, true, namingOptions, parseName, libraryRoot); |
| | 25 | | } |
| | 26 | |
|
| | 27 | | /// <summary> |
| | 28 | | /// Resolves the file. |
| | 29 | | /// </summary> |
| | 30 | | /// <param name="path">The path.</param> |
| | 31 | | /// <param name="namingOptions">The naming options.</param> |
| | 32 | | /// <param name="libraryRoot">Top-level folder for the containing library.</param> |
| | 33 | | /// <returns>VideoFileInfo.</returns> |
| | 34 | | public static VideoFileInfo? ResolveFile(string? path, NamingOptions namingOptions, string? libraryRoot = "") |
| | 35 | | { |
| 19 | 36 | | return Resolve(path, false, namingOptions, libraryRoot: libraryRoot); |
| | 37 | | } |
| | 38 | |
|
| | 39 | | /// <summary> |
| | 40 | | /// Resolves the specified path. |
| | 41 | | /// </summary> |
| | 42 | | /// <param name="path">The path.</param> |
| | 43 | | /// <param name="isDirectory">if set to <c>true</c> [is folder].</param> |
| | 44 | | /// <param name="namingOptions">The naming options.</param> |
| | 45 | | /// <param name="parseName">Whether or not the name should be parsed for info.</param> |
| | 46 | | /// <param name="libraryRoot">Top-level folder for the containing library.</param> |
| | 47 | | /// <returns>VideoFileInfo.</returns> |
| | 48 | | /// <exception cref="ArgumentNullException"><c>path</c> is <c>null</c>.</exception> |
| | 49 | | public static VideoFileInfo? Resolve(string? path, bool isDirectory, NamingOptions namingOptions, bool parseName |
| | 50 | | { |
| 222 | 51 | | if (string.IsNullOrEmpty(path)) |
| | 52 | | { |
| 2 | 53 | | return null; |
| | 54 | | } |
| | 55 | |
|
| 220 | 56 | | bool isStub = false; |
| 220 | 57 | | ReadOnlySpan<char> container = ReadOnlySpan<char>.Empty; |
| 220 | 58 | | string? stubType = null; |
| | 59 | |
|
| 220 | 60 | | if (!isDirectory) |
| | 61 | | { |
| 211 | 62 | | var extension = Path.GetExtension(path.AsSpan()); |
| | 63 | |
|
| | 64 | | // Check supported extensions |
| 211 | 65 | | if (!namingOptions.VideoFileExtensions.Contains(extension, StringComparison.OrdinalIgnoreCase)) |
| | 66 | | { |
| | 67 | | // It's not supported. Check stub extensions |
| 6 | 68 | | if (!StubResolver.TryResolveFile(path, namingOptions, out stubType)) |
| | 69 | | { |
| 1 | 70 | | return null; |
| | 71 | | } |
| | 72 | |
|
| 5 | 73 | | isStub = true; |
| | 74 | | } |
| | 75 | |
|
| 210 | 76 | | container = extension.TrimStart('.'); |
| | 77 | | } |
| | 78 | |
|
| 219 | 79 | | var format3DResult = Format3DParser.Parse(path, namingOptions); |
| | 80 | |
|
| 219 | 81 | | var extraResult = ExtraRuleResolver.GetExtraInfo(path, namingOptions, libraryRoot); |
| | 82 | |
|
| 219 | 83 | | var name = Path.GetFileNameWithoutExtension(path); |
| | 84 | |
|
| 219 | 85 | | int? year = null; |
| | 86 | |
|
| 219 | 87 | | if (parseName) |
| | 88 | | { |
| 210 | 89 | | var cleanDateTimeResult = CleanDateTime(name, namingOptions); |
| 210 | 90 | | name = cleanDateTimeResult.Name; |
| 210 | 91 | | year = cleanDateTimeResult.Year; |
| | 92 | |
|
| 210 | 93 | | if (TryCleanString(name, namingOptions, out var newName)) |
| | 94 | | { |
| 47 | 95 | | name = newName; |
| | 96 | | } |
| | 97 | | } |
| | 98 | |
|
| 219 | 99 | | return new VideoFileInfo( |
| 219 | 100 | | path: path, |
| 219 | 101 | | container: container.IsEmpty ? null : container.ToString(), |
| 219 | 102 | | isStub: isStub, |
| 219 | 103 | | name: name, |
| 219 | 104 | | year: year, |
| 219 | 105 | | stubType: stubType, |
| 219 | 106 | | is3D: format3DResult.Is3D, |
| 219 | 107 | | format3D: format3DResult.Format3D, |
| 219 | 108 | | extraType: extraResult.ExtraType, |
| 219 | 109 | | isDirectory: isDirectory, |
| 219 | 110 | | extraRule: extraResult.Rule); |
| | 111 | | } |
| | 112 | |
|
| | 113 | | /// <summary> |
| | 114 | | /// Determines if path is video file based on extension. |
| | 115 | | /// </summary> |
| | 116 | | /// <param name="path">Path to file.</param> |
| | 117 | | /// <param name="namingOptions">The naming options.</param> |
| | 118 | | /// <returns>True if is video file.</returns> |
| | 119 | | public static bool IsVideoFile(string path, NamingOptions namingOptions) |
| | 120 | | { |
| 9365 | 121 | | var extension = Path.GetExtension(path.AsSpan()); |
| 9365 | 122 | | return namingOptions.VideoFileExtensions.Contains(extension, StringComparison.OrdinalIgnoreCase); |
| | 123 | | } |
| | 124 | |
|
| | 125 | | /// <summary> |
| | 126 | | /// Determines if path is video file stub based on extension. |
| | 127 | | /// </summary> |
| | 128 | | /// <param name="path">Path to file.</param> |
| | 129 | | /// <param name="namingOptions">The naming options.</param> |
| | 130 | | /// <returns>True if is video file stub.</returns> |
| | 131 | | public static bool IsStubFile(string path, NamingOptions namingOptions) |
| | 132 | | { |
| 1 | 133 | | var extension = Path.GetExtension(path.AsSpan()); |
| 1 | 134 | | return namingOptions.StubFileExtensions.Contains(extension, StringComparison.OrdinalIgnoreCase); |
| | 135 | | } |
| | 136 | |
|
| | 137 | | /// <summary> |
| | 138 | | /// Tries to clean name of clutter. |
| | 139 | | /// </summary> |
| | 140 | | /// <param name="name">Raw name.</param> |
| | 141 | | /// <param name="namingOptions">The naming options.</param> |
| | 142 | | /// <param name="newName">Clean name.</param> |
| | 143 | | /// <returns>True if cleaning of name was successful.</returns> |
| | 144 | | public static bool TryCleanString([NotNullWhen(true)] string? name, NamingOptions namingOptions, out string newN |
| | 145 | | { |
| 237 | 146 | | return CleanStringParser.TryClean(name, namingOptions.CleanStringRegexes, out newName); |
| | 147 | | } |
| | 148 | |
|
| | 149 | | /// <summary> |
| | 150 | | /// Tries to get name and year from raw name. |
| | 151 | | /// </summary> |
| | 152 | | /// <param name="name">Raw name.</param> |
| | 153 | | /// <param name="namingOptions">The naming options.</param> |
| | 154 | | /// <returns>Returns <see cref="CleanDateTimeResult"/> with name and optional year.</returns> |
| | 155 | | public static CleanDateTimeResult CleanDateTime(string name, NamingOptions namingOptions) |
| | 156 | | { |
| 252 | 157 | | return CleanDateTimeParser.Clean(name, namingOptions.CleanDateTimeRegexes); |
| | 158 | | } |
| | 159 | | } |
| | 160 | | } |