2019-01-13 20:03:10 +00:00
|
|
|
using System.Collections.Generic;
|
2014-02-04 20:19:29 +00:00
|
|
|
using System.IO;
|
|
|
|
using System.Threading;
|
2019-01-13 19:26:56 +00:00
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2016-10-25 19:02:04 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
2019-01-13 19:26:56 +00:00
|
|
|
using MediaBrowser.XbmcMetadata.Parsers;
|
|
|
|
using Microsoft.Extensions.Logging;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
namespace MediaBrowser.XbmcMetadata.Providers
|
2014-02-04 20:19:29 +00:00
|
|
|
{
|
2014-06-30 03:04:50 +00:00
|
|
|
public class EpisodeNfoProvider : BaseNfoProvider<Episode>
|
2014-02-04 20:19:29 +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-04 20:19:29 +00:00
|
|
|
|
2019-02-01 16:43:31 +00:00
|
|
|
public EpisodeNfoProvider(IFileSystem fileSystem, ILogger logger, IConfigurationManager config, IProviderManager providerManager)
|
2014-02-04 20:19:29 +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-04 20:19:29 +00:00
|
|
|
}
|
|
|
|
|
2015-08-02 17:31:08 +00:00
|
|
|
protected override void Fetch(MetadataResult<Episode> result, string path, CancellationToken cancellationToken)
|
2014-02-04 20:19:29 +00:00
|
|
|
{
|
2014-02-22 22:40:58 +00:00
|
|
|
var images = new List<LocalImageInfo>();
|
|
|
|
|
2019-02-01 16:43:31 +00:00
|
|
|
new EpisodeNfoParser(_logger, _config, _providerManager).Fetch(result, images, path, cancellationToken);
|
2014-02-22 22:40:58 +00:00
|
|
|
|
|
|
|
result.Images = images;
|
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-10 20:11:46 +00:00
|
|
|
{
|
2014-06-30 03:04:50 +00:00
|
|
|
var path = Path.ChangeExtension(info.Path, ".nfo");
|
2014-02-10 20:11:46 +00:00
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
return directoryService.GetFile(path);
|
2014-02-10 20:11:46 +00:00
|
|
|
}
|
2014-02-04 20:19:29 +00:00
|
|
|
}
|
|
|
|
}
|