You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.8 KiB
53 lines
1.8 KiB
using System.Linq;
|
|
using System.Threading;
|
|
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.IO;
|
|
using MediaBrowser.XbmcMetadata.Parsers;
|
|
using MediaBrowser.XbmcMetadata.Savers;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace MediaBrowser.XbmcMetadata.Providers
|
|
{
|
|
public class BaseVideoNfoProvider<T> : BaseNfoProvider<T>
|
|
where T : Video, new()
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly IConfigurationManager _config;
|
|
private readonly IProviderManager _providerManager;
|
|
|
|
public BaseVideoNfoProvider(IFileSystem fileSystem, ILogger logger, IConfigurationManager config, IProviderManager providerManager)
|
|
: base(fileSystem)
|
|
{
|
|
_logger = logger;
|
|
_config = config;
|
|
_providerManager = providerManager;
|
|
}
|
|
|
|
protected override void Fetch(MetadataResult<T> result, string path, CancellationToken cancellationToken)
|
|
{
|
|
var tmpItem = new MetadataResult<Video>
|
|
{
|
|
Item = result.Item
|
|
};
|
|
new MovieNfoParser(_logger, _config, _providerManager).Fetch(tmpItem, path, cancellationToken);
|
|
|
|
result.Item = (T)tmpItem.Item;
|
|
result.People = tmpItem.People;
|
|
|
|
if (tmpItem.UserDataList != null)
|
|
{
|
|
result.UserDataList = tmpItem.UserDataList;
|
|
}
|
|
}
|
|
|
|
protected override FileSystemMetadata GetXmlFile(ItemInfo info, IDirectoryService directoryService)
|
|
{
|
|
return MovieNfoSaver.GetMovieSavePaths(info, FileSystem)
|
|
.Select(directoryService.GetFile)
|
|
.FirstOrDefault(i => i != null);
|
|
}
|
|
}
|
|
}
|