| | 1 | | using System.Collections.Generic; |
| | 2 | | using System.IO; |
| | 3 | | using System.Linq; |
| | 4 | | using MediaBrowser.Controller.Entities; |
| | 5 | | using MediaBrowser.Controller.Entities.Audio; |
| | 6 | | using MediaBrowser.Controller.Providers; |
| | 7 | | using MediaBrowser.Model.IO; |
| | 8 | | using Microsoft.Extensions.Logging; |
| | 9 | |
|
| | 10 | | namespace MediaBrowser.LocalMetadata.Images |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// Internal metadata folder image provider. |
| | 14 | | /// </summary> |
| | 15 | | public class InternalMetadataFolderImageProvider : ILocalImageProvider, IHasOrder |
| | 16 | | { |
| | 17 | | private readonly IFileSystem _fileSystem; |
| | 18 | | private readonly ILogger<InternalMetadataFolderImageProvider> _logger; |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// Initializes a new instance of the <see cref="InternalMetadataFolderImageProvider"/> class. |
| | 22 | | /// </summary> |
| | 23 | | /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param> |
| | 24 | | /// <param name="logger">Instance of the <see cref="ILogger{InternalMetadataFolderImageProvider}"/> interface.</ |
| | 25 | | public InternalMetadataFolderImageProvider( |
| | 26 | | IFileSystem fileSystem, |
| | 27 | | ILogger<InternalMetadataFolderImageProvider> logger) |
| | 28 | | { |
| 21 | 29 | | _fileSystem = fileSystem; |
| 21 | 30 | | _logger = logger; |
| 21 | 31 | | } |
| | 32 | |
|
| | 33 | | /// Make sure this is last so that all other locations are scanned first |
| | 34 | | /// <inheritdoc /> |
| 37 | 35 | | public int Order => 1000; |
| | 36 | |
|
| | 37 | | /// <inheritdoc /> |
| 37 | 38 | | public string Name => "Internal Images"; |
| | 39 | |
|
| | 40 | | /// <inheritdoc /> |
| | 41 | | public bool Supports(BaseItem item) |
| | 42 | | { |
| 53 | 43 | | if (item is Photo) |
| | 44 | | { |
| 0 | 45 | | return false; |
| | 46 | | } |
| | 47 | |
|
| 53 | 48 | | if (!item.IsSaveLocalMetadataEnabled()) |
| | 49 | | { |
| 37 | 50 | | return true; |
| | 51 | | } |
| | 52 | |
|
| | 53 | | // Extracted images will be saved in here |
| 16 | 54 | | if (item is Audio) |
| | 55 | | { |
| 0 | 56 | | return true; |
| | 57 | | } |
| | 58 | |
|
| 16 | 59 | | if (item.SupportsLocalMetadata && !item.AlwaysScanInternalMetadataPath) |
| | 60 | | { |
| 16 | 61 | | return false; |
| | 62 | | } |
| | 63 | |
|
| 0 | 64 | | return true; |
| | 65 | | } |
| | 66 | |
|
| | 67 | | /// <inheritdoc /> |
| | 68 | | public IEnumerable<LocalImageInfo> GetImages(BaseItem item, IDirectoryService directoryService) |
| | 69 | | { |
| 37 | 70 | | var path = item.GetInternalMetadataPath(); |
| | 71 | |
|
| 37 | 72 | | if (!Directory.Exists(path)) |
| | 73 | | { |
| 37 | 74 | | return Enumerable.Empty<LocalImageInfo>(); |
| | 75 | | } |
| | 76 | |
|
| | 77 | | try |
| | 78 | | { |
| 0 | 79 | | return new LocalImageProvider(_fileSystem).GetImages(item, path, directoryService); |
| | 80 | | } |
| 0 | 81 | | catch (IOException ex) |
| | 82 | | { |
| 0 | 83 | | _logger.LogError(ex, "Error while getting images for {Library}", item.Name); |
| 0 | 84 | | return Enumerable.Empty<LocalImageInfo>(); |
| | 85 | | } |
| 0 | 86 | | } |
| | 87 | | } |
| | 88 | | } |