| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.IO; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Text.RegularExpressions; |
| | 6 | | using Emby.Naming.Common; |
| | 7 | | using Jellyfin.Extensions; |
| | 8 | | using MediaBrowser.Model.IO; |
| | 9 | |
|
| | 10 | | namespace Emby.Naming.Video |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// Resolves alternative versions and extras from list of video files. |
| | 14 | | /// </summary> |
| | 15 | | public static partial class VideoListResolver |
| | 16 | | { |
| | 17 | | [GeneratedRegex("[0-9]{2}[0-9]+[ip]", RegexOptions.IgnoreCase)] |
| | 18 | | private static partial Regex ResolutionRegex(); |
| | 19 | |
|
| | 20 | | [GeneratedRegex(@"^\[([^]]*)\]")] |
| | 21 | | private static partial Regex CheckMultiVersionRegex(); |
| | 22 | |
|
| | 23 | | /// <summary> |
| | 24 | | /// Resolves alternative versions and extras from list of video files. |
| | 25 | | /// </summary> |
| | 26 | | /// <param name="videoInfos">List of related video files.</param> |
| | 27 | | /// <param name="namingOptions">The naming options.</param> |
| | 28 | | /// <param name="supportMultiVersion">Indication we should consider multi-versions of content.</param> |
| | 29 | | /// <param name="parseName">Whether to parse the name or use the filename.</param> |
| | 30 | | /// <param name="libraryRoot">Top-level folder for the containing library.</param> |
| | 31 | | /// <returns>Returns enumerable of <see cref="VideoInfo"/> which groups files together when related.</returns> |
| | 32 | | public static IReadOnlyList<VideoInfo> Resolve(IReadOnlyList<VideoFileInfo> videoInfos, NamingOptions namingOpti |
| | 33 | | { |
| | 34 | | // Filter out all extras, otherwise they could cause stacks to not be resolved |
| | 35 | | // See the unit test TestStackedWithTrailer |
| 40 | 36 | | var nonExtras = videoInfos |
| 40 | 37 | | .Where(i => i.ExtraType is null) |
| 40 | 38 | | .Select(i => new FileSystemMetadata { FullName = i.Path, IsDirectory = i.IsDirectory }); |
| | 39 | |
|
| 40 | 40 | | var stackResult = StackResolver.Resolve(nonExtras, namingOptions).ToList(); |
| | 41 | |
|
| 40 | 42 | | var remainingFiles = new List<VideoFileInfo>(); |
| 40 | 43 | | var standaloneMedia = new List<VideoFileInfo>(); |
| | 44 | |
|
| 400 | 45 | | for (var i = 0; i < videoInfos.Count; i++) |
| | 46 | | { |
| 160 | 47 | | var current = videoInfos[i]; |
| 160 | 48 | | if (stackResult.Any(s => s.ContainsFile(current.Path, current.IsDirectory))) |
| | 49 | | { |
| | 50 | | continue; |
| | 51 | | } |
| | 52 | |
|
| 145 | 53 | | if (current.ExtraType is null) |
| | 54 | | { |
| 120 | 55 | | standaloneMedia.Add(current); |
| | 56 | | } |
| | 57 | | else |
| | 58 | | { |
| 25 | 59 | | remainingFiles.Add(current); |
| | 60 | | } |
| | 61 | | } |
| | 62 | |
|
| 40 | 63 | | var list = new List<VideoInfo>(); |
| | 64 | |
|
| 92 | 65 | | foreach (var stack in stackResult) |
| | 66 | | { |
| 6 | 67 | | var info = new VideoInfo(stack.Name) |
| 6 | 68 | | { |
| 6 | 69 | | Files = stack.Files.Select(i => VideoResolver.Resolve(i, stack.IsDirectoryStack, namingOptions, pars |
| 6 | 70 | | .OfType<VideoFileInfo>() |
| 6 | 71 | | .ToList() |
| 6 | 72 | | }; |
| | 73 | |
|
| 6 | 74 | | info.Year = info.Files[0].Year; |
| 6 | 75 | | list.Add(info); |
| | 76 | | } |
| | 77 | |
|
| 320 | 78 | | foreach (var media in standaloneMedia) |
| | 79 | | { |
| 120 | 80 | | var info = new VideoInfo(media.Name) { Files = new[] { media } }; |
| | 81 | |
|
| 120 | 82 | | info.Year = info.Files[0].Year; |
| 120 | 83 | | list.Add(info); |
| | 84 | | } |
| | 85 | |
|
| 40 | 86 | | if (supportMultiVersion) |
| | 87 | | { |
| 40 | 88 | | list = GetVideosGroupedByVersion(list, namingOptions); |
| | 89 | | } |
| | 90 | |
|
| | 91 | | // Whatever files are left, just add them |
| 40 | 92 | | list.AddRange(remainingFiles.Select(i => new VideoInfo(i.Name) |
| 40 | 93 | | { |
| 40 | 94 | | Files = new[] { i }, |
| 40 | 95 | | Year = i.Year, |
| 40 | 96 | | ExtraType = i.ExtraType |
| 40 | 97 | | })); |
| | 98 | |
|
| 40 | 99 | | return list; |
| | 100 | | } |
| | 101 | |
|
| | 102 | | private static List<VideoInfo> GetVideosGroupedByVersion(List<VideoInfo> videos, NamingOptions namingOptions) |
| | 103 | | { |
| 40 | 104 | | if (videos.Count == 0) |
| | 105 | | { |
| 1 | 106 | | return videos; |
| | 107 | | } |
| | 108 | |
|
| 39 | 109 | | var folderName = Path.GetFileName(Path.GetDirectoryName(videos[0].Files[0].Path.AsSpan())); |
| | 110 | |
|
| 39 | 111 | | if (folderName.Length <= 1 || !HaveSameYear(videos)) |
| | 112 | | { |
| 17 | 113 | | return videos; |
| | 114 | | } |
| | 115 | |
|
| | 116 | | // Cannot use Span inside local functions and delegates thus we cannot use LINQ here nor merge with the abov |
| 22 | 117 | | VideoInfo? primary = null; |
| 158 | 118 | | for (var i = 0; i < videos.Count; i++) |
| | 119 | | { |
| 67 | 120 | | var video = videos[i]; |
| 67 | 121 | | if (video.ExtraType is not null) |
| | 122 | | { |
| | 123 | | continue; |
| | 124 | | } |
| | 125 | |
|
| 67 | 126 | | if (!IsEligibleForMultiVersion(folderName, video.Files[0].FileNameWithoutExtension, namingOptions)) |
| | 127 | | { |
| 10 | 128 | | return videos; |
| | 129 | | } |
| | 130 | |
|
| 57 | 131 | | if (folderName.Equals(video.Files[0].FileNameWithoutExtension, StringComparison.Ordinal)) |
| | 132 | | { |
| 7 | 133 | | primary = video; |
| | 134 | | } |
| | 135 | | } |
| | 136 | |
|
| 12 | 137 | | if (videos.Count > 1) |
| | 138 | | { |
| 11 | 139 | | var groups = videos.GroupBy(x => ResolutionRegex().IsMatch(x.Files[0].FileNameWithoutExtension)).ToList( |
| 11 | 140 | | videos.Clear(); |
| 54 | 141 | | foreach (var group in groups) |
| | 142 | | { |
| 16 | 143 | | if (group.Key) |
| | 144 | | { |
| 7 | 145 | | videos.InsertRange(0, group |
| 7 | 146 | | .OrderByDescending(x => ResolutionRegex().Match(x.Files[0].FileNameWithoutExtension.ToString |
| 7 | 147 | | .ThenBy(x => x.Files[0].FileNameWithoutExtension.ToString(), new AlphanumericComparator())); |
| | 148 | | } |
| | 149 | | else |
| | 150 | | { |
| 9 | 151 | | videos.AddRange(group.OrderBy(x => x.Files[0].FileNameWithoutExtension.ToString(), new Alphanume |
| | 152 | | } |
| | 153 | | } |
| | 154 | | } |
| | 155 | |
|
| 12 | 156 | | primary ??= videos[0]; |
| 12 | 157 | | videos.Remove(primary); |
| | 158 | |
|
| 12 | 159 | | var list = new List<VideoInfo> |
| 12 | 160 | | { |
| 12 | 161 | | primary |
| 12 | 162 | | }; |
| | 163 | |
|
| 12 | 164 | | list[0].AlternateVersions = videos.Select(x => x.Files[0]).ToArray(); |
| 12 | 165 | | list[0].Name = folderName.ToString(); |
| | 166 | |
|
| 12 | 167 | | return list; |
| | 168 | | } |
| | 169 | |
|
| | 170 | | private static bool HaveSameYear(IReadOnlyList<VideoInfo> videos) |
| | 171 | | { |
| 26 | 172 | | if (videos.Count == 1) |
| | 173 | | { |
| 7 | 174 | | return true; |
| | 175 | | } |
| | 176 | |
|
| 19 | 177 | | var firstYear = videos[0].Year ?? -1; |
| 162 | 178 | | for (var i = 1; i < videos.Count; i++) |
| | 179 | | { |
| 66 | 180 | | if ((videos[i].Year ?? -1) != firstYear) |
| | 181 | | { |
| 4 | 182 | | return false; |
| | 183 | | } |
| | 184 | | } |
| | 185 | |
|
| 15 | 186 | | return true; |
| | 187 | | } |
| | 188 | |
|
| | 189 | | private static bool IsEligibleForMultiVersion(ReadOnlySpan<char> folderName, ReadOnlySpan<char> testFilename, Na |
| | 190 | | { |
| 67 | 191 | | if (!testFilename.StartsWith(folderName, StringComparison.OrdinalIgnoreCase)) |
| | 192 | | { |
| 4 | 193 | | return false; |
| | 194 | | } |
| | 195 | |
|
| | 196 | | // Remove the folder name before cleaning as we don't care about cleaning that part |
| 63 | 197 | | if (folderName.Length <= testFilename.Length) |
| | 198 | | { |
| 63 | 199 | | testFilename = testFilename[folderName.Length..].Trim(); |
| | 200 | | } |
| | 201 | |
|
| | 202 | | // There are no span overloads for regex unfortunately |
| 63 | 203 | | if (CleanStringParser.TryClean(testFilename.ToString(), namingOptions.CleanStringRegexes, out var cleanName) |
| | 204 | | { |
| 23 | 205 | | testFilename = cleanName.AsSpan().Trim(); |
| | 206 | | } |
| | 207 | |
|
| | 208 | | // The CleanStringParser should have removed common keywords etc. |
| 63 | 209 | | return testFilename.IsEmpty |
| 63 | 210 | | || testFilename[0] == '-' |
| 63 | 211 | | || CheckMultiVersionRegex().IsMatch(testFilename); |
| | 212 | | } |
| | 213 | | } |
| | 214 | | } |