mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| #pragma warning disable SA1600
 | |
| 
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using Emby.Server.Implementations.Images;
 | |
| using MediaBrowser.Common.Configuration;
 | |
| using MediaBrowser.Controller.Drawing;
 | |
| using MediaBrowser.Controller.Entities;
 | |
| using MediaBrowser.Controller.Entities.Audio;
 | |
| using MediaBrowser.Controller.Entities.Movies;
 | |
| using MediaBrowser.Controller.Entities.TV;
 | |
| using MediaBrowser.Controller.Providers;
 | |
| using MediaBrowser.Model.Entities;
 | |
| using MediaBrowser.Model.IO;
 | |
| 
 | |
| namespace Emby.Server.Implementations.Collections
 | |
| {
 | |
|     public class CollectionImageProvider : BaseDynamicImageProvider<BoxSet>
 | |
|     {
 | |
|         public CollectionImageProvider(
 | |
|             IFileSystem fileSystem,
 | |
|             IProviderManager providerManager,
 | |
|             IApplicationPaths applicationPaths,
 | |
|             IImageProcessor imageProcessor)
 | |
|             : base(fileSystem, providerManager, applicationPaths, imageProcessor)
 | |
|         {
 | |
|         }
 | |
| 
 | |
|         protected override bool Supports(BaseItem item)
 | |
|         {
 | |
|             // Right now this is the only way to prevent this image from getting created ahead of internet image providers
 | |
|             if (!item.IsLocked)
 | |
|             {
 | |
|                 return false;
 | |
|             }
 | |
| 
 | |
|             return base.Supports(item);
 | |
|         }
 | |
| 
 | |
|         protected override IReadOnlyList<BaseItem> GetItemsWithImages(BaseItem item)
 | |
|         {
 | |
|             var playlist = (BoxSet)item;
 | |
| 
 | |
|             return playlist.Children.Concat(playlist.GetLinkedChildren())
 | |
|                 .Select(i =>
 | |
|                 {
 | |
|                     var subItem = i;
 | |
| 
 | |
|                     var episode = subItem as Episode;
 | |
| 
 | |
|                     if (episode != null)
 | |
|                     {
 | |
|                         var series = episode.Series;
 | |
|                         if (series != null && series.HasImage(ImageType.Primary))
 | |
|                         {
 | |
|                             return series;
 | |
|                         }
 | |
|                     }
 | |
| 
 | |
|                     if (subItem.HasImage(ImageType.Primary))
 | |
|                     {
 | |
|                         return subItem;
 | |
|                     }
 | |
| 
 | |
|                     var parent = subItem.GetOwner() ?? subItem.GetParent();
 | |
| 
 | |
|                     if (parent != null && parent.HasImage(ImageType.Primary))
 | |
|                     {
 | |
|                         if (parent is MusicAlbum)
 | |
|                         {
 | |
|                             return parent;
 | |
|                         }
 | |
|                     }
 | |
| 
 | |
|                     return null;
 | |
|                 })
 | |
|                 .Where(i => i != null)
 | |
|                 .GroupBy(x => x.Id)
 | |
|                 .Select(x => x.First())
 | |
|                 .ToList();
 | |
|         }
 | |
| 
 | |
|         protected override string CreateImage(BaseItem item, IReadOnlyCollection<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType, int imageIndex)
 | |
|         {
 | |
|             return CreateSingleImage(itemsWithImages, outputPathWithoutExtension, ImageType.Primary);
 | |
|         }
 | |
|     }
 | |
| }
 |