You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.2 KiB
101 lines
3.2 KiB
using MediaBrowser.Common.IO;
|
|
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;
|
|
|
|
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.Attributes & FileAttributes.Directory) == FileAttributes.Directory)
|
|
{
|
|
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();
|
|
}
|
|
}
|
|
}
|