2019-01-13 20:03:10 +00:00
|
|
|
using System;
|
2019-01-13 19:26:56 +00:00
|
|
|
using System.Xml;
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2014-06-30 03:04:50 +00:00
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2013-03-03 06:58:04 +00:00
|
|
|
using MediaBrowser.Controller.Library;
|
2015-06-29 01:10:45 +00:00
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-02-21 01:33:05 +00:00
|
|
|
using MediaBrowser.Model.Entities;
|
2019-01-13 19:26:56 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
namespace MediaBrowser.XbmcMetadata.Parsers
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2020-02-23 11:11:43 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Nfo parser for series.
|
|
|
|
/// </summary>
|
2014-06-30 03:04:50 +00:00
|
|
|
public class SeriesNfoParser : BaseNfoParser<Series>
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2020-02-23 11:11:43 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="SeriesNfoParser"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="logger">The logger.</param>
|
|
|
|
/// <param name="config">the configuration manager.</param>
|
|
|
|
/// <param name="providerManager">The provider manager.</param>
|
2019-08-18 17:54:07 +00:00
|
|
|
public SeriesNfoParser(ILogger logger, IConfigurationManager config, IProviderManager providerManager)
|
|
|
|
: base(logger, config, providerManager)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2019-01-13 20:31:14 +00:00
|
|
|
protected override bool SupportsUrlAfterClosingXmlTag => true;
|
2017-05-10 18:02:08 +00:00
|
|
|
|
2019-08-18 17:54:07 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-13 20:31:14 +00:00
|
|
|
protected override string MovieDbParserSearchString => "themoviedb.org/tv/";
|
2017-05-10 18:02:08 +00:00
|
|
|
|
2019-08-18 17:54:07 +00:00
|
|
|
/// <inheritdoc />
|
2015-08-02 17:31:08 +00:00
|
|
|
protected override void FetchDataFromXmlNode(XmlReader reader, MetadataResult<Series> itemResult)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2015-06-29 01:10:45 +00:00
|
|
|
var item = itemResult.Item;
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
switch (reader.Name)
|
|
|
|
{
|
|
|
|
case "id":
|
|
|
|
{
|
2016-03-18 03:40:38 +00:00
|
|
|
string imdbId = reader.GetAttribute("IMDB");
|
|
|
|
string tmdbId = reader.GetAttribute("TMDB");
|
|
|
|
string tvdbId = reader.GetAttribute("TVDB");
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2016-03-18 03:40:38 +00:00
|
|
|
if (string.IsNullOrWhiteSpace(tvdbId))
|
|
|
|
{
|
|
|
|
tvdbId = reader.ReadElementContentAsString();
|
|
|
|
}
|
2020-02-23 11:11:43 +00:00
|
|
|
|
2016-03-18 03:40:38 +00:00
|
|
|
if (!string.IsNullOrWhiteSpace(imdbId))
|
|
|
|
{
|
|
|
|
item.SetProviderId(MetadataProviders.Imdb, imdbId);
|
|
|
|
}
|
2020-02-23 11:11:43 +00:00
|
|
|
|
2016-03-18 03:40:38 +00:00
|
|
|
if (!string.IsNullOrWhiteSpace(tmdbId))
|
|
|
|
{
|
|
|
|
item.SetProviderId(MetadataProviders.Tmdb, tmdbId);
|
|
|
|
}
|
2020-02-23 11:11:43 +00:00
|
|
|
|
2016-03-18 03:40:38 +00:00
|
|
|
if (!string.IsNullOrWhiteSpace(tvdbId))
|
|
|
|
{
|
2016-03-26 05:44:01 +00:00
|
|
|
item.SetProviderId(MetadataProviders.Tvdb, tvdbId);
|
2016-03-18 03:40:38 +00:00
|
|
|
}
|
2020-02-23 11:11:43 +00:00
|
|
|
|
2016-03-18 03:40:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-02-23 11:11:43 +00:00
|
|
|
|
2017-08-13 20:15:07 +00:00
|
|
|
case "airs_dayofweek":
|
2019-01-13 19:26:56 +00:00
|
|
|
{
|
|
|
|
item.AirDays = TVUtils.GetAirDays(reader.ReadElementContentAsString());
|
|
|
|
break;
|
|
|
|
}
|
2017-08-13 20:15:07 +00:00
|
|
|
|
|
|
|
case "airs_time":
|
|
|
|
{
|
2019-01-13 19:26:56 +00:00
|
|
|
var val = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(val))
|
|
|
|
{
|
|
|
|
item.AirTime = val;
|
|
|
|
}
|
2020-02-23 11:11:43 +00:00
|
|
|
|
2019-01-13 19:26:56 +00:00
|
|
|
break;
|
2017-08-13 20:15:07 +00:00
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
case "status":
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
var status = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(status))
|
|
|
|
{
|
2019-01-13 20:46:33 +00:00
|
|
|
if (Enum.TryParse(status, true, out SeriesStatus seriesStatus))
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
item.Status = seriesStatus;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-13 13:18:25 +00:00
|
|
|
Logger.LogInformation("Unrecognized series status: " + status);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2015-06-29 01:10:45 +00:00
|
|
|
base.FetchDataFromXmlNode(reader, itemResult);
|
2013-02-21 01:33:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|