jellyfin/MediaBrowser.LocalMetadata/Images/EpisodeLocalImageProvider.cs

101 lines
3.2 KiB
C#
Raw Normal View History

2014-07-26 19:30:15 +02:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
2014-07-12 21:05:35 +02:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace MediaBrowser.LocalMetadata.Images
{
2015-04-11 03:42:37 +02:00
public class EpisodeLocalLocalImageProvider : ILocalImageFileProvider, IHasOrder
{
2014-07-26 19:30:15 +02:00
private readonly IFileSystem _fileSystem;
public EpisodeLocalLocalImageProvider(IFileSystem fileSystem)
{
_fileSystem = fileSystem;
}
public string Name
{
get { return "Local Images"; }
}
2015-04-11 03:42:37 +02:00
public int Order
{
get { return 0; }
}
public bool Supports(IHasImages item)
{
2014-02-10 21:11:46 +01:00
return item is Episode && item.SupportsLocalMetadata;
}
2014-02-10 19:39:41 +01:00
public List<LocalImageInfo> GetImages(IHasImages item, IDirectoryService directoryService)
2014-02-08 21:02:35 +01:00
{
2014-02-08 23:38:02 +01:00
var parentPath = Path.GetDirectoryName(item.Path);
2014-10-25 20:32:58 +02:00
var parentPathFiles = directoryService.GetFileSystemEntries(parentPath)
.ToList();
2014-02-08 23:38:02 +01:00
2014-07-26 19:30:15 +02:00
var nameWithoutExtension = _fileSystem.GetFileNameWithoutExtension(item.Path);
2014-02-08 23:38:02 +01:00
var files = GetFilesFromParentFolder(nameWithoutExtension, parentPathFiles);
if (files.Count > 0)
{
return files;
}
2014-02-08 21:02:35 +01:00
2014-02-08 23:38:02 +01:00
var metadataPath = Path.Combine(parentPath, "metadata");
2014-02-08 21:02:35 +01:00
2014-02-08 23:38:02 +01:00
if (parentPathFiles.Any(i => string.Equals(i.FullName, metadataPath, StringComparison.OrdinalIgnoreCase)))
2014-02-08 21:02:35 +01:00
{
2014-02-08 23:38:02 +01:00
return GetFilesFromParentFolder(nameWithoutExtension, directoryService.GetFiles(metadataPath));
2014-02-08 21:02:35 +01:00
}
2014-02-08 23:38:02 +01:00
return new List<LocalImageInfo>();
2014-02-08 21:02:35 +01:00
}
2014-02-08 23:38:02 +01:00
private List<LocalImageInfo> GetFilesFromParentFolder(string filenameWithoutExtension, IEnumerable<FileSystemInfo> parentPathFiles)
{
2014-02-08 23:38:02 +01:00
var thumbName = filenameWithoutExtension + "-thumb";
2014-02-08 23:38:02 +01:00
return parentPathFiles
.Where(i =>
{
2014-07-12 21:05:35 +02:00
if ((i.Attributes & FileAttributes.Directory) == FileAttributes.Directory)
{
return false;
}
if (BaseItem.SupportedImageExtensions.Contains(i.Extension, StringComparer.OrdinalIgnoreCase))
2014-02-08 23:38:02 +01:00
{
2014-07-26 19:30:15 +02:00
var currentNameWithoutExtension = _fileSystem.GetFileNameWithoutExtension(i);
2014-02-08 23:38:02 +01:00
if (string.Equals(filenameWithoutExtension, currentNameWithoutExtension, StringComparison.OrdinalIgnoreCase))
{
return true;
}
2014-02-08 21:02:35 +01:00
2014-02-08 23:38:02 +01:00
if (string.Equals(thumbName, currentNameWithoutExtension, StringComparison.OrdinalIgnoreCase))
{
return true;
}
}
2014-02-08 21:02:35 +01:00
2014-02-08 23:38:02 +01:00
return false;
})
.Select(i => new LocalImageInfo
{
FileInfo = (FileInfo)i,
Type = ImageType.Primary
})
.ToList();
}
}
}