jellyfin/MediaBrowser.XbmcMetadata/Parsers/MovieNfoParser.cs

186 lines
6.9 KiB
C#
Raw Normal View History

using System;
using System.IO;
using System.Linq;
using System.Xml;
2017-08-24 21:52:19 +02:00
using MediaBrowser.Common.Configuration;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Library;
2015-06-29 03:10:45 +02:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using Microsoft.Extensions.Logging;
namespace MediaBrowser.XbmcMetadata.Parsers
{
/// <summary>
/// Nfo parser for movies.
/// </summary>
public class MovieNfoParser : BaseNfoParser<Video>
{
/// <summary>
/// Initializes a new instance of the <see cref="MovieNfoParser"/> class.
/// </summary>
/// <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="DirectoryService"/> interface.</param>
public MovieNfoParser(
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)
{
}
/// <inheritdoc />
protected override bool SupportsUrlAfterClosingXmlTag => true;
2014-11-11 04:41:55 +01:00
/// <inheritdoc />
2015-08-02 19:31:08 +02:00
protected override void FetchDataFromXmlNode(XmlReader reader, MetadataResult<Video> itemResult)
{
2015-06-29 03:10:45 +02:00
var item = itemResult.Item;
switch (reader.Name)
{
case "id":
{
// get ids from attributes
string? imdbId = reader.GetAttribute("IMDB");
string? tmdbId = reader.GetAttribute("TMDB");
// read id from content
var contentId = reader.ReadElementContentAsString();
if (contentId.Contains("tt", StringComparison.Ordinal) && string.IsNullOrEmpty(imdbId))
{
imdbId = contentId;
}
else if (string.IsNullOrEmpty(tmdbId))
{
tmdbId = contentId;
}
if (!string.IsNullOrWhiteSpace(imdbId))
{
2020-06-06 21:17:49 +02:00
item.SetProviderId(MetadataProvider.Imdb, imdbId);
}
if (!string.IsNullOrWhiteSpace(tmdbId))
{
2020-06-06 21:17:49 +02:00
item.SetProviderId(MetadataProvider.Tmdb, tmdbId);
}
break;
}
case "set":
{
var movie = item as Movie;
2016-03-14 02:34:24 +01:00
var tmdbcolid = reader.GetAttribute("tmdbcolid");
2022-12-05 15:01:13 +01:00
if (!string.IsNullOrWhiteSpace(tmdbcolid) && movie is not null)
2016-03-14 02:34:24 +01:00
{
2020-06-06 21:17:49 +02:00
movie.SetProviderId(MetadataProvider.TmdbCollection, tmdbcolid);
2016-03-14 02:34:24 +01:00
}
var val = reader.ReadInnerXml();
2022-12-05 15:01:13 +01:00
if (!string.IsNullOrWhiteSpace(val) && movie is not null)
{
// TODO Handle this better later
2021-01-09 15:00:59 +01:00
if (!val.Contains('<', StringComparison.Ordinal))
{
movie.CollectionName = val;
}
else
{
try
{
ParseSetXml(val, movie);
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
Logger.LogError(ex, "Error parsing set node");
}
}
}
break;
}
case "artist":
{
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val) && item is MusicVideo movie)
{
2017-08-24 21:52:19 +02:00
var list = movie.Artists.ToList();
list.Add(val);
movie.Artists = list.ToArray();
}
break;
}
case "album":
{
var val = reader.ReadElementContentAsString();
if (!string.IsNullOrWhiteSpace(val) && item is MusicVideo movie)
{
movie.Album = val;
}
break;
}
default:
2015-06-29 03:10:45 +02:00
base.FetchDataFromXmlNode(reader, itemResult);
break;
}
}
2016-10-26 04:53:47 +02:00
private void ParseSetXml(string xml, Movie movie)
{
// These are not going to be valid xml so no sense in causing the provider to fail and spamming the log with exceptions
try
2018-09-12 19:26:21 +02:00
{
using (var stringReader = new StringReader("<set>" + xml + "</set>"))
using (var reader = XmlReader.Create(stringReader, GetXmlReaderSettings()))
{
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 04:53:47 +02:00
}
}
}