2016-03-27 21:11:27 +00:00
|
|
|
|
using System.Threading;
|
2015-10-04 04:23:11 +00:00
|
|
|
|
using CommonIO;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
using MediaBrowser.LocalMetadata.Parsers;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
namespace MediaBrowser.LocalMetadata.Providers
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
class MusicVideoXmlProvider : BaseXmlProvider<MusicVideo>
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
2016-08-27 04:33:18 +00:00
|
|
|
|
private readonly IProviderManager _providerManager;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
2016-08-27 04:33:18 +00:00
|
|
|
|
public MusicVideoXmlProvider(IFileSystem fileSystem, ILogger logger, IProviderManager providerManager)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
: base(fileSystem)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
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<MusicVideo> result, string path, CancellationToken cancellationToken)
|
2014-02-04 20:19:29 +00:00
|
|
|
|
{
|
2016-08-27 04:33:18 +00:00
|
|
|
|
new MusicVideoXmlParser(_logger, _providerManager).Fetch(result, path, cancellationToken);
|
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-04 20:19:29 +00:00
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
return MovieXmlProvider.GetXmlFileInfo(info, FileSystem);
|
2014-02-04 20:19:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|