| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Globalization; |
| | 4 | | using System.IO; |
| | 5 | | using System.Linq; |
| | 6 | | using Jellyfin.Extensions; |
| | 7 | | using MediaBrowser.Controller.Entities; |
| | 8 | | using MediaBrowser.Controller.Entities.Audio; |
| | 9 | | using MediaBrowser.Controller.Entities.Movies; |
| | 10 | | using MediaBrowser.Controller.Entities.TV; |
| | 11 | | using MediaBrowser.Controller.Providers; |
| | 12 | | using MediaBrowser.Model.Entities; |
| | 13 | | using MediaBrowser.Model.IO; |
| | 14 | |
|
| | 15 | | namespace MediaBrowser.LocalMetadata.Images |
| | 16 | | { |
| | 17 | | /// <summary> |
| | 18 | | /// Local image provider. |
| | 19 | | /// </summary> |
| | 20 | | public class LocalImageProvider : ILocalImageProvider, IHasOrder |
| | 21 | | { |
| 1 | 22 | | private static readonly string[] _commonImageFileNames = |
| 1 | 23 | | { |
| 1 | 24 | | "poster", |
| 1 | 25 | | "folder", |
| 1 | 26 | | "cover", |
| 1 | 27 | | "default" |
| 1 | 28 | | }; |
| | 29 | |
|
| 1 | 30 | | private static readonly string[] _musicImageFileNames = |
| 1 | 31 | | { |
| 1 | 32 | | "folder", |
| 1 | 33 | | "poster", |
| 1 | 34 | | "cover", |
| 1 | 35 | | "jacket", |
| 1 | 36 | | "default" |
| 1 | 37 | | }; |
| | 38 | |
|
| 1 | 39 | | private static readonly string[] _personImageFileNames = |
| 1 | 40 | | { |
| 1 | 41 | | "folder", |
| 1 | 42 | | "poster" |
| 1 | 43 | | }; |
| | 44 | |
|
| 1 | 45 | | private static readonly string[] _seriesImageFileNames = |
| 1 | 46 | | { |
| 1 | 47 | | "poster", |
| 1 | 48 | | "folder", |
| 1 | 49 | | "cover", |
| 1 | 50 | | "default", |
| 1 | 51 | | "show" |
| 1 | 52 | | }; |
| | 53 | |
|
| 1 | 54 | | private static readonly string[] _videoImageFileNames = |
| 1 | 55 | | { |
| 1 | 56 | | "poster", |
| 1 | 57 | | "folder", |
| 1 | 58 | | "cover", |
| 1 | 59 | | "default", |
| 1 | 60 | | "movie" |
| 1 | 61 | | }; |
| | 62 | |
|
| | 63 | | private readonly IFileSystem _fileSystem; |
| | 64 | |
|
| | 65 | | /// <summary> |
| | 66 | | /// Initializes a new instance of the <see cref="LocalImageProvider"/> class. |
| | 67 | | /// </summary> |
| | 68 | | /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param> |
| | 69 | | public LocalImageProvider(IFileSystem fileSystem) |
| | 70 | | { |
| 37 | 71 | | _fileSystem = fileSystem; |
| 37 | 72 | | } |
| | 73 | |
|
| | 74 | | /// <inheritdoc /> |
| 53 | 75 | | public string Name => "Local Images"; |
| | 76 | |
|
| | 77 | | /// <inheritdoc /> |
| 53 | 78 | | public int Order => 0; |
| | 79 | |
|
| | 80 | | /// <inheritdoc /> |
| | 81 | | public bool Supports(BaseItem item) |
| | 82 | | { |
| 53 | 83 | | if (item.SupportsLocalMetadata) |
| | 84 | | { |
| | 85 | | // Episode has its own provider |
| 53 | 86 | | if (item is Episode || item is Audio || item is Photo) |
| | 87 | | { |
| 0 | 88 | | return false; |
| | 89 | | } |
| | 90 | |
|
| 53 | 91 | | return true; |
| | 92 | | } |
| | 93 | |
|
| 0 | 94 | | if (item.LocationType == LocationType.Virtual) |
| | 95 | | { |
| 0 | 96 | | var season = item as Season; |
| 0 | 97 | | var series = season?.Series; |
| 0 | 98 | | if (series is not null && series.IsFileProtocol) |
| | 99 | | { |
| 0 | 100 | | return true; |
| | 101 | | } |
| | 102 | | } |
| | 103 | |
|
| 0 | 104 | | return false; |
| | 105 | | } |
| | 106 | |
|
| | 107 | | private static IEnumerable<FileSystemMetadata> GetFiles(BaseItem item, bool includeDirectories, IDirectoryServic |
| | 108 | | { |
| 53 | 109 | | if (!item.IsFileProtocol) |
| | 110 | | { |
| 0 | 111 | | return Enumerable.Empty<FileSystemMetadata>(); |
| | 112 | | } |
| | 113 | |
|
| 53 | 114 | | var path = item.ContainingFolderPath; |
| | 115 | |
|
| | 116 | | // Exit if the cache dir does not exist, alternative solution is to create it, but that's a lot of empty dir |
| 53 | 117 | | if (!Directory.Exists(path)) |
| | 118 | | { |
| 0 | 119 | | return Enumerable.Empty<FileSystemMetadata>(); |
| | 120 | | } |
| | 121 | |
|
| 53 | 122 | | return directoryService.GetFileSystemEntries(path) |
| 53 | 123 | | .Where(i => |
| 53 | 124 | | (includeDirectories && i.IsDirectory) |
| 53 | 125 | | || BaseItem.SupportedImageExtensions.Contains(i.Extension, StringComparison.OrdinalIgnoreCase)) |
| 53 | 126 | | .OrderBy(i => Array.IndexOf(BaseItem.SupportedImageExtensions, i.Extension ?? string.Empty)); |
| | 127 | | } |
| | 128 | |
|
| | 129 | | /// <inheritdoc /> |
| | 130 | | public IEnumerable<LocalImageInfo> GetImages(BaseItem item, IDirectoryService directoryService) |
| | 131 | | { |
| 53 | 132 | | var files = GetFiles(item, true, directoryService).ToList(); |
| | 133 | |
|
| 53 | 134 | | var list = new List<LocalImageInfo>(); |
| | 135 | |
|
| 53 | 136 | | PopulateImages(item, list, files, true, directoryService); |
| | 137 | |
|
| 53 | 138 | | return list; |
| | 139 | | } |
| | 140 | |
|
| | 141 | | /// <summary> |
| | 142 | | /// Get images for item. |
| | 143 | | /// </summary> |
| | 144 | | /// <param name="item">The item.</param> |
| | 145 | | /// <param name="path">The images path.</param> |
| | 146 | | /// <param name="directoryService">Instance of the <see cref="IDirectoryService"/> interface.</param> |
| | 147 | | /// <returns>The local image info.</returns> |
| | 148 | | public IEnumerable<LocalImageInfo> GetImages(BaseItem item, string path, IDirectoryService directoryService) |
| | 149 | | { |
| 0 | 150 | | return GetImages(item, new[] { path }, directoryService); |
| | 151 | | } |
| | 152 | |
|
| | 153 | | /// <summary> |
| | 154 | | /// Get images for item from multiple paths. |
| | 155 | | /// </summary> |
| | 156 | | /// <param name="item">The item.</param> |
| | 157 | | /// <param name="paths">The image paths.</param> |
| | 158 | | /// <param name="directoryService">Instance of the <see cref="IDirectoryService"/> interface.</param> |
| | 159 | | /// <returns>The local image info.</returns> |
| | 160 | | public IEnumerable<LocalImageInfo> GetImages(BaseItem item, IEnumerable<string> paths, IDirectoryService directo |
| | 161 | | { |
| 16 | 162 | | IEnumerable<FileSystemMetadata> files = paths.SelectMany(i => _fileSystem.GetFiles(i, BaseItem.SupportedImag |
| | 163 | |
|
| 16 | 164 | | files = files |
| 16 | 165 | | .OrderBy(i => Array.IndexOf(BaseItem.SupportedImageExtensions, i.Extension ?? string.Empty)); |
| | 166 | |
|
| 16 | 167 | | var list = new List<LocalImageInfo>(); |
| | 168 | |
|
| 16 | 169 | | PopulateImages(item, list, files.ToList(), false, directoryService); |
| | 170 | |
|
| 16 | 171 | | return list; |
| | 172 | | } |
| | 173 | |
|
| | 174 | | private void PopulateImages(BaseItem item, List<LocalImageInfo> images, List<FileSystemMetadata> files, bool sup |
| | 175 | | { |
| 69 | 176 | | if (supportParentSeriesFiles) |
| | 177 | | { |
| 53 | 178 | | if (item is Season season) |
| | 179 | | { |
| 0 | 180 | | PopulateSeasonImagesFromSeriesFolder(season, images, directoryService); |
| | 181 | | } |
| | 182 | | } |
| | 183 | |
|
| 69 | 184 | | var imagePrefix = item.FileNameWithoutExtension + "-"; |
| 69 | 185 | | var isInMixedFolder = item.IsInMixedFolder; |
| | 186 | |
|
| 69 | 187 | | PopulatePrimaryImages(item, images, files, imagePrefix, isInMixedFolder); |
| | 188 | |
|
| 69 | 189 | | var added = false; |
| 69 | 190 | | var isEpisode = item is Episode; |
| 69 | 191 | | var isSong = item.GetType() == typeof(Audio); |
| 69 | 192 | | var isPerson = item is Person; |
| | 193 | |
|
| | 194 | | // Logo |
| 69 | 195 | | if (!isEpisode && !isSong && !isPerson) |
| | 196 | | { |
| 69 | 197 | | added = AddImage(files, images, "logo", imagePrefix, isInMixedFolder, ImageType.Logo); |
| 69 | 198 | | if (!added) |
| | 199 | | { |
| 69 | 200 | | AddImage(files, images, "clearlogo", imagePrefix, isInMixedFolder, ImageType.Logo); |
| | 201 | | } |
| | 202 | | } |
| | 203 | |
|
| | 204 | | // Art |
| 69 | 205 | | if (!isEpisode && !isSong && !isPerson) |
| | 206 | | { |
| 69 | 207 | | AddImage(files, images, "clearart", imagePrefix, isInMixedFolder, ImageType.Art); |
| | 208 | | } |
| | 209 | |
|
| | 210 | | // For music albums, prefer cdart before disc |
| 69 | 211 | | if (item is MusicAlbum) |
| | 212 | | { |
| 0 | 213 | | added = AddImage(files, images, "cdart", imagePrefix, isInMixedFolder, ImageType.Disc); |
| | 214 | |
|
| 0 | 215 | | if (!added) |
| | 216 | | { |
| 0 | 217 | | AddImage(files, images, "disc", imagePrefix, isInMixedFolder, ImageType.Disc); |
| | 218 | | } |
| | 219 | | } |
| 69 | 220 | | else if (item is Video || item is BoxSet) |
| | 221 | | { |
| 0 | 222 | | added = AddImage(files, images, "disc", imagePrefix, isInMixedFolder, ImageType.Disc); |
| | 223 | |
|
| 0 | 224 | | if (!added) |
| | 225 | | { |
| 0 | 226 | | added = AddImage(files, images, "cdart", imagePrefix, isInMixedFolder, ImageType.Disc); |
| | 227 | | } |
| | 228 | |
|
| 0 | 229 | | if (!added) |
| | 230 | | { |
| 0 | 231 | | AddImage(files, images, "discart", imagePrefix, isInMixedFolder, ImageType.Disc); |
| | 232 | | } |
| | 233 | | } |
| | 234 | |
|
| | 235 | | // Banner |
| 69 | 236 | | if (!isEpisode && !isSong && !isPerson) |
| | 237 | | { |
| 69 | 238 | | AddImage(files, images, "banner", imagePrefix, isInMixedFolder, ImageType.Banner); |
| | 239 | | } |
| | 240 | |
|
| | 241 | | // Thumb |
| 69 | 242 | | if (!isEpisode && !isSong && !isPerson) |
| | 243 | | { |
| 69 | 244 | | added = AddImage(files, images, "landscape", imagePrefix, isInMixedFolder, ImageType.Thumb); |
| 69 | 245 | | if (!added) |
| | 246 | | { |
| 69 | 247 | | AddImage(files, images, "thumb", imagePrefix, isInMixedFolder, ImageType.Thumb); |
| | 248 | | } |
| | 249 | | } |
| | 250 | |
|
| 69 | 251 | | if (!isEpisode && !isSong && !isPerson) |
| | 252 | | { |
| 69 | 253 | | PopulateBackdrops(item, images, files, imagePrefix, isInMixedFolder); |
| | 254 | | } |
| 69 | 255 | | } |
| | 256 | |
|
| | 257 | | private void PopulatePrimaryImages(BaseItem item, List<LocalImageInfo> images, List<FileSystemMetadata> files, s |
| | 258 | | { |
| | 259 | | string[] imageFileNames; |
| | 260 | |
|
| 69 | 261 | | if (item is MusicAlbum || item is MusicArtist || item is PhotoAlbum) |
| | 262 | | { |
| | 263 | | // these prefer folder |
| 0 | 264 | | imageFileNames = _musicImageFileNames; |
| | 265 | | } |
| 69 | 266 | | else if (item is Person) |
| | 267 | | { |
| | 268 | | // these prefer folder |
| 0 | 269 | | imageFileNames = _personImageFileNames; |
| | 270 | | } |
| 69 | 271 | | else if (item is Series) |
| | 272 | | { |
| 0 | 273 | | imageFileNames = _seriesImageFileNames; |
| | 274 | | } |
| 69 | 275 | | else if (item is Video && item is not Episode) |
| | 276 | | { |
| 0 | 277 | | imageFileNames = _videoImageFileNames; |
| | 278 | | } |
| | 279 | | else |
| | 280 | | { |
| 69 | 281 | | imageFileNames = _commonImageFileNames; |
| | 282 | | } |
| | 283 | |
|
| 69 | 284 | | var fileNameWithoutExtension = item.FileNameWithoutExtension; |
| 69 | 285 | | if (!string.IsNullOrEmpty(fileNameWithoutExtension)) |
| | 286 | | { |
| 69 | 287 | | if (AddImage(files, images, fileNameWithoutExtension, ImageType.Primary)) |
| | 288 | | { |
| 0 | 289 | | return; |
| | 290 | | } |
| | 291 | | } |
| | 292 | |
|
| 690 | 293 | | foreach (var name in imageFileNames) |
| | 294 | | { |
| 276 | 295 | | if (AddImage(files, images, name, ImageType.Primary, imagePrefix)) |
| | 296 | | { |
| 0 | 297 | | return; |
| | 298 | | } |
| | 299 | | } |
| | 300 | |
|
| 69 | 301 | | if (!isInMixedFolder) |
| | 302 | | { |
| 690 | 303 | | foreach (var name in imageFileNames) |
| | 304 | | { |
| 276 | 305 | | if (AddImage(files, images, name, ImageType.Primary)) |
| | 306 | | { |
| 0 | 307 | | return; |
| | 308 | | } |
| | 309 | | } |
| | 310 | | } |
| 69 | 311 | | } |
| | 312 | |
|
| | 313 | | private void PopulateBackdrops(BaseItem item, List<LocalImageInfo> images, List<FileSystemMetadata> files, strin |
| | 314 | | { |
| 69 | 315 | | if (!string.IsNullOrEmpty(item.Path)) |
| | 316 | | { |
| 69 | 317 | | var name = item.FileNameWithoutExtension; |
| | 318 | |
|
| 69 | 319 | | if (!string.IsNullOrEmpty(name)) |
| | 320 | | { |
| 69 | 321 | | AddImage(files, images, name + "-fanart", ImageType.Backdrop, imagePrefix); |
| | 322 | |
|
| | 323 | | // Support without the prefix if it's in its own folder |
| 69 | 324 | | if (!isInMixedFolder) |
| | 325 | | { |
| 69 | 326 | | AddImage(files, images, name + "-fanart", ImageType.Backdrop); |
| | 327 | | } |
| | 328 | | } |
| | 329 | | } |
| | 330 | |
|
| 69 | 331 | | PopulateBackdrops(images, files, imagePrefix, "fanart", "fanart-", isInMixedFolder, ImageType.Backdrop); |
| 69 | 332 | | PopulateBackdrops(images, files, imagePrefix, "background", "background-", isInMixedFolder, ImageType.Backdr |
| 69 | 333 | | PopulateBackdrops(images, files, imagePrefix, "art", "art-", isInMixedFolder, ImageType.Backdrop); |
| | 334 | |
|
| 69 | 335 | | var extraFanartFolder = files |
| 69 | 336 | | .FirstOrDefault(i => string.Equals(i.Name, "extrafanart", StringComparison.OrdinalIgnoreCase)); |
| | 337 | |
|
| 69 | 338 | | if (extraFanartFolder is not null) |
| | 339 | | { |
| 0 | 340 | | PopulateBackdropsFromExtraFanart(extraFanartFolder.FullName, images); |
| | 341 | | } |
| | 342 | |
|
| 69 | 343 | | PopulateBackdrops(images, files, imagePrefix, "backdrop", "backdrop", isInMixedFolder, ImageType.Backdrop); |
| 69 | 344 | | } |
| | 345 | |
|
| | 346 | | private void PopulateBackdropsFromExtraFanart(string path, List<LocalImageInfo> images) |
| | 347 | | { |
| 0 | 348 | | var imageFiles = _fileSystem.GetFiles(path, BaseItem.SupportedImageExtensions, false, false); |
| | 349 | |
|
| 0 | 350 | | images.AddRange(imageFiles.Where(i => i.Length > 0).Select(i => new LocalImageInfo |
| 0 | 351 | | { |
| 0 | 352 | | FileInfo = i, |
| 0 | 353 | | Type = ImageType.Backdrop |
| 0 | 354 | | })); |
| 0 | 355 | | } |
| | 356 | |
|
| | 357 | | private void PopulateBackdrops(List<LocalImageInfo> images, List<FileSystemMetadata> files, string imagePrefix, |
| | 358 | | { |
| 276 | 359 | | AddImage(files, images, imagePrefix + firstFileName, type); |
| | 360 | |
|
| 276 | 361 | | var unfound = 0; |
| 1656 | 362 | | for (var i = 1; i <= 20; i++) |
| | 363 | | { |
| | 364 | | // Screenshot Image |
| 828 | 365 | | var found = AddImage(files, images, imagePrefix + subsequentFileNamePrefix + i, type); |
| | 366 | |
|
| 828 | 367 | | if (!found) |
| | 368 | | { |
| 828 | 369 | | unfound++; |
| | 370 | |
|
| 828 | 371 | | if (unfound >= 3) |
| | 372 | | { |
| | 373 | | break; |
| | 374 | | } |
| | 375 | | } |
| | 376 | | } |
| | 377 | |
|
| | 378 | | // Support without the prefix |
| 276 | 379 | | if (!isInMixedFolder) |
| | 380 | | { |
| 276 | 381 | | AddImage(files, images, firstFileName, type); |
| | 382 | |
|
| 276 | 383 | | unfound = 0; |
| 1656 | 384 | | for (var i = 1; i <= 20; i++) |
| | 385 | | { |
| | 386 | | // Screenshot Image |
| 828 | 387 | | var found = AddImage(files, images, subsequentFileNamePrefix + i, type); |
| | 388 | |
|
| 828 | 389 | | if (!found) |
| | 390 | | { |
| 828 | 391 | | unfound++; |
| | 392 | |
|
| 828 | 393 | | if (unfound >= 3) |
| | 394 | | { |
| | 395 | | break; |
| | 396 | | } |
| | 397 | | } |
| | 398 | | } |
| | 399 | | } |
| 276 | 400 | | } |
| | 401 | |
|
| | 402 | | private void PopulateSeasonImagesFromSeriesFolder(Season season, List<LocalImageInfo> images, IDirectoryService |
| | 403 | | { |
| 0 | 404 | | var seasonNumber = season.IndexNumber; |
| | 405 | |
|
| 0 | 406 | | var series = season.Series; |
| 0 | 407 | | if (!seasonNumber.HasValue || !series.IsFileProtocol) |
| | 408 | | { |
| 0 | 409 | | return; |
| | 410 | | } |
| | 411 | |
|
| 0 | 412 | | var seriesFiles = GetFiles(series, false, directoryService).ToList(); |
| | 413 | |
|
| | 414 | | // Try using the season name |
| 0 | 415 | | var prefix = season.Name.Replace(" ", string.Empty, StringComparison.Ordinal).ToLowerInvariant(); |
| | 416 | |
|
| 0 | 417 | | var filenamePrefixes = new List<string> { prefix }; |
| | 418 | |
|
| 0 | 419 | | var seasonMarker = seasonNumber.Value == 0 |
| 0 | 420 | | ? "-specials" |
| 0 | 421 | | : seasonNumber.Value.ToString("00", CultureInfo.InvariantCulture); |
| | 422 | |
|
| | 423 | | // Get this one directly from the file system since we have to go up a level |
| 0 | 424 | | if (!string.Equals(prefix, seasonMarker, StringComparison.OrdinalIgnoreCase)) |
| | 425 | | { |
| 0 | 426 | | filenamePrefixes.Add("season" + seasonMarker); |
| | 427 | | } |
| | 428 | |
|
| 0 | 429 | | foreach (var filename in filenamePrefixes) |
| | 430 | | { |
| 0 | 431 | | AddImage(seriesFiles, images, filename + "-poster", ImageType.Primary); |
| 0 | 432 | | AddImage(seriesFiles, images, filename + "-fanart", ImageType.Backdrop); |
| 0 | 433 | | AddImage(seriesFiles, images, filename + "-banner", ImageType.Banner); |
| 0 | 434 | | AddImage(seriesFiles, images, filename + "-landscape", ImageType.Thumb); |
| | 435 | | } |
| 0 | 436 | | } |
| | 437 | |
|
| | 438 | | private bool AddImage(List<FileSystemMetadata> files, List<LocalImageInfo> images, string name, string imagePref |
| | 439 | | { |
| 414 | 440 | | var added = AddImage(files, images, name, type, imagePrefix); |
| | 441 | |
|
| 414 | 442 | | if (!isInMixedFolder) |
| | 443 | | { |
| 414 | 444 | | if (AddImage(files, images, name, type)) |
| | 445 | | { |
| 0 | 446 | | added = true; |
| | 447 | | } |
| | 448 | | } |
| | 449 | |
|
| 414 | 450 | | return added; |
| | 451 | | } |
| | 452 | |
|
| | 453 | | private static bool AddImage(IReadOnlyList<FileSystemMetadata> files, List<LocalImageInfo> images, string name, |
| | 454 | | { |
| 3795 | 455 | | var image = GetImage(files, name, prefix); |
| | 456 | |
|
| 3795 | 457 | | if (image is null) |
| | 458 | | { |
| 3795 | 459 | | return false; |
| | 460 | | } |
| | 461 | |
|
| 0 | 462 | | images.Add(new LocalImageInfo |
| 0 | 463 | | { |
| 0 | 464 | | FileInfo = image, |
| 0 | 465 | | Type = type |
| 0 | 466 | | }); |
| | 467 | |
|
| 0 | 468 | | return true; |
| | 469 | | } |
| | 470 | |
|
| | 471 | | private static FileSystemMetadata? GetImage(IReadOnlyList<FileSystemMetadata> files, string name, string? prefix |
| | 472 | | { |
| 3795 | 473 | | var fileNameLength = name.Length + (prefix?.Length ?? 0); |
| 10890 | 474 | | for (var i = 0; i < files.Count; i++) |
| | 475 | | { |
| 1650 | 476 | | var file = files[i]; |
| 1650 | 477 | | if (file.IsDirectory || file.Length <= 0) |
| | 478 | | { |
| | 479 | | continue; |
| | 480 | | } |
| | 481 | |
|
| 0 | 482 | | var fileName = Path.GetFileNameWithoutExtension(file.FullName.AsSpan()); |
| 0 | 483 | | if (fileName.Length == fileNameLength |
| 0 | 484 | | && fileName.StartsWith(prefix, StringComparison.OrdinalIgnoreCase) |
| 0 | 485 | | && fileName.EndsWith(name, StringComparison.OrdinalIgnoreCase)) |
| | 486 | | { |
| 0 | 487 | | return file; |
| | 488 | | } |
| | 489 | | } |
| | 490 | |
|
| 3795 | 491 | | return null; |
| | 492 | | } |
| | 493 | | } |
| | 494 | | } |