2017-09-20 06:58:08 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
2017-08-24 19:52:19 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
2015-06-29 01:10:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2018-12-13 13:18:25 +00:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
using System.Xml;
|
2016-10-26 02:53:47 +00:00
|
|
|
|
using MediaBrowser.Model.IO;
|
|
|
|
|
using MediaBrowser.Model.Xml;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.XbmcMetadata.Parsers
|
|
|
|
|
{
|
|
|
|
|
class MovieNfoParser : BaseNfoParser<Video>
|
|
|
|
|
{
|
2014-11-11 03:41:55 +00:00
|
|
|
|
protected override bool SupportsUrlAfterClosingXmlTag
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 03:04:50 +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<Video> itemResult)
|
2014-06-30 03:04:50 +00:00
|
|
|
|
{
|
2015-06-29 01:10:45 +00:00
|
|
|
|
var item = itemResult.Item;
|
|
|
|
|
|
2014-06-30 03:04:50 +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");
|
2014-06-30 03:04:50 +00:00
|
|
|
|
|
2016-03-18 03:40:38 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(imdbId))
|
|
|
|
|
{
|
|
|
|
|
imdbId = reader.ReadElementContentAsString();
|
|
|
|
|
}
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(imdbId))
|
|
|
|
|
{
|
|
|
|
|
item.SetProviderId(MetadataProviders.Imdb, imdbId);
|
|
|
|
|
}
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(tmdbId))
|
|
|
|
|
{
|
|
|
|
|
item.SetProviderId(MetadataProviders.Tmdb, tmdbId);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2014-06-30 03:04:50 +00:00
|
|
|
|
case "set":
|
|
|
|
|
{
|
|
|
|
|
var movie = item as Movie;
|
|
|
|
|
|
2016-03-14 01:34:24 +00:00
|
|
|
|
var tmdbcolid = reader.GetAttribute("tmdbcolid");
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(tmdbcolid) && movie != null)
|
|
|
|
|
{
|
|
|
|
|
movie.SetProviderId(MetadataProviders.TmdbCollection, tmdbcolid);
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-02 07:30:17 +00:00
|
|
|
|
var val = reader.ReadInnerXml();
|
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(val) && movie != null)
|
|
|
|
|
{
|
2017-08-02 07:30:17 +00:00
|
|
|
|
// TODO Handle this better later
|
|
|
|
|
if (val.IndexOf('<') == -1)
|
|
|
|
|
{
|
|
|
|
|
movie.CollectionName = val;
|
|
|
|
|
}
|
2017-09-20 06:58:08 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
ParseSetXml(val, movie);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
|
Logger.LogError(ex, "Error parsing set node");
|
2017-09-20 06:58:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-06-30 03:04:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case "artist":
|
|
|
|
|
{
|
|
|
|
|
var val = reader.ReadElementContentAsString();
|
|
|
|
|
var movie = item as MusicVideo;
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(val) && movie != null)
|
|
|
|
|
{
|
2017-08-24 19:52:19 +00:00
|
|
|
|
var list = movie.Artists.ToList();
|
|
|
|
|
list.Add(val);
|
|
|
|
|
movie.Artists = list.ToArray();
|
2014-06-30 03:04:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case "album":
|
|
|
|
|
{
|
|
|
|
|
var val = reader.ReadElementContentAsString();
|
|
|
|
|
var movie = item as MusicVideo;
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(val) && movie != null)
|
|
|
|
|
{
|
|
|
|
|
movie.Album = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
2015-06-29 01:10:45 +00:00
|
|
|
|
base.FetchDataFromXmlNode(reader, itemResult);
|
2014-06-30 03:04:50 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-26 02:53:47 +00:00
|
|
|
|
|
2017-09-20 06:58:08 +00:00
|
|
|
|
private void ParseSetXml(string xml, Movie movie)
|
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
|
//xml = xml.Substring(xml.IndexOf('<'));
|
|
|
|
|
//xml = xml.Substring(0, xml.LastIndexOf('>'));
|
2017-09-20 06:58:08 +00:00
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
|
using (var stringReader = new StringReader("<set>" + xml + "</set>"))
|
|
|
|
|
{
|
2017-09-20 06:58:08 +00:00
|
|
|
|
// These are not going to be valid xml so no sense in causing the provider to fail and spamming the log with exceptions
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var settings = XmlReaderSettingsFactory.Create(false);
|
|
|
|
|
|
|
|
|
|
settings.CheckCharacters = false;
|
|
|
|
|
settings.IgnoreProcessingInstructions = true;
|
|
|
|
|
settings.IgnoreComments = true;
|
|
|
|
|
|
|
|
|
|
// Use XmlReader for best performance
|
2018-09-12 17:26:21 +00:00
|
|
|
|
using (var reader = XmlReader.Create(stringReader, settings))
|
2017-09-20 06:58:08 +00:00
|
|
|
|
{
|
|
|
|
|
reader.MoveToContent();
|
|
|
|
|
reader.Read();
|
|
|
|
|
|
|
|
|
|
// Loop through each element
|
|
|
|
|
while (!reader.EOF && reader.ReadState == ReadState.Interactive)
|
|
|
|
|
{
|
|
|
|
|
if (reader.NodeType == XmlNodeType.Element)
|
|
|
|
|
{
|
|
|
|
|
switch (reader.Name)
|
|
|
|
|
{
|
|
|
|
|
case "name":
|
|
|
|
|
movie.CollectionName = reader.ReadElementContentAsString();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
reader.Skip();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
reader.Read();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (XmlException)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-26 02:53:47 +00:00
|
|
|
|
public MovieNfoParser(ILogger logger, IConfigurationManager config, IProviderManager providerManager, IFileSystem fileSystem, IXmlReaderSettingsFactory xmlReaderSettingsFactory) : base(logger, config, providerManager, fileSystem, xmlReaderSettingsFactory)
|
|
|
|
|
{
|
|
|
|
|
}
|
2014-06-30 03:04:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|