2016-03-27 23:11:27 +02:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2014-02-08 15:02:35 -05:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-02-08 23:52:52 -05:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2014-02-08 15:02:35 -05:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-07-26 13:30:15 -04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.IO;
|
2015-10-04 00:23:11 -04:00
|
|
|
|
using CommonIO;
|
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 InternalMetadataFolderImageProvider : ILocalImageFileProvider, IHasOrder
|
|
|
|
|
|
{
|
|
|
|
|
|
private readonly IServerConfigurationManager _config;
|
2014-07-26 13:30:15 -04:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-02-08 15:02:35 -05:00
|
|
|
|
|
2014-07-26 13:30:15 -04:00
|
|
|
|
public InternalMetadataFolderImageProvider(IServerConfigurationManager config, IFileSystem fileSystem)
|
2014-02-08 15:02:35 -05:00
|
|
|
|
{
|
|
|
|
|
|
_config = config;
|
2014-07-26 13:30:15 -04:00
|
|
|
|
_fileSystem = fileSystem;
|
2014-02-08 15:02:35 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
|
|
{
|
|
|
|
|
|
get { return "Internal Images"; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public bool Supports(IHasImages item)
|
|
|
|
|
|
{
|
2015-04-10 21:42:37 -04:00
|
|
|
|
if (item is Photo)
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-02-08 15:02:35 -05:00
|
|
|
|
if (!item.IsSaveLocalMetadataEnabled())
|
|
|
|
|
|
{
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-02-08 23:52:52 -05:00
|
|
|
|
// Extracted images will be saved in here
|
|
|
|
|
|
if (item is Audio)
|
|
|
|
|
|
{
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-10-19 23:04:45 -04:00
|
|
|
|
if (item.SupportsLocalMetadata && !item.AlwaysScanInternalMetadataPath)
|
2014-02-08 15:02:35 -05:00
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2015-10-30 12:45:22 -04:00
|
|
|
|
|
2014-02-08 15:02:35 -05:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int Order
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
// Make sure this is last so that all other locations are scanned first
|
|
|
|
|
|
return 1000;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-02-10 13:39:41 -05:00
|
|
|
|
public List<LocalImageInfo> GetImages(IHasImages item, IDirectoryService directoryService)
|
2014-02-08 15:02:35 -05:00
|
|
|
|
{
|
2014-09-28 11:27:26 -04:00
|
|
|
|
var path = item.GetInternalMetadataPath();
|
|
|
|
|
|
|
2014-02-08 15:02:35 -05:00
|
|
|
|
try
|
|
|
|
|
|
{
|
2015-10-30 12:45:22 -04:00
|
|
|
|
return new LocalImageProvider(_fileSystem).GetImages(item, path, directoryService);
|
2014-02-08 15:02:35 -05:00
|
|
|
|
}
|
|
|
|
|
|
catch (DirectoryNotFoundException)
|
|
|
|
|
|
{
|
|
|
|
|
|
return new List<LocalImageInfo>();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|