jellyfin/MediaBrowser.LocalMetadata/Providers/GameXmlProvider.cs

47 lines
1.5 KiB
C#
Raw Normal View History

using System.IO;
using System.Threading;
using MediaBrowser.Common.IO;
2014-02-02 14:36:31 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Providers;
using MediaBrowser.LocalMetadata.Parsers;
2014-02-02 14:36:31 +01:00
using MediaBrowser.Model.Logging;
namespace MediaBrowser.LocalMetadata.Providers
2014-02-02 14:36:31 +01:00
{
public class GameXmlProvider : BaseXmlProvider<Game>
2014-02-02 14:36:31 +01:00
{
private readonly ILogger _logger;
public GameXmlProvider(IFileSystem fileSystem, ILogger logger)
: base(fileSystem)
{
_logger = logger;
}
2014-02-09 05:52:52 +01:00
protected override void Fetch(LocalMetadataResult<Game> result, string path, CancellationToken cancellationToken)
2014-02-02 14:36:31 +01:00
{
2014-02-09 05:52:52 +01:00
new GameXmlParser(_logger).Fetch(result.Item, path, cancellationToken);
2014-02-02 14:36:31 +01:00
}
protected override FileSystemInfo GetXmlFile(ItemInfo info, IDirectoryService directoryService)
2014-02-02 14:36:31 +01:00
{
var fileInfo = FileSystem.GetFileSystemInfo(info.Path);
2014-02-02 14:36:31 +01:00
var directoryInfo = fileInfo as DirectoryInfo;
if (directoryInfo == null)
{
directoryInfo = new DirectoryInfo(Path.GetDirectoryName(info.Path));
2014-02-02 14:36:31 +01:00
}
var directoryPath = directoryInfo.FullName;
2014-07-26 19:30:15 +02:00
var specificFile = Path.Combine(directoryPath, FileSystem.GetFileNameWithoutExtension(info.Path) + ".xml");
2014-02-02 14:36:31 +01:00
var file = new FileInfo(specificFile);
return info.IsInMixedFolder || file.Exists ? file : new FileInfo(Path.Combine(directoryPath, "game.xml"));
2014-02-02 14:36:31 +01:00
}
}
}