jellyfin/MediaBrowser.Providers/Games/GameXmlProvider.cs

46 lines
1.4 KiB
C#
Raw Normal View History

2014-02-02 14:36:31 +01:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Logging;
using System.IO;
using System.Threading;
namespace MediaBrowser.Providers.Games
{
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;
var specificFile = Path.Combine(directoryPath, Path.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
}
}
}