2015-01-11 22:07:19 -07:00
|
|
|
|
using MediaBrowser.Common.IO;
|
2014-02-04 13:19:29 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-06-29 20:04:50 -07:00
|
|
|
|
using MediaBrowser.LocalMetadata.Parsers;
|
2014-05-14 13:55:16 -07:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-02-04 13:19:29 -07:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2015-01-11 22:07:19 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
2014-02-04 13:19:29 -07:00
|
|
|
|
|
2014-06-29 20:04:50 -07:00
|
|
|
|
namespace MediaBrowser.LocalMetadata.Providers
|
2014-02-04 13:19:29 -07:00
|
|
|
|
{
|
2015-01-11 22:07:19 -07:00
|
|
|
|
public class EpisodeXmlProvider : BaseXmlProvider<Episode>
|
2014-02-04 13:19:29 -07:00
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
|
|
|
|
public EpisodeXmlProvider(IFileSystem fileSystem, ILogger logger)
|
|
|
|
|
: base(fileSystem)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-02 10:31:08 -07:00
|
|
|
|
protected override void Fetch(MetadataResult<Episode> result, string path, CancellationToken cancellationToken)
|
2014-02-04 13:19:29 -07:00
|
|
|
|
{
|
2014-02-22 15:40:58 -07:00
|
|
|
|
var images = new List<LocalImageInfo>();
|
2014-05-14 13:55:16 -07:00
|
|
|
|
var chapters = new List<ChapterInfo>();
|
2014-02-22 15:40:58 -07:00
|
|
|
|
|
2015-06-28 18:10:45 -07:00
|
|
|
|
new EpisodeXmlParser(_logger).Fetch(result, images, path, cancellationToken);
|
2014-02-22 15:40:58 -07:00
|
|
|
|
|
|
|
|
|
result.Images = images;
|
2014-02-04 13:19:29 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-03-12 12:56:12 -07:00
|
|
|
|
protected override FileSystemInfo GetXmlFile(ItemInfo info, IDirectoryService directoryService)
|
2014-02-10 13:11:46 -07:00
|
|
|
|
{
|
|
|
|
|
var metadataPath = Path.GetDirectoryName(info.Path);
|
|
|
|
|
metadataPath = Path.Combine(metadataPath, "metadata");
|
|
|
|
|
|
|
|
|
|
var metadataFile = Path.Combine(metadataPath, Path.ChangeExtension(Path.GetFileName(info.Path), ".xml"));
|
|
|
|
|
|
|
|
|
|
return directoryService.GetFile(metadataFile);
|
|
|
|
|
}
|
2014-02-04 13:19:29 -07:00
|
|
|
|
}
|
|
|
|
|
}
|