2019-01-13 21:02:23 +01:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 20:25:45 +01:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-02-08 15:02:35 -05:00
|
|
|
using MediaBrowser.Controller.Providers;
|
2016-10-25 15:02:04 -04:00
|
|
|
using MediaBrowser.Model.IO;
|
2014-02-08 15:02:35 -05:00
|
|
|
|
2014-06-29 23:04:50 -04:00
|
|
|
namespace MediaBrowser.LocalMetadata.Images
|
2014-02-08 15:02:35 -05:00
|
|
|
{
|
|
|
|
|
public class CollectionFolderLocalImageProvider : ILocalImageFileProvider, IHasOrder
|
|
|
|
|
{
|
2014-07-26 13:30:15 -04:00
|
|
|
private readonly IFileSystem _fileSystem;
|
|
|
|
|
|
|
|
|
|
public CollectionFolderLocalImageProvider(IFileSystem fileSystem)
|
|
|
|
|
{
|
|
|
|
|
_fileSystem = fileSystem;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-08 15:02:35 -05:00
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "Collection Folder Images"; }
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-12 19:26:21 +02:00
|
|
|
public bool Supports(BaseItem item)
|
2014-02-08 15:02:35 -05:00
|
|
|
{
|
2014-02-10 15:11:46 -05:00
|
|
|
return item is CollectionFolder && item.SupportsLocalMetadata;
|
2014-02-08 15:02:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Order
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// Run after LocalImageProvider
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-12 19:26:21 +02:00
|
|
|
public List<LocalImageInfo> GetImages(BaseItem item, IDirectoryService directoryService)
|
2014-02-08 15:02:35 -05:00
|
|
|
{
|
|
|
|
|
var collectionFolder = (CollectionFolder)item;
|
|
|
|
|
|
2017-03-29 02:26:48 -04:00
|
|
|
return new LocalImageProvider(_fileSystem).GetImages(item, collectionFolder.PhysicalLocations, true, directoryService);
|
2014-02-08 15:02:35 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|