jellyfin/MediaBrowser.LocalMetadata/Images/InternalMetadataFolderImageProvider.cs

72 lines
1.9 KiB
C#
Raw Normal View History

2014-07-26 19:30:15 +02:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.Configuration;
2014-02-08 21:02:35 +01:00
using MediaBrowser.Controller.Entities;
2014-02-09 05:52:52 +01:00
using MediaBrowser.Controller.Entities.Audio;
2014-02-08 21:02:35 +01:00
using MediaBrowser.Controller.Providers;
2014-07-26 19:30:15 +02:00
using System.Collections.Generic;
using System.IO;
2014-02-08 21:02:35 +01:00
namespace MediaBrowser.LocalMetadata.Images
2014-02-08 21:02:35 +01:00
{
public class InternalMetadataFolderImageProvider : ILocalImageFileProvider, IHasOrder
{
private readonly IServerConfigurationManager _config;
2014-07-26 19:30:15 +02:00
private readonly IFileSystem _fileSystem;
2014-02-08 21:02:35 +01:00
2014-07-26 19:30:15 +02:00
public InternalMetadataFolderImageProvider(IServerConfigurationManager config, IFileSystem fileSystem)
2014-02-08 21:02:35 +01:00
{
_config = config;
2014-07-26 19:30:15 +02:00
_fileSystem = fileSystem;
2014-02-08 21:02:35 +01:00
}
public string Name
{
get { return "Internal Images"; }
}
public bool Supports(IHasImages item)
{
if (!item.IsSaveLocalMetadataEnabled())
{
return true;
}
2014-02-09 05:52:52 +01:00
// Extracted images will be saved in here
if (item is Audio)
{
return true;
}
2014-02-10 21:11:46 +01:00
if (item.SupportsLocalMetadata)
2014-02-08 21:02:35 +01:00
{
return false;
}
return true;
}
public int Order
{
get
{
// Make sure this is last so that all other locations are scanned first
return 1000;
}
}
2014-02-10 19:39:41 +01:00
public List<LocalImageInfo> GetImages(IHasImages item, IDirectoryService directoryService)
2014-02-08 21:02:35 +01:00
{
var path = _config.ApplicationPaths.GetInternalMetadataPath(item.Id);
try
{
2014-07-26 19:30:15 +02:00
return new LocalImageProvider(_fileSystem).GetImages(item, path, directoryService);
2014-02-08 21:02:35 +01:00
}
catch (DirectoryNotFoundException)
{
return new List<LocalImageInfo>();
}
}
}
}