2014-06-30 03:04:50 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2013-06-09 16:47:28 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-02-21 20:26:35 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using System;
|
2014-02-09 04:52:52 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-11-17 15:27:48 +00:00
|
|
|
|
using System.Globalization;
|
2013-08-12 19:18:31 +00:00
|
|
|
|
using System.Threading;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Xml;
|
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
namespace MediaBrowser.XbmcMetadata.Parsers
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-06-30 03:04:50 +00:00
|
|
|
|
public class EpisodeNfoParser : BaseNfoParser<Episode>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2016-08-27 04:33:18 +00:00
|
|
|
|
public EpisodeNfoParser(ILogger logger, IConfigurationManager config, IProviderManager providerManager) : base(logger, config, providerManager)
|
2013-02-21 20:26:35 +00:00
|
|
|
|
{
|
2013-08-12 19:18:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-02 17:31:08 +00:00
|
|
|
|
public void Fetch(MetadataResult<Episode> item,
|
2014-05-14 20:55:16 +00:00
|
|
|
|
List<LocalImageInfo> images,
|
|
|
|
|
string metadataFile,
|
|
|
|
|
CancellationToken cancellationToken)
|
2013-08-12 19:18:31 +00:00
|
|
|
|
{
|
2015-06-29 01:10:45 +00:00
|
|
|
|
Fetch(item, metadataFile, cancellationToken);
|
2013-02-21 20:26:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-17 15:27:48 +00:00
|
|
|
|
private static readonly CultureInfo UsCulture = new CultureInfo("en-US");
|
2013-12-08 20:33:24 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fetches the data from XML node.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="reader">The reader.</param>
|
2015-06-29 01:10:45 +00:00
|
|
|
|
/// <param name="itemResult">The item result.</param>
|
2015-08-02 17:31:08 +00:00
|
|
|
|
protected override void FetchDataFromXmlNode(XmlReader reader, MetadataResult<Episode> 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)
|
|
|
|
|
{
|
2014-06-30 03:04:50 +00:00
|
|
|
|
case "season":
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
var number = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(number))
|
|
|
|
|
{
|
|
|
|
|
int num;
|
|
|
|
|
|
|
|
|
|
if (int.TryParse(number, out num))
|
|
|
|
|
{
|
|
|
|
|
item.ParentIndexNumber = num;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
case "episode":
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
var number = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(number))
|
|
|
|
|
{
|
|
|
|
|
int num;
|
|
|
|
|
|
|
|
|
|
if (int.TryParse(number, out num))
|
|
|
|
|
{
|
|
|
|
|
item.IndexNumber = num;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
case "episodenumberend":
|
2013-10-25 14:26:22 +00:00
|
|
|
|
{
|
|
|
|
|
var number = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(number))
|
|
|
|
|
{
|
|
|
|
|
int num;
|
|
|
|
|
|
|
|
|
|
if (int.TryParse(number, out num))
|
|
|
|
|
{
|
|
|
|
|
item.IndexNumberEnd = num;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-10 20:42:42 +00:00
|
|
|
|
case "absolute_number":
|
|
|
|
|
{
|
|
|
|
|
var val = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(val))
|
|
|
|
|
{
|
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
|
|
// int.TryParse is local aware, so it can be probamatic, force us culture
|
|
|
|
|
if (int.TryParse(val, NumberStyles.Integer, UsCulture, out rval))
|
|
|
|
|
{
|
|
|
|
|
item.AbsoluteEpisodeNumber = rval;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
2013-12-08 18:07:45 +00:00
|
|
|
|
case "DVD_episodenumber":
|
|
|
|
|
{
|
|
|
|
|
var number = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(number))
|
|
|
|
|
{
|
2013-12-08 20:33:24 +00:00
|
|
|
|
float num;
|
2013-12-08 18:07:45 +00:00
|
|
|
|
|
2013-12-08 20:33:24 +00:00
|
|
|
|
if (float.TryParse(number, NumberStyles.Any, UsCulture, out num))
|
2013-12-08 18:07:45 +00:00
|
|
|
|
{
|
2013-12-08 22:16:59 +00:00
|
|
|
|
item.DvdEpisodeNumber = num;
|
2013-12-08 18:07:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case "DVD_season":
|
|
|
|
|
{
|
|
|
|
|
var number = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(number))
|
|
|
|
|
{
|
2013-12-08 20:33:24 +00:00
|
|
|
|
float num;
|
2013-12-08 18:07:45 +00:00
|
|
|
|
|
2013-12-08 20:33:24 +00:00
|
|
|
|
if (float.TryParse(number, NumberStyles.Any, UsCulture, out num))
|
2013-12-08 18:07:45 +00:00
|
|
|
|
{
|
2013-12-08 20:33:24 +00:00
|
|
|
|
item.DvdSeasonNumber = Convert.ToInt32(num);
|
2013-12-08 18:07:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-17 15:27:48 +00:00
|
|
|
|
case "airsbefore_episode":
|
2013-11-15 21:31:33 +00:00
|
|
|
|
{
|
2013-11-17 15:27:48 +00:00
|
|
|
|
var val = reader.ReadElementContentAsString();
|
2013-11-15 21:31:33 +00:00
|
|
|
|
|
2013-11-17 15:27:48 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(val))
|
2013-11-15 21:31:33 +00:00
|
|
|
|
{
|
2013-11-17 15:27:48 +00:00
|
|
|
|
int rval;
|
2013-11-15 21:31:33 +00:00
|
|
|
|
|
2013-11-17 15:27:48 +00:00
|
|
|
|
// int.TryParse is local aware, so it can be probamatic, force us culture
|
|
|
|
|
if (int.TryParse(val, NumberStyles.Integer, UsCulture, out rval))
|
2013-11-15 21:31:33 +00:00
|
|
|
|
{
|
2013-11-17 15:27:48 +00:00
|
|
|
|
item.AirsBeforeEpisodeNumber = rval;
|
2013-11-15 21:31:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-11-17 15:27:48 +00:00
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case "airsafter_season":
|
|
|
|
|
{
|
|
|
|
|
var val = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(val))
|
|
|
|
|
{
|
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
|
|
// int.TryParse is local aware, so it can be probamatic, force us culture
|
|
|
|
|
if (int.TryParse(val, NumberStyles.Integer, UsCulture, out rval))
|
|
|
|
|
{
|
|
|
|
|
item.AirsAfterSeasonNumber = rval;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case "airsbefore_season":
|
|
|
|
|
{
|
|
|
|
|
var val = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(val))
|
|
|
|
|
{
|
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
|
|
// int.TryParse is local aware, so it can be probamatic, force us culture
|
|
|
|
|
if (int.TryParse(val, NumberStyles.Integer, UsCulture, out rval))
|
|
|
|
|
{
|
|
|
|
|
item.AirsBeforeSeasonNumber = rval;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-15 21:31:33 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-24 20:07:35 +00:00
|
|
|
|
case "displayseason":
|
|
|
|
|
{
|
|
|
|
|
var val = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(val))
|
|
|
|
|
{
|
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
|
|
// int.TryParse is local aware, so it can be probamatic, force us culture
|
|
|
|
|
if (int.TryParse(val, NumberStyles.Integer, UsCulture, out rval))
|
|
|
|
|
{
|
2016-08-01 18:16:07 +00:00
|
|
|
|
item.AirsBeforeSeasonNumber = rval;
|
2016-06-24 20:07:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case "displayepisode":
|
|
|
|
|
{
|
|
|
|
|
var val = reader.ReadElementContentAsString();
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(val))
|
|
|
|
|
{
|
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
|
|
// int.TryParse is local aware, so it can be probamatic, force us culture
|
|
|
|
|
if (int.TryParse(val, NumberStyles.Integer, UsCulture, out rval))
|
|
|
|
|
{
|
2016-08-01 18:16:07 +00:00
|
|
|
|
item.AirsBeforeEpisodeNumber = rval;
|
2016-06-24 20:07:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
default:
|
2015-06-29 01:10:45 +00:00
|
|
|
|
base.FetchDataFromXmlNode(reader, itemResult);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|