| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.IO; |
| | 7 | | using System.Linq; |
| | 8 | | using DiscUtils.Udf; |
| | 9 | | using Emby.Naming.Common; |
| | 10 | | using Emby.Naming.Video; |
| | 11 | | using MediaBrowser.Controller.Entities; |
| | 12 | | using MediaBrowser.Controller.Library; |
| | 13 | | using MediaBrowser.Controller.Providers; |
| | 14 | | using MediaBrowser.Model.Entities; |
| | 15 | | using Microsoft.Extensions.Logging; |
| | 16 | |
|
| | 17 | | namespace Emby.Server.Implementations.Library.Resolvers |
| | 18 | | { |
| | 19 | | /// <summary> |
| | 20 | | /// Resolves a Path into a Video or Video subclass. |
| | 21 | | /// </summary> |
| | 22 | | /// <typeparam name="T">The type of item to resolve.</typeparam> |
| | 23 | | public abstract class BaseVideoResolver<T> : MediaBrowser.Controller.Resolvers.ItemResolver<T> |
| | 24 | | where T : Video, new() |
| | 25 | | { |
| | 26 | | private readonly ILogger _logger; |
| | 27 | |
|
| 101 | 28 | | protected BaseVideoResolver(ILogger logger, NamingOptions namingOptions, IDirectoryService directoryService) |
| | 29 | | { |
| 101 | 30 | | _logger = logger; |
| 101 | 31 | | NamingOptions = namingOptions; |
| 101 | 32 | | DirectoryService = directoryService; |
| 101 | 33 | | } |
| | 34 | |
|
| | 35 | | protected NamingOptions NamingOptions { get; } |
| | 36 | |
|
| | 37 | | protected IDirectoryService DirectoryService { get; } |
| | 38 | |
|
| | 39 | | /// <summary> |
| | 40 | | /// Resolves the specified args. |
| | 41 | | /// </summary> |
| | 42 | | /// <param name="args">The args.</param> |
| | 43 | | /// <returns>`0.</returns> |
| | 44 | | protected override T Resolve(ItemResolveArgs args) |
| | 45 | | { |
| 8 | 46 | | return ResolveVideo<T>(args, false); |
| | 47 | | } |
| | 48 | |
|
| | 49 | | /// <summary> |
| | 50 | | /// Resolves the video. |
| | 51 | | /// </summary> |
| | 52 | | /// <typeparam name="TVideoType">The type of the T video type.</typeparam> |
| | 53 | | /// <param name="args">The args.</param> |
| | 54 | | /// <param name="parseName">if set to <c>true</c> [parse name].</param> |
| | 55 | | /// <returns>``0.</returns> |
| | 56 | | protected virtual TVideoType ResolveVideo<TVideoType>(ItemResolveArgs args, bool parseName) |
| | 57 | | where TVideoType : Video, new() |
| | 58 | | { |
| 17 | 59 | | VideoFileInfo videoInfo = null; |
| 17 | 60 | | VideoType? videoType = null; |
| | 61 | |
|
| | 62 | | // If the path is a file check for a matching extensions |
| 17 | 63 | | if (args.IsDirectory) |
| | 64 | | { |
| | 65 | | // Loop through each child file/folder and see if we find a video |
| 0 | 66 | | foreach (var child in args.FileSystemChildren) |
| | 67 | | { |
| 0 | 68 | | var filename = child.Name; |
| 0 | 69 | | if (child.IsDirectory) |
| | 70 | | { |
| 0 | 71 | | if (IsDvdDirectory(child.FullName, filename, DirectoryService)) |
| | 72 | | { |
| 0 | 73 | | var videoTmp = new TVideoType |
| 0 | 74 | | { |
| 0 | 75 | | Path = args.Path, |
| 0 | 76 | | VideoType = VideoType.Dvd |
| 0 | 77 | | }; |
| 0 | 78 | | Set3DFormat(videoTmp); |
| 0 | 79 | | return videoTmp; |
| | 80 | | } |
| | 81 | |
|
| 0 | 82 | | if (IsBluRayDirectory(filename)) |
| | 83 | | { |
| 0 | 84 | | var videoTmp = new TVideoType |
| 0 | 85 | | { |
| 0 | 86 | | Path = args.Path, |
| 0 | 87 | | VideoType = VideoType.BluRay |
| 0 | 88 | | }; |
| 0 | 89 | | Set3DFormat(videoTmp); |
| 0 | 90 | | return videoTmp; |
| | 91 | | } |
| | 92 | | } |
| 0 | 93 | | else if (IsDvdFile(filename)) |
| | 94 | | { |
| 0 | 95 | | videoType = VideoType.Dvd; |
| | 96 | | } |
| | 97 | |
|
| 0 | 98 | | if (videoType is null) |
| | 99 | | { |
| | 100 | | continue; |
| | 101 | | } |
| | 102 | |
|
| 0 | 103 | | videoInfo = VideoResolver.ResolveDirectory(args.Path, NamingOptions, parseName); |
| 0 | 104 | | break; |
| | 105 | | } |
| | 106 | | } |
| | 107 | | else |
| | 108 | | { |
| 17 | 109 | | videoInfo = VideoResolver.Resolve(args.Path, false, NamingOptions, parseName); |
| | 110 | | } |
| | 111 | |
|
| 17 | 112 | | if (videoInfo is null || (!videoInfo.IsStub && !VideoResolver.IsVideoFile(args.Path, NamingOptions))) |
| | 113 | | { |
| 0 | 114 | | return null; |
| | 115 | | } |
| | 116 | |
|
| 17 | 117 | | var video = new TVideoType |
| 17 | 118 | | { |
| 17 | 119 | | Name = videoInfo.Name, |
| 17 | 120 | | Path = args.Path, |
| 17 | 121 | | ProductionYear = videoInfo.Year, |
| 17 | 122 | | ExtraType = videoInfo.ExtraType |
| 17 | 123 | | }; |
| | 124 | |
|
| 17 | 125 | | if (videoType.HasValue) |
| | 126 | | { |
| 0 | 127 | | video.VideoType = videoType.Value; |
| | 128 | | } |
| | 129 | | else |
| | 130 | | { |
| 17 | 131 | | SetVideoType(video, videoInfo); |
| | 132 | | } |
| | 133 | |
|
| 17 | 134 | | Set3DFormat(video, videoInfo); |
| | 135 | |
|
| 17 | 136 | | return video; |
| | 137 | | } |
| | 138 | |
|
| | 139 | | protected void SetVideoType(Video video, VideoFileInfo videoInfo) |
| | 140 | | { |
| 17 | 141 | | var extension = Path.GetExtension(video.Path.AsSpan()); |
| 17 | 142 | | video.VideoType = extension.Equals(".iso", StringComparison.OrdinalIgnoreCase) |
| 17 | 143 | | || extension.Equals(".img", StringComparison.OrdinalIgnoreCase) |
| 17 | 144 | | ? VideoType.Iso |
| 17 | 145 | | : VideoType.VideoFile; |
| | 146 | |
|
| 17 | 147 | | video.IsShortcut = extension.Equals(".strm", StringComparison.OrdinalIgnoreCase); |
| 17 | 148 | | video.IsPlaceHolder = videoInfo.IsStub; |
| | 149 | |
|
| 17 | 150 | | if (videoInfo.IsStub) |
| | 151 | | { |
| 0 | 152 | | if (string.Equals(videoInfo.StubType, "dvd", StringComparison.OrdinalIgnoreCase)) |
| | 153 | | { |
| 0 | 154 | | video.VideoType = VideoType.Dvd; |
| | 155 | | } |
| 0 | 156 | | else if (string.Equals(videoInfo.StubType, "bluray", StringComparison.OrdinalIgnoreCase)) |
| | 157 | | { |
| 0 | 158 | | video.VideoType = VideoType.BluRay; |
| | 159 | | } |
| | 160 | | } |
| | 161 | |
|
| 17 | 162 | | SetIsoType(video); |
| 17 | 163 | | } |
| | 164 | |
|
| | 165 | | protected void SetIsoType(Video video) |
| | 166 | | { |
| 17 | 167 | | if (video.VideoType == VideoType.Iso) |
| | 168 | | { |
| 0 | 169 | | if (video.Path.Contains("dvd", StringComparison.OrdinalIgnoreCase)) |
| | 170 | | { |
| 0 | 171 | | video.IsoType = IsoType.Dvd; |
| | 172 | | } |
| 0 | 173 | | else if (video.Path.Contains("bluray", StringComparison.OrdinalIgnoreCase)) |
| | 174 | | { |
| 0 | 175 | | video.IsoType = IsoType.BluRay; |
| | 176 | | } |
| | 177 | | else |
| | 178 | | { |
| | 179 | | try |
| | 180 | | { |
| | 181 | | // use disc-utils, both DVDs and BDs use UDF filesystem |
| 0 | 182 | | using var videoFileStream = File.Open(video.Path, FileMode.Open, FileAccess.Read, FileShare.Read |
| 0 | 183 | | using UdfReader udfReader = new UdfReader(videoFileStream); |
| 0 | 184 | | if (udfReader.DirectoryExists("VIDEO_TS")) |
| | 185 | | { |
| 0 | 186 | | video.IsoType = IsoType.Dvd; |
| | 187 | | } |
| 0 | 188 | | else if (udfReader.DirectoryExists("BDMV")) |
| | 189 | | { |
| 0 | 190 | | video.IsoType = IsoType.BluRay; |
| | 191 | | } |
| 0 | 192 | | } |
| 0 | 193 | | catch (Exception ex) |
| | 194 | | { |
| 0 | 195 | | _logger.LogError(ex, "Error opening UDF/ISO image: {Value}", video.Path ?? video.Name); |
| 0 | 196 | | } |
| | 197 | | } |
| | 198 | | } |
| 17 | 199 | | } |
| | 200 | |
|
| | 201 | | protected void Set3DFormat(Video video, bool is3D, string format3D) |
| | 202 | | { |
| 17 | 203 | | if (is3D) |
| | 204 | | { |
| 0 | 205 | | if (string.Equals(format3D, "fsbs", StringComparison.OrdinalIgnoreCase)) |
| | 206 | | { |
| 0 | 207 | | video.Video3DFormat = Video3DFormat.FullSideBySide; |
| | 208 | | } |
| 0 | 209 | | else if (string.Equals(format3D, "ftab", StringComparison.OrdinalIgnoreCase)) |
| | 210 | | { |
| 0 | 211 | | video.Video3DFormat = Video3DFormat.FullTopAndBottom; |
| | 212 | | } |
| 0 | 213 | | else if (string.Equals(format3D, "hsbs", StringComparison.OrdinalIgnoreCase)) |
| | 214 | | { |
| 0 | 215 | | video.Video3DFormat = Video3DFormat.HalfSideBySide; |
| | 216 | | } |
| 0 | 217 | | else if (string.Equals(format3D, "htab", StringComparison.OrdinalIgnoreCase)) |
| | 218 | | { |
| 0 | 219 | | video.Video3DFormat = Video3DFormat.HalfTopAndBottom; |
| | 220 | | } |
| 0 | 221 | | else if (string.Equals(format3D, "sbs", StringComparison.OrdinalIgnoreCase)) |
| | 222 | | { |
| 0 | 223 | | video.Video3DFormat = Video3DFormat.HalfSideBySide; |
| | 224 | | } |
| 0 | 225 | | else if (string.Equals(format3D, "sbs3d", StringComparison.OrdinalIgnoreCase)) |
| | 226 | | { |
| 0 | 227 | | video.Video3DFormat = Video3DFormat.HalfSideBySide; |
| | 228 | | } |
| 0 | 229 | | else if (string.Equals(format3D, "tab", StringComparison.OrdinalIgnoreCase)) |
| | 230 | | { |
| 0 | 231 | | video.Video3DFormat = Video3DFormat.HalfTopAndBottom; |
| | 232 | | } |
| 0 | 233 | | else if (string.Equals(format3D, "mvc", StringComparison.OrdinalIgnoreCase)) |
| | 234 | | { |
| 0 | 235 | | video.Video3DFormat = Video3DFormat.MVC; |
| | 236 | | } |
| | 237 | | } |
| 17 | 238 | | } |
| | 239 | |
|
| | 240 | | protected void Set3DFormat(Video video, VideoFileInfo videoInfo) |
| | 241 | | { |
| 17 | 242 | | Set3DFormat(video, videoInfo.Is3D, videoInfo.Format3D); |
| 17 | 243 | | } |
| | 244 | |
|
| | 245 | | protected void Set3DFormat(Video video) |
| | 246 | | { |
| 0 | 247 | | var result = Format3DParser.Parse(video.Path, NamingOptions); |
| | 248 | |
|
| 0 | 249 | | Set3DFormat(video, result.Is3D, result.Format3D); |
| 0 | 250 | | } |
| | 251 | |
|
| | 252 | | /// <summary> |
| | 253 | | /// Determines whether [is DVD directory] [the specified directory name]. |
| | 254 | | /// </summary> |
| | 255 | | /// <param name="fullPath">The full path of the directory.</param> |
| | 256 | | /// <param name="directoryName">The name of the directory.</param> |
| | 257 | | /// <param name="directoryService">The directory service.</param> |
| | 258 | | /// <returns><c>true</c> if the provided directory is a DVD directory, <c>false</c> otherwise.</returns> |
| | 259 | | protected bool IsDvdDirectory(string fullPath, string directoryName, IDirectoryService directoryService) |
| | 260 | | { |
| 0 | 261 | | if (!string.Equals(directoryName, "video_ts", StringComparison.OrdinalIgnoreCase)) |
| | 262 | | { |
| 0 | 263 | | return false; |
| | 264 | | } |
| | 265 | |
|
| 0 | 266 | | return directoryService.GetFilePaths(fullPath).Any(i => Path.GetExtension(i.AsSpan()).Equals(".vob", StringC |
| | 267 | | } |
| | 268 | |
|
| | 269 | | /// <summary> |
| | 270 | | /// Determines whether [is DVD file] [the specified name]. |
| | 271 | | /// </summary> |
| | 272 | | /// <param name="name">The name.</param> |
| | 273 | | /// <returns><c>true</c> if [is DVD file] [the specified name]; otherwise, <c>false</c>.</returns> |
| | 274 | | protected bool IsDvdFile(string name) |
| | 275 | | { |
| 0 | 276 | | return string.Equals(name, "video_ts.ifo", StringComparison.OrdinalIgnoreCase); |
| | 277 | | } |
| | 278 | |
|
| | 279 | | /// <summary> |
| | 280 | | /// Determines whether [is bluray directory] [the specified directory name]. |
| | 281 | | /// </summary> |
| | 282 | | /// <param name="directoryName">The directory name.</param> |
| | 283 | | /// <returns>Whether the directory is a bluray directory.</returns> |
| | 284 | | protected bool IsBluRayDirectory(string directoryName) |
| | 285 | | { |
| 0 | 286 | | return string.Equals(directoryName, "bdmv", StringComparison.OrdinalIgnoreCase); |
| | 287 | | } |
| | 288 | | } |
| | 289 | | } |