mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			101 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Controller.Entities;
 | 
						|
using MediaBrowser.Controller.Entities.TV;
 | 
						|
using MediaBrowser.Controller.Providers;
 | 
						|
using MediaBrowser.Model.Entities;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.IO;
 | 
						|
using System.Linq;
 | 
						|
using CommonIO;
 | 
						|
 | 
						|
namespace MediaBrowser.LocalMetadata.Images
 | 
						|
{
 | 
						|
    public class EpisodeLocalLocalImageProvider : ILocalImageFileProvider, IHasOrder
 | 
						|
    {
 | 
						|
        private readonly IFileSystem _fileSystem;
 | 
						|
 | 
						|
        public EpisodeLocalLocalImageProvider(IFileSystem fileSystem)
 | 
						|
        {
 | 
						|
            _fileSystem = fileSystem;
 | 
						|
        }
 | 
						|
 | 
						|
        public string Name
 | 
						|
        {
 | 
						|
            get { return "Local Images"; }
 | 
						|
        }
 | 
						|
 | 
						|
        public int Order
 | 
						|
        {
 | 
						|
            get { return 0; }
 | 
						|
        }
 | 
						|
 | 
						|
        public bool Supports(IHasImages item)
 | 
						|
        {
 | 
						|
            return item is Episode && item.SupportsLocalMetadata;
 | 
						|
        }
 | 
						|
 | 
						|
        public List<LocalImageInfo> GetImages(IHasImages item, IDirectoryService directoryService)
 | 
						|
        {
 | 
						|
            var parentPath = Path.GetDirectoryName(item.Path);
 | 
						|
 | 
						|
            var parentPathFiles = directoryService.GetFileSystemEntries(parentPath)
 | 
						|
                .ToList();
 | 
						|
 | 
						|
            var nameWithoutExtension = _fileSystem.GetFileNameWithoutExtension(item.Path);
 | 
						|
 | 
						|
            var files = GetFilesFromParentFolder(nameWithoutExtension, parentPathFiles);
 | 
						|
 | 
						|
            if (files.Count > 0)
 | 
						|
            {
 | 
						|
                return files;
 | 
						|
            }
 | 
						|
 | 
						|
            var metadataPath = Path.Combine(parentPath, "metadata");
 | 
						|
 | 
						|
            if (parentPathFiles.Any(i => string.Equals(i.FullName, metadataPath, StringComparison.OrdinalIgnoreCase)))
 | 
						|
            {
 | 
						|
                return GetFilesFromParentFolder(nameWithoutExtension, directoryService.GetFiles(metadataPath));
 | 
						|
            }
 | 
						|
 | 
						|
            return new List<LocalImageInfo>();
 | 
						|
        }
 | 
						|
 | 
						|
        private List<LocalImageInfo> GetFilesFromParentFolder(string filenameWithoutExtension, IEnumerable<FileSystemMetadata> parentPathFiles)
 | 
						|
        {
 | 
						|
            var thumbName = filenameWithoutExtension + "-thumb";
 | 
						|
 | 
						|
            return parentPathFiles
 | 
						|
              .Where(i =>
 | 
						|
              {
 | 
						|
                  if (i.IsDirectory)
 | 
						|
                  {
 | 
						|
                      return false;
 | 
						|
                  }
 | 
						|
                  
 | 
						|
                  if (BaseItem.SupportedImageExtensions.Contains(i.Extension, StringComparer.OrdinalIgnoreCase))
 | 
						|
                  {
 | 
						|
                      var currentNameWithoutExtension = _fileSystem.GetFileNameWithoutExtension(i);
 | 
						|
 | 
						|
                      if (string.Equals(filenameWithoutExtension, currentNameWithoutExtension, StringComparison.OrdinalIgnoreCase))
 | 
						|
                      {
 | 
						|
                          return true;
 | 
						|
                      }
 | 
						|
 | 
						|
                      if (string.Equals(thumbName, currentNameWithoutExtension, StringComparison.OrdinalIgnoreCase))
 | 
						|
                      {
 | 
						|
                          return true;
 | 
						|
                      }
 | 
						|
                  }
 | 
						|
 | 
						|
                  return false;
 | 
						|
              })
 | 
						|
              .Select(i => new LocalImageInfo
 | 
						|
              {
 | 
						|
                  FileInfo = i,
 | 
						|
                  Type = ImageType.Primary
 | 
						|
              })
 | 
						|
              .ToList();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |