| | 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.Net.Mime; |
| | 11 | | using System.Threading; |
| | 12 | | using System.Threading.Tasks; |
| | 13 | | using MediaBrowser.Common.Configuration; |
| | 14 | | using MediaBrowser.Controller.Drawing; |
| | 15 | | using MediaBrowser.Controller.Entities; |
| | 16 | | using MediaBrowser.Controller.Entities.Audio; |
| | 17 | | using MediaBrowser.Controller.Library; |
| | 18 | | using MediaBrowser.Controller.Playlists; |
| | 19 | | using MediaBrowser.Controller.Providers; |
| | 20 | | using MediaBrowser.Model.Entities; |
| | 21 | | using MediaBrowser.Model.IO; |
| | 22 | | using MediaBrowser.Model.Net; |
| | 23 | |
|
| | 24 | | namespace Emby.Server.Implementations.Images |
| | 25 | | { |
| | 26 | | public abstract class BaseDynamicImageProvider<T> : IHasItemChangeMonitor, IForcedProvider, ICustomMetadataProvider< |
| | 27 | | where T : BaseItem |
| | 28 | | { |
| | 29 | | protected BaseDynamicImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths a |
| | 30 | | { |
| 210 | 31 | | ApplicationPaths = applicationPaths; |
| 210 | 32 | | ProviderManager = providerManager; |
| 210 | 33 | | FileSystem = fileSystem; |
| 210 | 34 | | ImageProcessor = imageProcessor; |
| 210 | 35 | | } |
| | 36 | |
|
| | 37 | | protected IFileSystem FileSystem { get; } |
| | 38 | |
|
| | 39 | | protected IProviderManager ProviderManager { get; } |
| | 40 | |
|
| | 41 | | protected IApplicationPaths ApplicationPaths { get; } |
| | 42 | |
|
| | 43 | | protected IImageProcessor ImageProcessor { get; set; } |
| | 44 | |
|
| | 45 | | protected virtual IReadOnlyCollection<ImageType> SupportedImages { get; } |
| 210 | 46 | | = new ImageType[] { ImageType.Primary }; |
| | 47 | |
|
| | 48 | | /// <inheritdoc /> |
| 1 | 49 | | public string Name => "Dynamic Image Provider"; |
| | 50 | |
|
| 0 | 51 | | protected virtual int MaxImageAgeDays => 7; |
| | 52 | |
|
| 0 | 53 | | public int Order => 0; |
| | 54 | |
|
| 0 | 55 | | protected virtual bool Supports(BaseItem item) => true; |
| | 56 | |
|
| | 57 | | public async Task<ItemUpdateType> FetchAsync(T item, MetadataRefreshOptions options, CancellationToken cancellat |
| | 58 | | { |
| | 59 | | if (!Supports(item)) |
| | 60 | | { |
| | 61 | | return ItemUpdateType.None; |
| | 62 | | } |
| | 63 | |
|
| | 64 | | var updateType = ItemUpdateType.None; |
| | 65 | |
|
| | 66 | | if (SupportedImages.Contains(ImageType.Primary)) |
| | 67 | | { |
| | 68 | | var primaryResult = await FetchAsync(item, ImageType.Primary, options, cancellationToken).ConfigureAwait |
| | 69 | | updateType |= primaryResult; |
| | 70 | | } |
| | 71 | |
|
| | 72 | | if (SupportedImages.Contains(ImageType.Thumb)) |
| | 73 | | { |
| | 74 | | var thumbResult = await FetchAsync(item, ImageType.Thumb, options, cancellationToken).ConfigureAwait(fal |
| | 75 | | updateType |= thumbResult; |
| | 76 | | } |
| | 77 | |
|
| | 78 | | return updateType; |
| | 79 | | } |
| | 80 | |
|
| | 81 | | protected Task<ItemUpdateType> FetchAsync(BaseItem item, ImageType imageType, MetadataRefreshOptions options, Ca |
| | 82 | | { |
| 53 | 83 | | var image = item.GetImageInfo(imageType, 0); |
| | 84 | |
|
| 53 | 85 | | if (image is not null) |
| | 86 | | { |
| 0 | 87 | | if (!image.IsLocalFile) |
| | 88 | | { |
| 0 | 89 | | return Task.FromResult(ItemUpdateType.None); |
| | 90 | | } |
| | 91 | |
|
| 0 | 92 | | if (!FileSystem.ContainsSubPath(item.GetInternalMetadataPath(), image.Path)) |
| | 93 | | { |
| 0 | 94 | | return Task.FromResult(ItemUpdateType.None); |
| | 95 | | } |
| | 96 | | } |
| | 97 | |
|
| 53 | 98 | | var items = GetItemsWithImages(item); |
| | 99 | |
|
| 52 | 100 | | return FetchToFileInternal(item, items, imageType, cancellationToken); |
| | 101 | | } |
| | 102 | |
|
| | 103 | | protected async Task<ItemUpdateType> FetchToFileInternal( |
| | 104 | | BaseItem item, |
| | 105 | | IReadOnlyList<BaseItem> itemsWithImages, |
| | 106 | | ImageType imageType, |
| | 107 | | CancellationToken cancellationToken) |
| | 108 | | { |
| | 109 | | var outputPathWithoutExtension = Path.Combine(ApplicationPaths.TempDirectory, Guid.NewGuid().ToString("N", C |
| | 110 | | Directory.CreateDirectory(Path.GetDirectoryName(outputPathWithoutExtension)); |
| | 111 | | string outputPath = CreateImage(item, itemsWithImages, outputPathWithoutExtension, imageType, 0); |
| | 112 | |
|
| | 113 | | if (string.IsNullOrEmpty(outputPath)) |
| | 114 | | { |
| | 115 | | return ItemUpdateType.None; |
| | 116 | | } |
| | 117 | |
|
| | 118 | | var mimeType = MimeTypes.GetMimeType(outputPath); |
| | 119 | |
|
| | 120 | | if (string.Equals(mimeType, MediaTypeNames.Application.Octet, StringComparison.OrdinalIgnoreCase)) |
| | 121 | | { |
| | 122 | | mimeType = MediaTypeNames.Image.Png; |
| | 123 | | } |
| | 124 | |
|
| | 125 | | await ProviderManager.SaveImage(item, outputPath, mimeType, imageType, null, false, cancellationToken).Confi |
| | 126 | |
|
| | 127 | | return ItemUpdateType.ImageUpdate; |
| | 128 | | } |
| | 129 | |
|
| | 130 | | protected abstract IReadOnlyList<BaseItem> GetItemsWithImages(BaseItem item); |
| | 131 | |
|
| | 132 | | protected string CreateThumbCollage(BaseItem primaryItem, IEnumerable<BaseItem> items, string outputPath) |
| | 133 | | { |
| 0 | 134 | | return CreateCollage(primaryItem, items, outputPath, 640, 360); |
| | 135 | | } |
| | 136 | |
|
| | 137 | | protected virtual IEnumerable<string> GetStripCollageImagePaths(BaseItem primaryItem, IEnumerable<BaseItem> item |
| | 138 | | { |
| 0 | 139 | | var useBackdrop = primaryItem is CollectionFolder || primaryItem is UserView; |
| 0 | 140 | | return items |
| 0 | 141 | | .Select(i => |
| 0 | 142 | | { |
| 0 | 143 | | // Use Backdrop instead of Primary image for Library images. |
| 0 | 144 | | if (useBackdrop) |
| 0 | 145 | | { |
| 0 | 146 | | var backdrop = i.GetImageInfo(ImageType.Backdrop, 0); |
| 0 | 147 | | if (backdrop is not null && backdrop.IsLocalFile) |
| 0 | 148 | | { |
| 0 | 149 | | return backdrop.Path; |
| 0 | 150 | | } |
| 0 | 151 | | } |
| 0 | 152 | |
|
| 0 | 153 | | var image = i.GetImageInfo(ImageType.Primary, 0); |
| 0 | 154 | | if (image is not null && image.IsLocalFile) |
| 0 | 155 | | { |
| 0 | 156 | | return image.Path; |
| 0 | 157 | | } |
| 0 | 158 | |
|
| 0 | 159 | | image = i.GetImageInfo(ImageType.Thumb, 0); |
| 0 | 160 | | if (image is not null && image.IsLocalFile) |
| 0 | 161 | | { |
| 0 | 162 | | return image.Path; |
| 0 | 163 | | } |
| 0 | 164 | |
|
| 0 | 165 | | return null; |
| 0 | 166 | | }) |
| 0 | 167 | | .Where(i => !string.IsNullOrEmpty(i)); |
| | 168 | | } |
| | 169 | |
|
| | 170 | | protected string CreatePosterCollage(BaseItem primaryItem, IEnumerable<BaseItem> items, string outputPath) |
| | 171 | | { |
| 0 | 172 | | return CreateCollage(primaryItem, items, outputPath, 400, 600); |
| | 173 | | } |
| | 174 | |
|
| | 175 | | protected string CreateSquareCollage(BaseItem primaryItem, IEnumerable<BaseItem> items, string outputPath) |
| | 176 | | { |
| 0 | 177 | | return CreateCollage(primaryItem, items, outputPath, 600, 600); |
| | 178 | | } |
| | 179 | |
|
| | 180 | | protected string CreateThumbCollage(BaseItem primaryItem, IEnumerable<BaseItem> items, string outputPath, int wi |
| | 181 | | { |
| 0 | 182 | | return CreateCollage(primaryItem, items, outputPath, width, height); |
| | 183 | | } |
| | 184 | |
|
| | 185 | | private string CreateCollage(BaseItem primaryItem, IEnumerable<BaseItem> items, string outputPath, int width, in |
| | 186 | | { |
| 0 | 187 | | Directory.CreateDirectory(Path.GetDirectoryName(outputPath)); |
| | 188 | |
|
| 0 | 189 | | var options = new ImageCollageOptions |
| 0 | 190 | | { |
| 0 | 191 | | Height = height, |
| 0 | 192 | | Width = width, |
| 0 | 193 | | OutputPath = outputPath, |
| 0 | 194 | | InputPaths = GetStripCollageImagePaths(primaryItem, items).ToArray() |
| 0 | 195 | | }; |
| | 196 | |
|
| 0 | 197 | | if (options.InputPaths.Count == 0) |
| | 198 | | { |
| 0 | 199 | | return null; |
| | 200 | | } |
| | 201 | |
|
| 0 | 202 | | if (!ImageProcessor.SupportsImageCollageCreation) |
| | 203 | | { |
| 0 | 204 | | return null; |
| | 205 | | } |
| | 206 | |
|
| 0 | 207 | | ImageProcessor.CreateImageCollage(options, primaryItem.Name); |
| 0 | 208 | | return outputPath; |
| | 209 | | } |
| | 210 | |
|
| | 211 | | protected virtual string CreateImage( |
| | 212 | | BaseItem item, |
| | 213 | | IReadOnlyCollection<BaseItem> itemsWithImages, |
| | 214 | | string outputPathWithoutExtension, |
| | 215 | | ImageType imageType, |
| | 216 | | int imageIndex) |
| | 217 | | { |
| 0 | 218 | | if (itemsWithImages.Count == 0) |
| | 219 | | { |
| 0 | 220 | | return null; |
| | 221 | | } |
| | 222 | |
|
| 0 | 223 | | string outputPath = Path.ChangeExtension(outputPathWithoutExtension, ".png"); |
| | 224 | |
|
| 0 | 225 | | if (imageType == ImageType.Thumb) |
| | 226 | | { |
| 0 | 227 | | return CreateThumbCollage(item, itemsWithImages, outputPath); |
| | 228 | | } |
| | 229 | |
|
| 0 | 230 | | if (imageType == ImageType.Primary) |
| | 231 | | { |
| 0 | 232 | | if (item is UserView |
| 0 | 233 | | || item is Playlist |
| 0 | 234 | | || item is MusicGenre |
| 0 | 235 | | || item is Genre |
| 0 | 236 | | || item is PhotoAlbum |
| 0 | 237 | | || item is MusicArtist) |
| | 238 | | { |
| 0 | 239 | | return CreateSquareCollage(item, itemsWithImages, outputPath); |
| | 240 | | } |
| | 241 | |
|
| 0 | 242 | | return CreatePosterCollage(item, itemsWithImages, outputPath); |
| | 243 | | } |
| | 244 | |
|
| 0 | 245 | | throw new ArgumentException("Unexpected image type", nameof(imageType)); |
| | 246 | | } |
| | 247 | |
|
| | 248 | | public bool HasChanged(BaseItem item, IDirectoryService directoryService) |
| | 249 | | { |
| 24 | 250 | | if (!Supports(item)) |
| | 251 | | { |
| 0 | 252 | | return false; |
| | 253 | | } |
| | 254 | |
|
| 24 | 255 | | if (SupportedImages.Contains(ImageType.Primary) && HasChanged(item, ImageType.Primary)) |
| | 256 | | { |
| 24 | 257 | | return true; |
| | 258 | | } |
| | 259 | |
|
| 0 | 260 | | if (SupportedImages.Contains(ImageType.Thumb) && HasChanged(item, ImageType.Thumb)) |
| | 261 | | { |
| 0 | 262 | | return true; |
| | 263 | | } |
| | 264 | |
|
| 0 | 265 | | return false; |
| | 266 | | } |
| | 267 | |
|
| | 268 | | protected bool HasChanged(BaseItem item, ImageType type) |
| | 269 | | { |
| 24 | 270 | | var image = item.GetImageInfo(type, 0); |
| | 271 | |
|
| 24 | 272 | | if (image is not null) |
| | 273 | | { |
| 0 | 274 | | if (!image.IsLocalFile) |
| | 275 | | { |
| 0 | 276 | | return false; |
| | 277 | | } |
| | 278 | |
|
| 0 | 279 | | if (!FileSystem.ContainsSubPath(item.GetInternalMetadataPath(), image.Path)) |
| | 280 | | { |
| 0 | 281 | | return false; |
| | 282 | | } |
| | 283 | |
|
| 0 | 284 | | if (!HasChangedByDate(item, image)) |
| | 285 | | { |
| 0 | 286 | | return false; |
| | 287 | | } |
| | 288 | | } |
| | 289 | |
|
| 24 | 290 | | return true; |
| | 291 | | } |
| | 292 | |
|
| | 293 | | protected virtual bool HasChangedByDate(BaseItem item, ItemImageInfo image) |
| | 294 | | { |
| 0 | 295 | | var age = DateTime.UtcNow - image.DateModified; |
| 0 | 296 | | return age.TotalDays > MaxImageAgeDays; |
| | 297 | | } |
| | 298 | |
|
| | 299 | | protected string CreateSingleImage(IEnumerable<BaseItem> itemsWithImages, string outputPathWithoutExtension, Ima |
| | 300 | | { |
| 36 | 301 | | var image = itemsWithImages |
| 36 | 302 | | .Where(i => i.HasImage(imageType) && i.GetImageInfo(imageType, 0).IsLocalFile && Path.HasExtension(i.Get |
| 36 | 303 | | .Select(i => i.GetImagePath(imageType)) |
| 36 | 304 | | .FirstOrDefault(); |
| | 305 | |
|
| 36 | 306 | | if (string.IsNullOrEmpty(image)) |
| | 307 | | { |
| 36 | 308 | | return null; |
| | 309 | | } |
| | 310 | |
|
| 0 | 311 | | var ext = Path.GetExtension(image); |
| | 312 | |
|
| 0 | 313 | | var outputPath = Path.ChangeExtension(outputPathWithoutExtension, ext); |
| 0 | 314 | | File.Copy(image, outputPath, true); |
| | 315 | |
|
| 0 | 316 | | return outputPath; |
| | 317 | | } |
| | 318 | | } |
| | 319 | | } |