jellyfin-server/MediaBrowser.LocalMetadata/Parsers/BaseItemXmlParser.cs

1410 lines
48 KiB
C#
Raw Normal View History

2016-10-25 19:02:04 +00:00
using System;
2013-02-21 01:33:05 +00:00
using System.Collections.Generic;
using System.Globalization;
using System.IO;
2013-02-21 01:33:05 +00:00
using System.Linq;
using System.Text;
2013-02-21 01:33:05 +00:00
using System.Threading;
using System.Xml;
2016-10-25 19:02:04 +00:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
2016-10-30 07:02:23 +00:00
using MediaBrowser.Model.IO;
2016-10-25 19:02:04 +00:00
using MediaBrowser.Model.Logging;
2016-10-30 07:02:23 +00:00
using MediaBrowser.Model.Xml;
2013-02-21 01:33:05 +00:00
2016-10-25 19:02:04 +00:00
namespace MediaBrowser.LocalMetadata.Parsers
2013-02-21 01:33:05 +00:00
{
/// <summary>
/// Provides a base class for parsing metadata xml
/// </summary>
/// <typeparam name="T"></typeparam>
public class BaseItemXmlParser<T>
where T : BaseItem
2013-02-21 01:33:05 +00:00
{
2013-02-21 20:26:35 +00:00
/// <summary>
/// The logger
/// </summary>
protected ILogger Logger { get; private set; }
protected IProviderManager ProviderManager { get; private set; }
private Dictionary<string, string> _validProviderIds;
2013-02-21 20:26:35 +00:00
2016-10-30 07:02:23 +00:00
protected IXmlReaderSettingsFactory XmlReaderSettingsFactory { get; private set; }
protected IFileSystem FileSystem { get; private set; }
2013-02-21 20:26:35 +00:00
/// <summary>
/// Initializes a new instance of the <see cref="BaseItemXmlParser{T}" /> class.
/// </summary>
/// <param name="logger">The logger.</param>
2016-10-30 07:02:23 +00:00
public BaseItemXmlParser(ILogger logger, IProviderManager providerManager, IXmlReaderSettingsFactory xmlReaderSettingsFactory, IFileSystem fileSystem)
2013-02-21 20:26:35 +00:00
{
Logger = logger;
ProviderManager = providerManager;
2016-10-30 07:02:23 +00:00
XmlReaderSettingsFactory = xmlReaderSettingsFactory;
FileSystem = fileSystem;
2013-02-21 20:26:35 +00:00
}
2013-02-21 01:33:05 +00:00
/// <summary>
/// Fetches metadata for an item from one xml file
/// </summary>
/// <param name="item">The item.</param>
/// <param name="metadataFile">The metadata file.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <exception cref="System.ArgumentNullException"></exception>
2015-06-29 01:10:45 +00:00
public void Fetch(MetadataResult<T> item, string metadataFile, CancellationToken cancellationToken)
2013-02-21 01:33:05 +00:00
{
if (item == null)
{
throw new ArgumentNullException();
}
if (string.IsNullOrEmpty(metadataFile))
{
throw new ArgumentNullException();
}
2016-10-30 07:02:23 +00:00
var settings = XmlReaderSettingsFactory.Create(false);
2013-04-15 18:45:58 +00:00
2016-10-30 07:02:23 +00:00
settings.CheckCharacters = false;
settings.IgnoreProcessingInstructions = true;
settings.IgnoreComments = true;
_validProviderIds = _validProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
var idInfos = ProviderManager.GetExternalIdInfos(item.Item);
foreach (var info in idInfos)
{
var id = info.Key + "Id";
if (!_validProviderIds.ContainsKey(id))
{
_validProviderIds.Add(id, info.Key);
}
}
//Additional Mappings
_validProviderIds.Add("IMDB", "Imdb");
//Fetch(item, metadataFile, settings, Encoding.GetEncoding("ISO-8859-1"), cancellationToken);
2016-04-20 04:30:06 +00:00
Fetch(item, metadataFile, settings, Encoding.UTF8, cancellationToken);
}
/// <summary>
/// Fetches the specified item.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="metadataFile">The metadata file.</param>
/// <param name="settings">The settings.</param>
/// <param name="encoding">The encoding.</param>
/// <param name="cancellationToken">The cancellation token.</param>
2015-06-29 01:10:45 +00:00
private void Fetch(MetadataResult<T> item, string metadataFile, XmlReaderSettings settings, Encoding encoding, CancellationToken cancellationToken)
{
2015-07-24 02:48:10 +00:00
item.ResetPeople();
2016-10-30 07:02:23 +00:00
using (Stream fileStream = FileSystem.OpenRead(metadataFile))
2013-02-21 01:33:05 +00:00
{
2016-10-30 07:02:23 +00:00
using (var streamReader = new StreamReader(fileStream, encoding))
2013-02-21 01:33:05 +00:00
{
2016-10-30 07:02:23 +00:00
// Use XmlReader for best performance
using (var reader = XmlReader.Create(streamReader, settings))
2013-02-21 01:33:05 +00:00
{
2016-10-30 07:02:23 +00:00
reader.MoveToContent();
2013-06-06 15:11:51 +00:00
2016-10-30 07:02:23 +00:00
// Loop through each element
while (reader.Read())
2013-06-06 15:11:51 +00:00
{
2016-10-30 07:02:23 +00:00
cancellationToken.ThrowIfCancellationRequested();
if (reader.NodeType == XmlNodeType.Element)
{
FetchDataFromXmlNode(reader, item);
}
2013-06-06 15:11:51 +00:00
}
2013-02-21 01:33:05 +00:00
}
}
}
}
2013-04-22 17:35:42 +00:00
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
2013-02-21 01:33:05 +00:00
/// <summary>
/// Fetches metadata from one Xml Element
/// </summary>
/// <param name="reader">The reader.</param>
2015-06-29 01:10:45 +00:00
/// <param name="itemResult">The item result.</param>
protected virtual void FetchDataFromXmlNode(XmlReader reader, MetadataResult<T> 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)
{
// DateCreated
case "Added":
{
2014-05-02 02:54:33 +00:00
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
DateTime added;
if (DateTime.TryParse(val, out added))
{
item.DateCreated = added.ToUniversalTime();
}
else
{
Logger.Warn("Invalid Added value found: " + val);
}
}
break;
2013-02-21 01:33:05 +00:00
}
2015-03-10 01:30:20 +00:00
case "OriginalTitle":
{
var val = reader.ReadElementContentAsString();
2016-10-31 04:28:23 +00:00
if (!string.IsNullOrEmpty(val))
2015-03-10 01:30:20 +00:00
{
2016-10-31 04:28:23 +00:00
item.OriginalTitle = val;
2015-03-10 01:30:20 +00:00
}
break;
}
2013-02-21 01:33:05 +00:00
case "LocalTitle":
item.Name = reader.ReadElementContentAsString();
break;
case "Type":
{
var type = reader.ReadElementContentAsString();
2013-04-15 18:45:58 +00:00
if (!string.IsNullOrWhiteSpace(type) && !type.Equals("none", StringComparison.OrdinalIgnoreCase))
2013-02-21 01:33:05 +00:00
{
item.DisplayMediaType = type;
}
break;
}
2013-09-22 22:42:21 +00:00
case "CriticRating":
{
var text = reader.ReadElementContentAsString();
2013-11-06 16:06:16 +00:00
2016-10-17 16:35:29 +00:00
if (!string.IsNullOrEmpty(text))
{
2013-11-06 16:06:16 +00:00
float value;
if (float.TryParse(text, NumberStyles.Any, _usCulture, out value))
{
2016-10-17 16:35:29 +00:00
item.CriticRating = value;
2013-11-06 16:06:16 +00:00
}
}
2013-04-22 17:35:42 +00:00
break;
}
2013-09-22 22:42:21 +00:00
2013-04-22 17:35:42 +00:00
case "Budget":
{
var text = reader.ReadElementContentAsString();
2013-12-02 16:16:03 +00:00
var hasBudget = item as IHasBudget;
if (hasBudget != null)
2013-04-22 17:35:42 +00:00
{
2013-12-02 16:16:03 +00:00
double value;
if (double.TryParse(text, NumberStyles.Any, _usCulture, out value))
{
hasBudget.Budget = value;
}
2013-04-22 17:35:42 +00:00
}
break;
}
2013-09-22 22:42:21 +00:00
2013-04-22 17:35:42 +00:00
case "Revenue":
{
var text = reader.ReadElementContentAsString();
2013-12-02 16:16:03 +00:00
var hasBudget = item as IHasBudget;
if (hasBudget != null)
2013-04-22 17:35:42 +00:00
{
2013-12-02 16:16:03 +00:00
double value;
if (double.TryParse(text, NumberStyles.Any, _usCulture, out value))
{
hasBudget.Revenue = value;
}
2013-04-22 17:35:42 +00:00
}
2013-02-21 01:33:05 +00:00
break;
}
2013-09-22 22:42:21 +00:00
2014-01-15 05:01:58 +00:00
case "Metascore":
2013-08-25 19:54:18 +00:00
{
2014-01-15 05:01:58 +00:00
var text = reader.ReadElementContentAsString();
var hasMetascore = item as IHasMetascore;
if (hasMetascore != null)
{
float value;
if (float.TryParse(text, NumberStyles.Any, _usCulture, out value))
{
hasMetascore.Metascore = value;
}
}
break;
}
2013-08-25 19:54:18 +00:00
2014-01-15 05:01:58 +00:00
case "AwardSummary":
{
var text = reader.ReadElementContentAsString();
var hasAwards = item as IHasAwards;
if (hasAwards != null)
2013-08-25 19:54:18 +00:00
{
2014-01-15 05:01:58 +00:00
if (!string.IsNullOrWhiteSpace(text))
{
hasAwards.AwardSummary = text;
}
2013-08-25 19:54:18 +00:00
}
2014-01-15 05:01:58 +00:00
break;
}
case "SortTitle":
{
var val = reader.ReadElementContentAsString();
2014-02-08 20:02:35 +00:00
if (!string.IsNullOrWhiteSpace(val))
{
item.ForcedSortName = val;
}
2013-08-25 19:54:18 +00:00
break;
}
2013-02-21 01:33:05 +00:00
case "Overview":
case "Description":
2013-05-26 19:43:29 +00:00
{
2013-06-01 01:19:38 +00:00
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
item.Overview = val;
}
break;
2013-05-26 19:43:29 +00:00
}
2013-02-21 01:33:05 +00:00
2014-06-24 04:18:02 +00:00
case "ShortOverview":
{
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
2016-10-17 16:35:29 +00:00
item.ShortOverview = val;
2014-06-24 04:18:02 +00:00
}
break;
}
case "CriticRatingSummary":
{
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
2016-10-17 16:35:29 +00:00
item.CriticRatingSummary = val;
}
break;
}
case "Language":
{
var val = reader.ReadElementContentAsString();
2015-09-29 17:35:23 +00:00
item.PreferredMetadataLanguage = val;
2013-02-21 01:33:05 +00:00
break;
}
2015-02-15 03:36:07 +00:00
case "CountryCode":
{
var val = reader.ReadElementContentAsString();
2015-09-29 17:35:23 +00:00
item.PreferredMetadataCountryCode = val;
2015-02-15 03:36:07 +00:00
break;
}
case "PlaceOfBirth":
{
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
var person = item as Person;
if (person != null)
{
2016-10-09 07:18:43 +00:00
person.ProductionLocations = new List<string> { val };
}
}
break;
}
case "Website":
{
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
item.HomePageUrl = val;
}
break;
}
2013-08-04 00:59:23 +00:00
case "LockedFields":
{
var fields = new List<MetadataFields>();
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
var list = val.Split('|').Select(i =>
{
MetadataFields field;
if (Enum.TryParse<MetadataFields>(i, true, out field))
{
return (MetadataFields?)field;
}
return null;
}).Where(i => i.HasValue).Select(i => i.Value);
fields.AddRange(list);
}
item.LockedFields = fields;
break;
}
2013-02-21 01:33:05 +00:00
case "TagLines":
{
2013-08-12 19:18:31 +00:00
using (var subtree = reader.ReadSubtree())
{
FetchFromTaglinesNode(subtree, item);
}
2013-02-21 01:33:05 +00:00
break;
}
2014-05-16 19:16:29 +00:00
case "Countries":
{
using (var subtree = reader.ReadSubtree())
{
FetchFromCountriesNode(subtree, item);
}
break;
}
2013-02-21 01:33:05 +00:00
case "ContentRating":
case "MPAARating":
{
var rating = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(rating))
{
item.OfficialRating = rating;
}
break;
}
case "MPAADescription":
{
var rating = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(rating))
{
item.OfficialRatingDescription = rating;
}
break;
}
2013-06-26 16:08:16 +00:00
2013-02-21 01:33:05 +00:00
case "CustomRating":
{
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
item.CustomRating = val;
}
break;
}
case "RunningTime":
{
var text = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(text))
{
int runtime;
2013-06-16 13:57:26 +00:00
if (int.TryParse(text.Split(' ')[0], NumberStyles.Integer, _usCulture, out runtime))
2013-02-21 01:33:05 +00:00
{
item.RunTimeTicks = TimeSpan.FromMinutes(runtime).Ticks;
2013-02-21 01:33:05 +00:00
}
}
break;
}
case "AspectRatio":
{
var val = reader.ReadElementContentAsString();
var hasAspectRatio = item as IHasAspectRatio;
if (!string.IsNullOrWhiteSpace(val) && hasAspectRatio != null)
2013-02-21 01:33:05 +00:00
{
hasAspectRatio.AspectRatio = val;
2013-02-21 01:33:05 +00:00
}
break;
}
2013-06-27 13:31:49 +00:00
case "LockData":
{
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
2014-04-27 03:42:05 +00:00
item.IsLocked = string.Equals("true", val, StringComparison.OrdinalIgnoreCase);
2013-06-27 13:31:49 +00:00
}
break;
}
2013-02-21 01:33:05 +00:00
case "Network":
{
foreach (var name in SplitNames(reader.ReadElementContentAsString()))
{
if (string.IsNullOrWhiteSpace(name))
{
continue;
}
item.AddStudio(name);
}
break;
}
case "Director":
{
2016-10-25 19:02:04 +00:00
foreach (var p in SplitNames(reader.ReadElementContentAsString()).Select(v => new Controller.Entities.PersonInfo { Name = v.Trim(), Type = PersonType.Director }))
2013-02-21 01:33:05 +00:00
{
if (string.IsNullOrWhiteSpace(p.Name))
{
continue;
}
2015-07-24 02:48:10 +00:00
itemResult.AddPerson(p);
2013-02-21 01:33:05 +00:00
}
break;
}
case "Writer":
{
2016-10-25 19:02:04 +00:00
foreach (var p in SplitNames(reader.ReadElementContentAsString()).Select(v => new Controller.Entities.PersonInfo { Name = v.Trim(), Type = PersonType.Writer }))
2013-02-21 01:33:05 +00:00
{
if (string.IsNullOrWhiteSpace(p.Name))
{
continue;
}
2015-07-24 02:48:10 +00:00
itemResult.AddPerson(p);
2013-02-21 01:33:05 +00:00
}
break;
}
case "Actors":
{
var actors = reader.ReadInnerXml();
if (actors.Contains("<"))
2013-02-21 01:33:05 +00:00
{
// This is one of the mis-named "Actors" full nodes created by MB2
// Create a reader and pass it to the persons node processor
2016-10-30 07:02:23 +00:00
FetchDataFromPersonsNode(XmlReader.Create(new StringReader("<Persons>" + actors + "</Persons>")), itemResult);
}
else
{
// Old-style piped string
2016-10-25 19:02:04 +00:00
foreach (var p in SplitNames(actors).Select(v => new Controller.Entities.PersonInfo { Name = v.Trim(), Type = PersonType.Actor }))
2013-02-21 01:33:05 +00:00
{
if (string.IsNullOrWhiteSpace(p.Name))
{
continue;
}
2015-07-24 02:48:10 +00:00
itemResult.AddPerson(p);
2013-02-21 01:33:05 +00:00
}
}
break;
}
2013-04-13 23:43:41 +00:00
case "GuestStars":
{
2016-10-25 19:02:04 +00:00
foreach (var p in SplitNames(reader.ReadElementContentAsString()).Select(v => new Controller.Entities.PersonInfo { Name = v.Trim(), Type = PersonType.GuestStar }))
2013-04-13 23:43:41 +00:00
{
if (string.IsNullOrWhiteSpace(p.Name))
{
continue;
}
2015-07-24 02:48:10 +00:00
itemResult.AddPerson(p);
2013-04-13 23:43:41 +00:00
}
break;
}
2013-02-21 01:33:05 +00:00
case "Trailer":
{
var val = reader.ReadElementContentAsString();
2013-12-02 16:46:25 +00:00
var hasTrailers = item as IHasTrailers;
if (hasTrailers != null)
2013-02-21 01:33:05 +00:00
{
2013-12-02 16:46:25 +00:00
if (!string.IsNullOrWhiteSpace(val))
{
hasTrailers.AddTrailerUrl(val, false);
}
}
break;
}
case "DisplayOrder":
{
var val = reader.ReadElementContentAsString();
var hasDisplayOrder = item as IHasDisplayOrder;
if (hasDisplayOrder != null)
{
if (!string.IsNullOrWhiteSpace(val))
{
hasDisplayOrder.DisplayOrder = val;
}
2013-02-21 01:33:05 +00:00
}
break;
}
2013-12-01 20:17:40 +00:00
case "Trailers":
{
using (var subtree = reader.ReadSubtree())
{
2013-12-02 16:46:25 +00:00
var hasTrailers = item as IHasTrailers;
if (hasTrailers != null)
{
FetchDataFromTrailersNode(subtree, hasTrailers);
}
2013-12-01 20:17:40 +00:00
}
break;
}
2013-02-21 01:33:05 +00:00
case "ProductionYear":
{
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val))
{
int productionYear;
if (int.TryParse(val, out productionYear) && productionYear > 1850)
2013-02-21 01:33:05 +00:00
{
item.ProductionYear = productionYear;
2013-02-21 01:33:05 +00:00
}
}
break;
}
case "Rating":
case "IMDBrating":
{
var rating = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(rating))
{