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.
35 lines
1.0 KiB
35 lines
1.0 KiB
using System.Collections.Generic;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.IO;
|
|
|
|
namespace MediaBrowser.LocalMetadata.Images
|
|
{
|
|
public class CollectionFolderLocalImageProvider : ILocalImageFileProvider, IHasOrder
|
|
{
|
|
private readonly IFileSystem _fileSystem;
|
|
|
|
public CollectionFolderLocalImageProvider(IFileSystem fileSystem)
|
|
{
|
|
_fileSystem = fileSystem;
|
|
}
|
|
|
|
public string Name => "Collection Folder Images";
|
|
|
|
public bool Supports(BaseItem item)
|
|
{
|
|
return item is CollectionFolder && item.SupportsLocalMetadata;
|
|
}
|
|
|
|
// Run after LocalImageProvider
|
|
public int Order => 1;
|
|
|
|
public List<LocalImageInfo> GetImages(BaseItem item, IDirectoryService directoryService)
|
|
{
|
|
var collectionFolder = (CollectionFolder)item;
|
|
|
|
return new LocalImageProvider(_fileSystem).GetImages(item, collectionFolder.PhysicalLocations, true, directoryService);
|
|
}
|
|
}
|
|
}
|