2016-03-27 21:11:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
using MediaBrowser.LocalMetadata.Parsers;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2014-07-26 17:30:15 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
2015-10-04 04:23:11 +00:00
|
|
|
|
using CommonIO;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
namespace MediaBrowser.LocalMetadata.Providers
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
public class MovieXmlProvider : BaseXmlProvider<Movie>
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
2016-08-27 04:33:18 +00:00
|
|
|
|
private readonly IProviderManager _providerManager;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
2016-08-27 04:33:18 +00:00
|
|
|
|
public MovieXmlProvider(IFileSystem fileSystem, ILogger logger, IProviderManager providerManager)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
: base(fileSystem)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
2016-08-27 04:33:18 +00:00
|
|
|
|
_providerManager = providerManager;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-02 17:31:08 +00:00
|
|
|
|
protected override void Fetch(MetadataResult<Movie> result, string path, CancellationToken cancellationToken)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
2016-08-27 04:33:18 +00:00
|
|
|
|
new MovieXmlParser(_logger, _providerManager).Fetch(result, path, cancellationToken);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
protected override FileSystemMetadata GetXmlFile(ItemInfo info, IDirectoryService directoryService)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
return GetXmlFileInfo(info, FileSystem);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
public static FileSystemMetadata GetXmlFileInfo(ItemInfo info, IFileSystem fileSystem)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
var fileInfo = fileSystem.GetFileSystemInfo(info.Path);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
var directoryInfo = fileInfo.IsDirectory ? fileInfo : fileSystem.GetDirectoryInfo(Path.GetDirectoryName(info.Path));
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
|
|
|
|
var directoryPath = directoryInfo.FullName;
|
|
|
|
|
|
2014-07-26 17:30:15 +00:00
|
|
|
|
var specificFile = Path.Combine(directoryPath, fileSystem.GetFileNameWithoutExtension(info.Path) + ".xml");
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
var file = fileSystem.GetFileInfo(specificFile);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
2014-04-20 05:21:08 +00:00
|
|
|
|
// In a mixed folder, only {moviename}.xml is supported
|
|
|
|
|
if (info.IsInMixedFolder)
|
|
|
|
|
{
|
|
|
|
|
return file;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If in it's own folder, prefer movie.xml, but allow the specific file as well
|
2015-10-04 03:38:46 +00:00
|
|
|
|
var movieFile = fileSystem.GetFileInfo(Path.Combine(directoryPath, "movie.xml"));
|
2014-04-20 05:21:08 +00:00
|
|
|
|
|
|
|
|
|
return movieFile.Exists ? movieFile : file;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|