2014-06-30 03:04:50 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2017-05-26 06:48:54 +00:00
|
|
|
|
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2014-02-08 20:02:35 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Controller.IO;
|
2014-02-08 20:02:35 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
namespace MediaBrowser.LocalMetadata.Images
|
2014-02-08 20:02:35 +00:00
|
|
|
|
{
|
|
|
|
|
public class ImagesByNameImageProvider : ILocalImageFileProvider, IHasOrder
|
|
|
|
|
{
|
|
|
|
|
private readonly IFileSystem _fileSystem;
|
|
|
|
|
private readonly IServerConfigurationManager _config;
|
|
|
|
|
|
|
|
|
|
public ImagesByNameImageProvider(IFileSystem fileSystem, IServerConfigurationManager config)
|
|
|
|
|
{
|
|
|
|
|
_fileSystem = fileSystem;
|
|
|
|
|
_config = config;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "Images By Name"; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Supports(IHasImages item)
|
|
|
|
|
{
|
2014-06-06 00:39:02 +00:00
|
|
|
|
return item is CollectionFolder;
|
2014-02-08 20:02:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Order
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// Run after LocalImageProvider, and after CollectionFolderImageProvider
|
|
|
|
|
return 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 18:39:41 +00:00
|
|
|
|
public List<LocalImageInfo> GetImages(IHasImages item, IDirectoryService directoryService)
|
2014-02-08 20:02:35 +00:00
|
|
|
|
{
|
|
|
|
|
var name = _fileSystem.GetValidFilename(item.Name);
|
|
|
|
|
|
|
|
|
|
var path = Path.Combine(_config.ApplicationPaths.GeneralPath, name);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2017-03-29 06:26:48 +00:00
|
|
|
|
return new LocalImageProvider(_fileSystem).GetImages(item, path, false, directoryService);
|
2014-02-08 20:02:35 +00:00
|
|
|
|
}
|
2016-10-30 07:02:23 +00:00
|
|
|
|
catch (IOException)
|
2014-02-08 20:02:35 +00:00
|
|
|
|
{
|
|
|
|
|
return new List<LocalImageInfo>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|