2014-06-30 03:04:50 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2014-02-03 20:51:28 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
using MediaBrowser.XbmcMetadata.Parsers;
|
2014-02-03 20:51:28 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
2015-10-04 04:23:11 +00:00
|
|
|
|
using CommonIO;
|
2014-02-03 20:51:28 +00:00
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
namespace MediaBrowser.XbmcMetadata.Providers
|
2014-02-03 20:51:28 +00:00
|
|
|
|
{
|
2014-06-30 03:04:50 +00:00
|
|
|
|
public class SeriesNfoProvider : BaseNfoProvider<Series>
|
2014-02-03 20:51:28 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
private readonly IConfigurationManager _config;
|
2016-08-27 04:33:18 +00:00
|
|
|
|
private readonly IProviderManager _providerManager;
|
2014-02-03 20:51:28 +00:00
|
|
|
|
|
2016-08-27 04:33:18 +00:00
|
|
|
|
public SeriesNfoProvider(IFileSystem fileSystem, ILogger logger, IConfigurationManager config, IProviderManager providerManager)
|
2014-02-03 20:51:28 +00:00
|
|
|
|
: base(fileSystem)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
_config = config;
|
2016-08-27 04:33:18 +00:00
|
|
|
|
_providerManager = providerManager;
|
2014-02-03 20:51:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-02 17:31:08 +00:00
|
|
|
|
protected override void Fetch(MetadataResult<Series> result, string path, CancellationToken cancellationToken)
|
2014-02-03 20:51:28 +00:00
|
|
|
|
{
|
2016-08-27 04:33:18 +00:00
|
|
|
|
new SeriesNfoParser(_logger, _config, _providerManager).Fetch(result, path, cancellationToken);
|
2014-02-03 20:51:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
protected override FileSystemMetadata GetXmlFile(ItemInfo info, IDirectoryService directoryService)
|
2014-02-03 20:51:28 +00:00
|
|
|
|
{
|
2014-07-02 04:57:18 +00:00
|
|
|
|
return directoryService.GetFile(Path.Combine(info.Path, "tvshow.nfo"));
|
2014-02-03 20:51:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|