| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Globalization; |
| | 8 | | using System.IO; |
| | 9 | | using System.Linq; |
| | 10 | | using System.Threading; |
| | 11 | | using System.Threading.Tasks; |
| | 12 | | using Jellyfin.Extensions; |
| | 13 | | using MediaBrowser.Common.Configuration; |
| | 14 | | using MediaBrowser.Controller.Configuration; |
| | 15 | | using MediaBrowser.Controller.Entities; |
| | 16 | | using MediaBrowser.Controller.Entities.Audio; |
| | 17 | | using MediaBrowser.Controller.IO; |
| | 18 | | using MediaBrowser.Controller.Library; |
| | 19 | | using MediaBrowser.Model.Configuration; |
| | 20 | | using MediaBrowser.Model.Entities; |
| | 21 | | using MediaBrowser.Model.IO; |
| | 22 | | using MediaBrowser.Model.Net; |
| | 23 | | using Microsoft.Extensions.Logging; |
| | 24 | | using Episode = MediaBrowser.Controller.Entities.TV.Episode; |
| | 25 | | using MusicAlbum = MediaBrowser.Controller.Entities.Audio.MusicAlbum; |
| | 26 | | using Person = MediaBrowser.Controller.Entities.Person; |
| | 27 | | using Season = MediaBrowser.Controller.Entities.TV.Season; |
| | 28 | |
|
| | 29 | | namespace MediaBrowser.Providers.Manager |
| | 30 | | { |
| | 31 | | /// <summary> |
| | 32 | | /// Class ImageSaver. |
| | 33 | | /// </summary> |
| | 34 | | public class ImageSaver |
| | 35 | | { |
| | 36 | | /// <summary> |
| | 37 | | /// The _config. |
| | 38 | | /// </summary> |
| | 39 | | private readonly IServerConfigurationManager _config; |
| | 40 | |
|
| | 41 | | /// <summary> |
| | 42 | | /// The _directory watchers. |
| | 43 | | /// </summary> |
| | 44 | | private readonly ILibraryMonitor _libraryMonitor; |
| | 45 | | private readonly IFileSystem _fileSystem; |
| | 46 | | private readonly ILogger _logger; |
| | 47 | |
|
| | 48 | | /// <summary> |
| | 49 | | /// Initializes a new instance of the <see cref="ImageSaver" /> class. |
| | 50 | | /// </summary> |
| | 51 | | /// <param name="config">The config.</param> |
| | 52 | | /// <param name="libraryMonitor">The directory watchers.</param> |
| | 53 | | /// <param name="fileSystem">The file system.</param> |
| | 54 | | /// <param name="logger">The logger.</param> |
| | 55 | | public ImageSaver(IServerConfigurationManager config, ILibraryMonitor libraryMonitor, IFileSystem fileSystem, IL |
| | 56 | | { |
| 0 | 57 | | _config = config; |
| 0 | 58 | | _libraryMonitor = libraryMonitor; |
| 0 | 59 | | _fileSystem = fileSystem; |
| 0 | 60 | | _logger = logger; |
| 0 | 61 | | } |
| | 62 | |
|
| | 63 | | private bool EnableExtraThumbsDuplication |
| | 64 | | { |
| | 65 | | get |
| | 66 | | { |
| 0 | 67 | | var config = _config.GetConfiguration<XbmcMetadataOptions>("xbmcmetadata"); |
| | 68 | |
|
| 0 | 69 | | return config.EnableExtraThumbsDuplication; |
| | 70 | | } |
| | 71 | | } |
| | 72 | |
|
| | 73 | | /// <summary> |
| | 74 | | /// Saves the image. |
| | 75 | | /// </summary> |
| | 76 | | /// <param name="item">The item.</param> |
| | 77 | | /// <param name="source">The source.</param> |
| | 78 | | /// <param name="mimeType">Type of the MIME.</param> |
| | 79 | | /// <param name="type">The type.</param> |
| | 80 | | /// <param name="imageIndex">Index of the image.</param> |
| | 81 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 82 | | /// <returns>Task.</returns> |
| | 83 | | /// <exception cref="ArgumentNullException">mimeType.</exception> |
| | 84 | | public Task SaveImage(BaseItem item, Stream source, string mimeType, ImageType type, int? imageIndex, Cancellati |
| | 85 | | { |
| 0 | 86 | | return SaveImage(item, source, mimeType, type, imageIndex, null, cancellationToken); |
| | 87 | | } |
| | 88 | |
|
| | 89 | | public async Task SaveImage(BaseItem item, Stream source, string mimeType, ImageType type, int? imageIndex, bool |
| | 90 | | { |
| | 91 | | ArgumentException.ThrowIfNullOrEmpty(mimeType); |
| | 92 | |
|
| | 93 | | var saveLocally = item.SupportsLocalMetadata && item.IsSaveLocalMetadataEnabled() && !item.ExtraType.HasValu |
| | 94 | |
|
| | 95 | | if (type != ImageType.Primary && item is Episode) |
| | 96 | | { |
| | 97 | | saveLocally = false; |
| | 98 | | } |
| | 99 | |
|
| | 100 | | if (!item.IsFileProtocol) |
| | 101 | | { |
| | 102 | | saveLocally = false; |
| | 103 | |
|
| | 104 | | // If season is virtual under a physical series, save locally |
| | 105 | | if (item is Season season) |
| | 106 | | { |
| | 107 | | var series = season.Series; |
| | 108 | |
|
| | 109 | | if (series is not null && series.SupportsLocalMetadata && series.IsSaveLocalMetadataEnabled()) |
| | 110 | | { |
| | 111 | | saveLocally = true; |
| | 112 | | } |
| | 113 | | } |
| | 114 | | } |
| | 115 | |
|
| | 116 | | if (saveLocallyWithMedia.HasValue && !saveLocallyWithMedia.Value) |
| | 117 | | { |
| | 118 | | saveLocally = saveLocallyWithMedia.Value; |
| | 119 | | } |
| | 120 | |
|
| | 121 | | if (!imageIndex.HasValue && item.AllowsMultipleImages(type)) |
| | 122 | | { |
| | 123 | | imageIndex = item.GetImages(type).Count(); |
| | 124 | | } |
| | 125 | |
|
| | 126 | | var index = imageIndex ?? 0; |
| | 127 | |
|
| | 128 | | var paths = GetSavePaths(item, type, imageIndex, mimeType, saveLocally); |
| | 129 | |
|
| | 130 | | string[] retryPaths = []; |
| | 131 | | if (saveLocally) |
| | 132 | | { |
| | 133 | | retryPaths = GetSavePaths(item, type, imageIndex, mimeType, false); |
| | 134 | | } |
| | 135 | |
|
| | 136 | | // If there are more than one output paths, the stream will need to be seekable |
| | 137 | | if (paths.Length > 1 && !source.CanSeek) |
| | 138 | | { |
| | 139 | | var memoryStream = new MemoryStream(); |
| | 140 | | await using (source.ConfigureAwait(false)) |
| | 141 | | { |
| | 142 | | await source.CopyToAsync(memoryStream, cancellationToken).ConfigureAwait(false); |
| | 143 | | } |
| | 144 | |
|
| | 145 | | source = memoryStream; |
| | 146 | | } |
| | 147 | |
|
| | 148 | | var currentImage = GetCurrentImage(item, type, index); |
| | 149 | | var currentImageIsLocalFile = currentImage is not null && currentImage.IsLocalFile; |
| | 150 | | var currentImagePath = currentImage?.Path; |
| | 151 | |
|
| | 152 | | var savedPaths = new List<string>(); |
| | 153 | |
|
| | 154 | | await using (source.ConfigureAwait(false)) |
| | 155 | | { |
| | 156 | | for (int i = 0; i < paths.Length; i++) |
| | 157 | | { |
| | 158 | | if (i != 0) |
| | 159 | | { |
| | 160 | | source.Position = 0; |
| | 161 | | } |
| | 162 | |
|
| | 163 | | string retryPath = null; |
| | 164 | | if (paths.Length == retryPaths.Length) |
| | 165 | | { |
| | 166 | | retryPath = retryPaths[i]; |
| | 167 | | } |
| | 168 | |
|
| | 169 | | var savedPath = await SaveImageToLocation(source, paths[i], retryPath, cancellationToken).ConfigureA |
| | 170 | | savedPaths.Add(savedPath); |
| | 171 | | } |
| | 172 | | } |
| | 173 | |
|
| | 174 | | // Set the path into the item |
| | 175 | | SetImagePath(item, type, imageIndex, savedPaths[0]); |
| | 176 | |
|
| | 177 | | // Delete the current path |
| | 178 | | if (currentImageIsLocalFile |
| | 179 | | && !savedPaths.Contains(currentImagePath, StringComparison.OrdinalIgnoreCase) |
| | 180 | | && (saveLocally || currentImagePath.Contains(_config.ApplicationPaths.InternalMetadataPath, StringCompar |
| | 181 | | { |
| | 182 | | var currentPath = currentImagePath; |
| | 183 | |
|
| | 184 | | _logger.LogInformation("Deleting previous image {0}", currentPath); |
| | 185 | |
|
| | 186 | | _libraryMonitor.ReportFileSystemChangeBeginning(currentPath); |
| | 187 | |
|
| | 188 | | try |
| | 189 | | { |
| | 190 | | _fileSystem.DeleteFile(currentPath); |
| | 191 | |
|
| | 192 | | // Remove local episode metadata directory if it exists and is empty |
| | 193 | | var directory = Path.GetDirectoryName(currentPath); |
| | 194 | | if (item is Episode && directory.Equals("metadata", StringComparison.Ordinal)) |
| | 195 | | { |
| | 196 | | var parentDirectoryPath = Directory.GetParent(currentPath).FullName; |
| | 197 | | if (_fileSystem.DirectoryExists(parentDirectoryPath) && !_fileSystem.GetFiles(parentDirectoryPat |
| | 198 | | { |
| | 199 | | try |
| | 200 | | { |
| | 201 | | _logger.LogInformation("Deleting empty local metadata folder {Folder}", parentDirectoryP |
| | 202 | | Directory.Delete(parentDirectoryPath); |
| | 203 | | } |
| | 204 | | catch (UnauthorizedAccessException ex) |
| | 205 | | { |
| | 206 | | _logger.LogError(ex, "Error deleting directory {Path}", parentDirectoryPath); |
| | 207 | | } |
| | 208 | | catch (IOException ex) |
| | 209 | | { |
| | 210 | | _logger.LogError(ex, "Error deleting directory {Path}", parentDirectoryPath); |
| | 211 | | } |
| | 212 | | } |
| | 213 | | } |
| | 214 | | } |
| | 215 | | catch (FileNotFoundException) |
| | 216 | | { |
| | 217 | | } |
| | 218 | | finally |
| | 219 | | { |
| | 220 | | _libraryMonitor.ReportFileSystemChangeComplete(currentPath, false); |
| | 221 | | } |
| | 222 | | } |
| | 223 | | } |
| | 224 | |
|
| | 225 | | public async Task SaveImage(Stream source, string path) |
| | 226 | | { |
| | 227 | | await SaveImageToLocation(source, path, path, CancellationToken.None).ConfigureAwait(false); |
| | 228 | | } |
| | 229 | |
|
| | 230 | | private async Task<string> SaveImageToLocation(Stream source, string path, string retryPath, CancellationToken c |
| | 231 | | { |
| | 232 | | try |
| | 233 | | { |
| | 234 | | await SaveImageToLocation(source, path, cancellationToken).ConfigureAwait(false); |
| | 235 | | return path; |
| | 236 | | } |
| | 237 | | catch (UnauthorizedAccessException) |
| | 238 | | { |
| | 239 | | var retry = !string.IsNullOrWhiteSpace(retryPath) && |
| | 240 | | !string.Equals(path, retryPath, StringComparison.OrdinalIgnoreCase); |
| | 241 | |
|
| | 242 | | if (retry) |
| | 243 | | { |
| | 244 | | _logger.LogError("UnauthorizedAccessException - Access to path {0} is denied. Will retry saving to { |
| | 245 | | } |
| | 246 | | else |
| | 247 | | { |
| | 248 | | throw; |
| | 249 | | } |
| | 250 | | } |
| | 251 | | catch (IOException ex) |
| | 252 | | { |
| | 253 | | var retry = !string.IsNullOrWhiteSpace(retryPath) && |
| | 254 | | !string.Equals(path, retryPath, StringComparison.OrdinalIgnoreCase); |
| | 255 | |
|
| | 256 | | if (retry) |
| | 257 | | { |
| | 258 | | _logger.LogError(ex, "IOException saving to {0}. Will retry saving to {1}", path, retryPath); |
| | 259 | | } |
| | 260 | | else |
| | 261 | | { |
| | 262 | | throw; |
| | 263 | | } |
| | 264 | | } |
| | 265 | |
|
| | 266 | | await SaveImageToLocation(source, retryPath, cancellationToken).ConfigureAwait(false); |
| | 267 | | return retryPath; |
| | 268 | | } |
| | 269 | |
|
| | 270 | | /// <summary> |
| | 271 | | /// Saves the image to location. |
| | 272 | | /// </summary> |
| | 273 | | /// <param name="source">The source.</param> |
| | 274 | | /// <param name="path">The path.</param> |
| | 275 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 276 | | /// <returns>Task.</returns> |
| | 277 | | private async Task SaveImageToLocation(Stream source, string path, CancellationToken cancellationToken) |
| | 278 | | { |
| | 279 | | _logger.LogDebug("Saving image to {0}", path); |
| | 280 | |
|
| | 281 | | var parentFolder = Path.GetDirectoryName(path); |
| | 282 | |
|
| | 283 | | try |
| | 284 | | { |
| | 285 | | _libraryMonitor.ReportFileSystemChangeBeginning(path); |
| | 286 | | _libraryMonitor.ReportFileSystemChangeBeginning(parentFolder); |
| | 287 | |
|
| | 288 | | Directory.CreateDirectory(Path.GetDirectoryName(path)); |
| | 289 | |
|
| | 290 | | _fileSystem.SetAttributes(path, false, false); |
| | 291 | |
|
| | 292 | | var fileStreamOptions = AsyncFile.WriteOptions; |
| | 293 | | fileStreamOptions.Mode = FileMode.Create; |
| | 294 | | fileStreamOptions.Options = FileOptions.WriteThrough; |
| | 295 | | if (source.CanSeek) |
| | 296 | | { |
| | 297 | | fileStreamOptions.PreallocationSize = source.Length; |
| | 298 | | } |
| | 299 | |
|
| | 300 | | var fs = new FileStream(path, fileStreamOptions); |
| | 301 | | await using (fs.ConfigureAwait(false)) |
| | 302 | | { |
| | 303 | | await source.CopyToAsync(fs, cancellationToken).ConfigureAwait(false); |
| | 304 | | } |
| | 305 | |
|
| | 306 | | if (_config.Configuration.SaveMetadataHidden) |
| | 307 | | { |
| | 308 | | SetHidden(path, true); |
| | 309 | | } |
| | 310 | | } |
| | 311 | | finally |
| | 312 | | { |
| | 313 | | _libraryMonitor.ReportFileSystemChangeComplete(path, false); |
| | 314 | | _libraryMonitor.ReportFileSystemChangeComplete(parentFolder, false); |
| | 315 | | } |
| | 316 | | } |
| | 317 | |
|
| | 318 | | private void SetHidden(string path, bool hidden) |
| | 319 | | { |
| | 320 | | try |
| | 321 | | { |
| 0 | 322 | | _fileSystem.SetHidden(path, hidden); |
| 0 | 323 | | } |
| 0 | 324 | | catch (Exception ex) |
| | 325 | | { |
| 0 | 326 | | _logger.LogError(ex, "Error setting hidden attribute on {0}", path); |
| 0 | 327 | | } |
| 0 | 328 | | } |
| | 329 | |
|
| | 330 | | /// <summary> |
| | 331 | | /// Gets the save paths. |
| | 332 | | /// </summary> |
| | 333 | | /// <param name="item">The item.</param> |
| | 334 | | /// <param name="type">The type.</param> |
| | 335 | | /// <param name="imageIndex">Index of the image.</param> |
| | 336 | | /// <param name="mimeType">Type of the MIME.</param> |
| | 337 | | /// <param name="saveLocally">if set to <c>true</c> [save locally].</param> |
| | 338 | | /// <returns>IEnumerable{System.String}.</returns> |
| | 339 | | private string[] GetSavePaths(BaseItem item, ImageType type, int? imageIndex, string mimeType, bool saveLocally) |
| | 340 | | { |
| 0 | 341 | | if (!saveLocally || (_config.Configuration.ImageSavingConvention == ImageSavingConvention.Legacy)) |
| | 342 | | { |
| 0 | 343 | | return new[] { GetStandardSavePath(item, type, imageIndex, mimeType, saveLocally) }; |
| | 344 | | } |
| | 345 | |
|
| 0 | 346 | | return GetCompatibleSavePaths(item, type, imageIndex, mimeType); |
| | 347 | | } |
| | 348 | |
|
| | 349 | | /// <summary> |
| | 350 | | /// Gets the current image path. |
| | 351 | | /// </summary> |
| | 352 | | /// <param name="item">The item.</param> |
| | 353 | | /// <param name="type">The type.</param> |
| | 354 | | /// <param name="imageIndex">Index of the image.</param> |
| | 355 | | /// <returns>System.String.</returns> |
| | 356 | | /// <exception cref="ArgumentNullException"> |
| | 357 | | /// imageIndex |
| | 358 | | /// or |
| | 359 | | /// imageIndex. |
| | 360 | | /// </exception> |
| | 361 | | private ItemImageInfo GetCurrentImage(BaseItem item, ImageType type, int imageIndex) |
| | 362 | | { |
| 0 | 363 | | return item.GetImageInfo(type, imageIndex); |
| | 364 | | } |
| | 365 | |
|
| | 366 | | /// <summary> |
| | 367 | | /// Sets the image path. |
| | 368 | | /// </summary> |
| | 369 | | /// <param name="item">The item.</param> |
| | 370 | | /// <param name="type">The type.</param> |
| | 371 | | /// <param name="imageIndex">Index of the image.</param> |
| | 372 | | /// <param name="path">The path.</param> |
| | 373 | | /// <exception cref="ArgumentNullException">imageIndex |
| | 374 | | /// or |
| | 375 | | /// imageIndex. |
| | 376 | | /// </exception> |
| | 377 | | private void SetImagePath(BaseItem item, ImageType type, int? imageIndex, string path) |
| | 378 | | { |
| 0 | 379 | | item.SetImagePath(type, imageIndex ?? 0, _fileSystem.GetFileInfo(path)); |
| 0 | 380 | | } |
| | 381 | |
|
| | 382 | | /// <summary> |
| | 383 | | /// Gets the save path. |
| | 384 | | /// </summary> |
| | 385 | | /// <param name="item">The item.</param> |
| | 386 | | /// <param name="type">The type.</param> |
| | 387 | | /// <param name="imageIndex">Index of the image.</param> |
| | 388 | | /// <param name="mimeType">Type of the MIME.</param> |
| | 389 | | /// <param name="saveLocally">if set to <c>true</c> [save locally].</param> |
| | 390 | | /// <returns>System.String.</returns> |
| | 391 | | /// <exception cref="ArgumentNullException"> |
| | 392 | | /// imageIndex |
| | 393 | | /// or |
| | 394 | | /// imageIndex. |
| | 395 | | /// </exception> |
| | 396 | | private string GetStandardSavePath(BaseItem item, ImageType type, int? imageIndex, string mimeType, bool saveLoc |
| | 397 | | { |
| 0 | 398 | | var season = item as Season; |
| 0 | 399 | | var extension = MimeTypes.ToExtension(mimeType); |
| | 400 | |
|
| 0 | 401 | | if (string.IsNullOrWhiteSpace(extension)) |
| | 402 | | { |
| 0 | 403 | | throw new ArgumentException(string.Format(CultureInfo.InvariantCulture, "Unable to determine image file |
| | 404 | | } |
| | 405 | |
|
| 0 | 406 | | if (string.Equals(extension, ".jpeg", StringComparison.OrdinalIgnoreCase)) |
| | 407 | | { |
| 0 | 408 | | extension = ".jpg"; |
| | 409 | | } |
| | 410 | |
|
| 0 | 411 | | extension = extension.ToLowerInvariant(); |
| | 412 | |
|
| 0 | 413 | | if (type == ImageType.Primary && saveLocally) |
| | 414 | | { |
| 0 | 415 | | if (season is not null && season.IndexNumber.HasValue) |
| | 416 | | { |
| 0 | 417 | | var seriesFolder = season.SeriesPath; |
| | 418 | |
|
| 0 | 419 | | var seasonMarker = season.IndexNumber.Value == 0 |
| 0 | 420 | | ? "-specials" |
| 0 | 421 | | : season.IndexNumber.Value.ToString("00", CultureInfo.InvariantCulture); |
| | 422 | |
|
| 0 | 423 | | var imageFilename = "season" + seasonMarker + "-poster" + extension; |
| | 424 | |
|
| 0 | 425 | | return Path.Combine(seriesFolder, imageFilename); |
| | 426 | | } |
| | 427 | | } |
| | 428 | |
|
| 0 | 429 | | if (type == ImageType.Backdrop && saveLocally) |
| | 430 | | { |
| 0 | 431 | | if (season is not null |
| 0 | 432 | | && season.IndexNumber.HasValue |
| 0 | 433 | | && (imageIndex is null || imageIndex == 0)) |
| | 434 | | { |
| 0 | 435 | | var seriesFolder = season.SeriesPath; |
| | 436 | |
|
| 0 | 437 | | var seasonMarker = season.IndexNumber.Value == 0 |
| 0 | 438 | | ? "-specials" |
| 0 | 439 | | : season.IndexNumber.Value.ToString("00", CultureInfo.InvariantCulture); |
| | 440 | |
|
| 0 | 441 | | var imageFilename = "season" + seasonMarker + "-fanart" + extension; |
| | 442 | |
|
| 0 | 443 | | return Path.Combine(seriesFolder, imageFilename); |
| | 444 | | } |
| | 445 | | } |
| | 446 | |
|
| 0 | 447 | | if (type == ImageType.Thumb && saveLocally) |
| | 448 | | { |
| 0 | 449 | | if (season is not null && season.IndexNumber.HasValue) |
| | 450 | | { |
| 0 | 451 | | var seriesFolder = season.SeriesPath; |
| | 452 | |
|
| 0 | 453 | | var seasonMarker = season.IndexNumber.Value == 0 |
| 0 | 454 | | ? "-specials" |
| 0 | 455 | | : season.IndexNumber.Value.ToString("00", CultureInfo.InvariantCulture); |
| | 456 | |
|
| 0 | 457 | | var imageFilename = "season" + seasonMarker + "-landscape" + extension; |
| | 458 | |
|
| 0 | 459 | | return Path.Combine(seriesFolder, imageFilename); |
| | 460 | | } |
| | 461 | |
|
| 0 | 462 | | if (item.IsInMixedFolder) |
| | 463 | | { |
| 0 | 464 | | return GetSavePathForItemInMixedFolder(item, type, "landscape", extension); |
| | 465 | | } |
| | 466 | |
|
| 0 | 467 | | return Path.Combine(item.ContainingFolderPath, "landscape" + extension); |
| | 468 | | } |
| | 469 | |
|
| 0 | 470 | | if (type == ImageType.Banner && saveLocally) |
| | 471 | | { |
| 0 | 472 | | if (season is not null && season.IndexNumber.HasValue) |
| | 473 | | { |
| 0 | 474 | | var seriesFolder = season.SeriesPath; |
| | 475 | |
|
| 0 | 476 | | var seasonMarker = season.IndexNumber.Value == 0 |
| 0 | 477 | | ? "-specials" |
| 0 | 478 | | : season.IndexNumber.Value.ToString("00", CultureInfo.InvariantCulture); |
| | 479 | |
|
| 0 | 480 | | var imageFilename = "season" + seasonMarker + "-banner" + extension; |
| | 481 | |
|
| 0 | 482 | | return Path.Combine(seriesFolder, imageFilename); |
| | 483 | | } |
| | 484 | | } |
| | 485 | |
|
| | 486 | | string filename; |
| 0 | 487 | | var folderName = item is MusicAlbum || |
| 0 | 488 | | item is MusicArtist || |
| 0 | 489 | | item is PhotoAlbum || |
| 0 | 490 | | item is Person || |
| 0 | 491 | | (saveLocally && _config.Configuration.ImageSavingConvention == ImageSavingConvention.Legacy) ? |
| 0 | 492 | | "folder" : |
| 0 | 493 | | "poster"; |
| | 494 | |
|
| | 495 | | switch (type) |
| | 496 | | { |
| | 497 | | case ImageType.Art: |
| 0 | 498 | | filename = "clearart"; |
| 0 | 499 | | break; |
| | 500 | | case ImageType.BoxRear: |
| 0 | 501 | | filename = "back"; |
| 0 | 502 | | break; |
| | 503 | | case ImageType.Thumb: |
| 0 | 504 | | filename = "landscape"; |
| 0 | 505 | | break; |
| | 506 | | case ImageType.Disc: |
| 0 | 507 | | filename = item is MusicAlbum ? "cdart" : "disc"; |
| 0 | 508 | | break; |
| | 509 | | case ImageType.Primary: |
| 0 | 510 | | filename = saveLocally && item is Episode ? Path.GetFileNameWithoutExtension(item.Path) : folderName |
| 0 | 511 | | break; |
| | 512 | | case ImageType.Backdrop: |
| 0 | 513 | | filename = GetBackdropSaveFilename(item.GetImages(type), "backdrop", "backdrop", imageIndex); |
| 0 | 514 | | break; |
| | 515 | | default: |
| 0 | 516 | | filename = type.ToString().ToLowerInvariant(); |
| | 517 | | break; |
| | 518 | | } |
| | 519 | |
|
| 0 | 520 | | string path = null; |
| 0 | 521 | | if (saveLocally) |
| | 522 | | { |
| 0 | 523 | | if (type == ImageType.Primary && item is Episode) |
| | 524 | | { |
| 0 | 525 | | path = Path.Combine(Path.GetDirectoryName(item.Path), filename + "-thumb" + extension); |
| | 526 | | } |
| 0 | 527 | | else if (item.IsInMixedFolder) |
| | 528 | | { |
| 0 | 529 | | path = GetSavePathForItemInMixedFolder(item, type, filename, extension); |
| | 530 | | } |
| | 531 | |
|
| 0 | 532 | | if (string.IsNullOrEmpty(path)) |
| | 533 | | { |
| 0 | 534 | | path = Path.Combine(item.ContainingFolderPath, filename + extension); |
| | 535 | | } |
| | 536 | | } |
| | 537 | |
|
| | 538 | | // None of the save local conditions passed, so store it in our internal folders |
| 0 | 539 | | if (string.IsNullOrEmpty(path)) |
| | 540 | | { |
| 0 | 541 | | if (string.IsNullOrEmpty(filename)) |
| | 542 | | { |
| 0 | 543 | | filename = folderName; |
| | 544 | | } |
| | 545 | |
|
| 0 | 546 | | path = Path.Combine(item.GetInternalMetadataPath(), filename + extension); |
| | 547 | | } |
| | 548 | |
|
| 0 | 549 | | return path; |
| | 550 | | } |
| | 551 | |
|
| | 552 | | private string GetBackdropSaveFilename(IEnumerable<ItemImageInfo> images, string zeroIndexFilename, string numbe |
| | 553 | | { |
| 0 | 554 | | if (index.HasValue && index.Value == 0) |
| | 555 | | { |
| 0 | 556 | | return zeroIndexFilename; |
| | 557 | | } |
| | 558 | |
|
| 0 | 559 | | var filenames = images.Select(i => Path.GetFileNameWithoutExtension(i.Path)).ToList(); |
| | 560 | |
|
| 0 | 561 | | var current = 1; |
| 0 | 562 | | while (filenames.Contains(numberedIndexPrefix + current.ToString(CultureInfo.InvariantCulture), StringCompar |
| | 563 | | { |
| 0 | 564 | | current++; |
| | 565 | | } |
| | 566 | |
|
| 0 | 567 | | return numberedIndexPrefix + current.ToString(CultureInfo.InvariantCulture); |
| | 568 | | } |
| | 569 | |
|
| | 570 | | /// <summary> |
| | 571 | | /// Gets the compatible save paths. |
| | 572 | | /// </summary> |
| | 573 | | /// <param name="item">The item.</param> |
| | 574 | | /// <param name="type">The type.</param> |
| | 575 | | /// <param name="imageIndex">Index of the image.</param> |
| | 576 | | /// <param name="mimeType">Type of the MIME.</param> |
| | 577 | | /// <returns>IEnumerable{System.String}.</returns> |
| | 578 | | /// <exception cref="ArgumentNullException">imageIndex.</exception> |
| | 579 | | private string[] GetCompatibleSavePaths(BaseItem item, ImageType type, int? imageIndex, string mimeType) |
| | 580 | | { |
| 0 | 581 | | var season = item as Season; |
| | 582 | |
|
| 0 | 583 | | var extension = MimeTypes.ToExtension(mimeType); |
| | 584 | |
|
| | 585 | | // Backdrop paths |
| 0 | 586 | | if (type == ImageType.Backdrop) |
| | 587 | | { |
| 0 | 588 | | if (!imageIndex.HasValue) |
| | 589 | | { |
| 0 | 590 | | throw new ArgumentNullException(nameof(imageIndex)); |
| | 591 | | } |
| | 592 | |
|
| 0 | 593 | | if (imageIndex.Value == 0) |
| | 594 | | { |
| 0 | 595 | | if (item.IsInMixedFolder) |
| | 596 | | { |
| 0 | 597 | | return new[] { GetSavePathForItemInMixedFolder(item, type, "fanart", extension) }; |
| | 598 | | } |
| | 599 | |
|
| 0 | 600 | | if (season is not null && season.IndexNumber.HasValue) |
| | 601 | | { |
| 0 | 602 | | var seriesFolder = season.SeriesPath; |
| | 603 | |
|
| 0 | 604 | | var seasonMarker = season.IndexNumber.Value == 0 |
| 0 | 605 | | ? "-specials" |
| 0 | 606 | | : season.IndexNumber.Value.ToString("00", CultureInfo.InvariantCulture); |
| | 607 | |
|
| 0 | 608 | | var imageFilename = "season" + seasonMarker + "-fanart" + extension; |
| | 609 | |
|
| 0 | 610 | | return new[] { Path.Combine(seriesFolder, imageFilename) }; |
| | 611 | | } |
| | 612 | |
|
| 0 | 613 | | return new[] |
| 0 | 614 | | { |
| 0 | 615 | | Path.Combine(item.ContainingFolderPath, "fanart" + extension) |
| 0 | 616 | | }; |
| | 617 | | } |
| | 618 | |
|
| 0 | 619 | | var outputIndex = imageIndex.Value; |
| | 620 | |
|
| 0 | 621 | | if (item.IsInMixedFolder) |
| | 622 | | { |
| 0 | 623 | | return new[] { GetSavePathForItemInMixedFolder(item, type, "fanart" + outputIndex.ToString(CultureIn |
| | 624 | | } |
| | 625 | |
|
| 0 | 626 | | var extraFanartFilename = GetBackdropSaveFilename(item.GetImages(ImageType.Backdrop), "fanart", "fanart" |
| | 627 | |
|
| 0 | 628 | | var list = new List<string> |
| 0 | 629 | | { |
| 0 | 630 | | Path.Combine(item.ContainingFolderPath, "extrafanart", extraFanartFilename + extension) |
| 0 | 631 | | }; |
| | 632 | |
|
| 0 | 633 | | if (EnableExtraThumbsDuplication) |
| | 634 | | { |
| 0 | 635 | | list.Add(Path.Combine(item.ContainingFolderPath, "extrathumbs", "thumb" + outputIndex.ToString(Cultu |
| | 636 | | } |
| | 637 | |
|
| 0 | 638 | | return list.ToArray(); |
| | 639 | | } |
| | 640 | |
|
| 0 | 641 | | if (type == ImageType.Primary) |
| | 642 | | { |
| 0 | 643 | | if (season is not null && season.IndexNumber.HasValue) |
| | 644 | | { |
| 0 | 645 | | var seriesFolder = season.SeriesPath; |
| | 646 | |
|
| 0 | 647 | | var seasonMarker = season.IndexNumber.Value == 0 |
| 0 | 648 | | ? "-specials" |
| 0 | 649 | | : season.IndexNumber.Value.ToString("00", CultureInfo.InvariantCulture); |
| | 650 | |
|
| 0 | 651 | | var imageFilename = "season" + seasonMarker + "-poster" + extension; |
| | 652 | |
|
| 0 | 653 | | return new[] { Path.Combine(seriesFolder, imageFilename) }; |
| | 654 | | } |
| | 655 | |
|
| 0 | 656 | | if (item is Episode) |
| | 657 | | { |
| 0 | 658 | | var seasonFolder = Path.GetDirectoryName(item.Path); |
| | 659 | |
|
| 0 | 660 | | var imageFilename = Path.GetFileNameWithoutExtension(item.Path) + "-thumb" + extension; |
| | 661 | |
|
| 0 | 662 | | return new[] { Path.Combine(seasonFolder, imageFilename) }; |
| | 663 | | } |
| | 664 | |
|
| 0 | 665 | | if (item.IsInMixedFolder || item is MusicVideo) |
| | 666 | | { |
| 0 | 667 | | return new[] { GetSavePathForItemInMixedFolder(item, type, string.Empty, extension) }; |
| | 668 | | } |
| | 669 | |
|
| 0 | 670 | | if (item is MusicAlbum || item is MusicArtist) |
| | 671 | | { |
| 0 | 672 | | return new[] { Path.Combine(item.ContainingFolderPath, "folder" + extension) }; |
| | 673 | | } |
| | 674 | |
|
| 0 | 675 | | return new[] { Path.Combine(item.ContainingFolderPath, "poster" + extension) }; |
| | 676 | | } |
| | 677 | |
|
| | 678 | | // All other paths are the same |
| 0 | 679 | | return new[] { GetStandardSavePath(item, type, imageIndex, mimeType, true) }; |
| | 680 | | } |
| | 681 | |
|
| | 682 | | /// <summary> |
| | 683 | | /// Gets the save path for item in mixed folder. |
| | 684 | | /// </summary> |
| | 685 | | /// <param name="item">The item.</param> |
| | 686 | | /// <param name="type">The type.</param> |
| | 687 | | /// <param name="imageFilename">The image filename.</param> |
| | 688 | | /// <param name="extension">The extension.</param> |
| | 689 | | /// <returns>System.String.</returns> |
| | 690 | | private string GetSavePathForItemInMixedFolder(BaseItem item, ImageType type, string imageFilename, string exten |
| | 691 | | { |
| 0 | 692 | | if (type == ImageType.Primary) |
| | 693 | | { |
| 0 | 694 | | imageFilename = "poster"; |
| | 695 | | } |
| | 696 | |
|
| 0 | 697 | | var folder = Path.GetDirectoryName(item.Path); |
| | 698 | |
|
| 0 | 699 | | return Path.Combine(folder, Path.GetFileNameWithoutExtension(item.Path) + "-" + imageFilename + extension); |
| | 700 | | } |
| | 701 | | } |
| | 702 | | } |