2019-01-13 20:03:10 +00:00
|
|
|
using System.IO;
|
2019-01-13 19:26:56 +00:00
|
|
|
using System.Threading;
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2014-02-03 05:35:43 +00:00
|
|
|
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-03 05:35:43 +00:00
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
namespace MediaBrowser.XbmcMetadata.Providers
|
2014-02-03 05:35:43 +00:00
|
|
|
{
|
2020-02-23 11:11:43 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Nfo provider for seasons.
|
|
|
|
/// </summary>
|
2014-06-30 03:04:50 +00:00
|
|
|
public class SeasonNfoProvider : BaseNfoProvider<Season>
|
2014-02-03 05:35:43 +00:00
|
|
|
{
|
2020-06-06 00:15:56 +00:00
|
|
|
private readonly ILogger<SeasonNfoProvider> _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-03 05:35:43 +00:00
|
|
|
|
2020-02-23 11:11:43 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="SeasonNfoProvider"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="logger">The logger.</param>
|
|
|
|
/// <param name="fileSystem">The file system.</param>
|
|
|
|
/// <param name="config">the configuration manager.</param>
|
|
|
|
/// <param name="providerManager">The provider manager.</param>
|
|
|
|
public SeasonNfoProvider(
|
2020-03-03 22:07:10 +00:00
|
|
|
ILogger<SeasonNfoProvider> logger,
|
2020-02-23 11:11:43 +00:00
|
|
|
IFileSystem fileSystem,
|
|
|
|
IConfigurationManager config,
|
|
|
|
IProviderManager providerManager)
|
2014-02-03 05:35:43 +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-03 05:35:43 +00:00
|
|
|
}
|
|
|
|
|
2019-08-18 17:54:07 +00:00
|
|
|
/// <inheritdoc />
|
2015-08-02 17:31:08 +00:00
|
|
|
protected override void Fetch(MetadataResult<Season> result, string path, CancellationToken cancellationToken)
|
2014-02-03 05:35:43 +00:00
|
|
|
{
|
2019-02-01 16:43:31 +00:00
|
|
|
new SeasonNfoParser(_logger, _config, _providerManager).Fetch(result, path, cancellationToken);
|
2014-02-03 05:35:43 +00:00
|
|
|
}
|
|
|
|
|
2019-08-18 17:54:07 +00:00
|
|
|
/// <inheritdoc />
|
2015-10-04 03:38:46 +00:00
|
|
|
protected override FileSystemMetadata GetXmlFile(ItemInfo info, IDirectoryService directoryService)
|
2019-02-01 16:43:31 +00:00
|
|
|
=> directoryService.GetFile(Path.Combine(info.Path, "season.nfo"));
|
2014-02-03 05:35:43 +00:00
|
|
|
}
|
|
|
|
}
|