2022-08-02 17:46:38 +02:00
|
|
|
using System.Globalization;
|
2019-01-13 20:26:56 +01:00
|
|
|
using System.Xml;
|
2024-05-16 19:06:11 +02:00
|
|
|
using Emby.Naming.TV;
|
2019-01-13 20:26:56 +01:00
|
|
|
using MediaBrowser.Common.Configuration;
|
2014-06-29 23:04:50 -04:00
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2023-10-06 14:53:05 -04:00
|
|
|
using MediaBrowser.Controller.Extensions;
|
2013-03-03 01:58:04 -05:00
|
|
|
using MediaBrowser.Controller.Library;
|
2015-06-28 21:10:45 -04:00
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-02-20 20:33:05 -05:00
|
|
|
using MediaBrowser.Model.Entities;
|
2019-01-13 20:26:56 +01:00
|
|
|
using Microsoft.Extensions.Logging;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
2014-06-29 23:04:50 -04:00
|
|
|
namespace MediaBrowser.XbmcMetadata.Parsers
|
2013-02-20 20:33:05 -05:00
|
|
|
{
|
2020-02-23 12:11:43 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Nfo parser for series.
|
|
|
|
|
/// </summary>
|
2014-06-29 23:04:50 -04:00
|
|
|
public class SeriesNfoParser : BaseNfoParser<Series>
|
2013-02-20 20:33:05 -05:00
|
|
|
{
|
2020-02-23 12:11:43 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="SeriesNfoParser"/> class.
|
|
|
|
|
/// </summary>
|
2021-02-09 12:42:55 +01:00
|
|
|
/// <param name="logger">Instance of the <see cref="ILogger"/> interface.</param>
|
|
|
|
|
/// <param name="config">Instance of the <see cref="IConfigurationManager"/> interface.</param>
|
|
|
|
|
/// <param name="providerManager">Instance of the <see cref="IProviderManager"/> interface.</param>
|
|
|
|
|
/// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param>
|
|
|
|
|
/// <param name="userDataManager">Instance of the <see cref="IUserDataManager"/> interface.</param>
|
2021-02-27 22:46:03 +01:00
|
|
|
/// <param name="directoryService">Instance of the <see cref="IDirectoryService"/> interface.</param>
|
2021-02-09 12:42:55 +01:00
|
|
|
public SeriesNfoParser(
|
|
|
|
|
ILogger logger,
|
|
|
|
|
IConfigurationManager config,
|
|
|
|
|
IProviderManager providerManager,
|
|
|
|
|
IUserManager userManager,
|
2021-02-27 22:46:03 +01:00
|
|
|
IUserDataManager userDataManager,
|
|
|
|
|
IDirectoryService directoryService)
|
|
|
|
|
: base(logger, config, providerManager, userManager, userDataManager, directoryService)
|
2019-08-18 19:54:07 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2019-01-13 21:31:14 +01:00
|
|
|
protected override bool SupportsUrlAfterClosingXmlTag => true;
|
2017-05-10 14:02:08 -04:00
|
|
|
|
2019-08-18 19:54:07 +02:00
|
|
|
/// <inheritdoc />
|
2015-08-02 13:31:08 -04:00
|
|
|
protected override void FetchDataFromXmlNode(XmlReader reader, MetadataResult<Series> itemResult)
|
2013-02-20 20:33:05 -05:00
|
|
|
{
|
2015-06-28 21:10:45 -04:00
|
|
|
var item = itemResult.Item;
|
|
|
|
|
|
2013-02-20 20:33:05 -05:00
|
|
|
switch (reader.Name)
|
|
|
|
|
{
|
|
|
|
|
case "id":
|
|
|
|
|
{
|
2020-12-31 12:09:25 +01:00
|
|
|
string? imdbId = reader.GetAttribute("IMDB");
|
|
|
|
|
string? tmdbId = reader.GetAttribute("TMDB");
|
|
|
|
|
string? tvdbId = reader.GetAttribute("TVDB");
|
2013-02-20 20:33:05 -05:00
|
|
|
|
2016-03-17 23:40:38 -04:00
|
|
|
if (string.IsNullOrWhiteSpace(tvdbId))
|
|
|
|
|
{
|
|
|
|
|
tvdbId = reader.ReadElementContentAsString();
|
|
|
|
|
}
|
2020-02-23 12:11:43 +01:00
|
|
|
|
2016-03-17 23:40:38 -04:00
|
|
|
if (!string.IsNullOrWhiteSpace(imdbId))
|
|
|
|
|
{
|
2020-06-06 20:17:49 +01:00
|
|
|
item.SetProviderId(MetadataProvider.Imdb, imdbId);
|
2016-03-17 23:40:38 -04:00
|
|
|
}
|
2020-02-23 12:11:43 +01:00
|
|
|
|
2016-03-17 23:40:38 -04:00
|
|
|
if (!string.IsNullOrWhiteSpace(tmdbId))
|
|
|
|
|
{
|
2020-06-06 20:17:49 +01:00
|
|
|
item.SetProviderId(MetadataProvider.Tmdb, tmdbId);
|
2016-03-17 23:40:38 -04:00
|
|
|
}
|
2020-02-23 12:11:43 +01:00
|
|
|
|
2016-03-17 23:40:38 -04:00
|
|
|
if (!string.IsNullOrWhiteSpace(tvdbId))
|
|
|
|
|
{
|
2020-06-06 20:17:49 +01:00
|
|
|
item.SetProviderId(MetadataProvider.Tvdb, tvdbId);
|
2016-03-17 23:40:38 -04:00
|
|
|
}
|
2020-02-23 12:11:43 +01:00
|
|
|
|
2016-03-17 23:40:38 -04:00
|
|
|
break;
|
|
|
|
|
}
|
2020-02-23 12:11:43 +01:00
|
|
|
|
2017-08-13 16:15:07 -04:00
|
|
|
case "airs_dayofweek":
|
2023-10-06 14:53:05 -04:00
|
|
|
item.AirDays = TVUtils.GetAirDays(reader.ReadElementContentAsString());
|
|
|
|
|
break;
|
2017-08-13 16:15:07 -04:00
|
|
|
case "airs_time":
|
2023-10-06 14:53:05 -04:00
|
|
|
item.AirTime = reader.ReadNormalizedString();
|
|
|
|
|
break;
|
2014-06-29 23:04:50 -04:00
|
|
|
case "status":
|
2013-02-20 20:33:05 -05:00
|
|
|
{
|
|
|
|
|
var status = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(status))
|
|
|
|
|
{
|
2024-05-16 19:06:11 +02:00
|
|
|
if (TvParserHelpers.TryParseSeriesStatus(status, out var seriesStatus))
|
2013-02-20 20:33:05 -05:00
|
|
|
{
|
|
|
|
|
item.Status = seriesStatus;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-11-09 22:29:33 +01:00
|
|
|
Logger.LogInformation("Unrecognized series status: {Status}", status);
|
2013-02-20 20:33:05 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-20 20:12:52 +02:00
|
|
|
// Season names are processed by SeriesNfoSeasonParser
|
2022-08-02 17:46:38 +02:00
|
|
|
case "namedseason":
|
2024-05-19 18:36:18 +02:00
|
|
|
reader.Skip();
|
2024-05-18 20:41:04 +02:00
|
|
|
break;
|
2013-02-20 20:33:05 -05:00
|
|
|
default:
|
2015-06-28 21:10:45 -04:00
|
|
|
base.FetchDataFromXmlNode(reader, itemResult);
|
2013-02-20 20:33:05 -05:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|