2014-06-30 03:04:50 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
|
using MediaBrowser.Common.IO;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-05-14 20:55:16 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
using MediaBrowser.XbmcMetadata.Parsers;
|
2014-02-22 22:40:58 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
|
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;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
public EpisodeNfoProvider(IFileSystem fileSystem, ILogger logger, IConfigurationManager config)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
: base(fileSystem)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
_config = config;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-09 04:52:52 +00:00
|
|
|
|
protected override void Fetch(LocalMetadataResult<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>();
|
2014-05-14 20:55:16 +00:00
|
|
|
|
var chapters = new List<ChapterInfo>();
|
2014-02-22 22:40:58 +00:00
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
new EpisodeNfoParser(_logger, _config).Fetch(result.Item, images, chapters, path, cancellationToken);
|
2014-02-22 22:40:58 +00:00
|
|
|
|
|
|
|
|
|
result.Images = images;
|
2014-05-14 20:55:16 +00:00
|
|
|
|
result.Chapters = chapters;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-03-12 19:56:12 +00:00
|
|
|
|
protected override FileSystemInfo 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
|
|
|
|
}
|
|
|
|
|
}
|