jellyfin/MediaBrowser.Controller/Providers/TV/RemoteSeriesProvider.cs

582 lines
23 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Extensions;
2013-02-25 01:13:45 +01:00
using MediaBrowser.Common.Net;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Controller.Configuration;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.TV;
2013-02-21 18:22:22 +01:00
using MediaBrowser.Controller.Extensions;
using MediaBrowser.Controller.Library;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Entities;
2013-03-02 18:59:15 +01:00
using MediaBrowser.Model.Logging;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Net;
using System;
using System.Collections.Generic;
using System.Globalization;
2013-02-21 02:33:05 +01:00
using System.IO;
using System.Net;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Xml;
namespace MediaBrowser.Controller.Providers.TV
{
/// <summary>
/// Class RemoteSeriesProvider
/// </summary>
class RemoteSeriesProvider : BaseMetadataProvider, IDisposable
2013-02-21 02:33:05 +01:00
{
private readonly IProviderManager _providerManager;
2013-03-04 06:43:06 +01:00
/// <summary>
/// The tv db
/// </summary>
2013-05-19 23:20:47 +02:00
internal readonly SemaphoreSlim TvDbResourcePool = new SemaphoreSlim(3, 3);
2013-03-04 06:43:06 +01:00
internal static RemoteSeriesProvider Current { get; private set; }
2013-02-25 01:13:45 +01:00
/// <summary>
/// Gets the HTTP client.
/// </summary>
/// <value>The HTTP client.</value>
protected IHttpClient HttpClient { get; private set; }
2013-03-04 06:43:06 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="RemoteSeriesProvider" /> class.
/// </summary>
/// <param name="httpClient">The HTTP client.</param>
/// <param name="logManager">The log manager.</param>
/// <param name="configurationManager">The configuration manager.</param>
/// <param name="providerManager">The provider manager.</param>
2013-03-04 06:43:06 +01:00
/// <exception cref="System.ArgumentNullException">httpClient</exception>
public RemoteSeriesProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager)
2013-03-04 06:43:06 +01:00
: base(logManager, configurationManager)
2013-02-25 01:13:45 +01:00
{
if (httpClient == null)
{
throw new ArgumentNullException("httpClient");
}
HttpClient = httpClient;
_providerManager = providerManager;
2013-03-04 06:43:06 +01:00
Current = this;
}
/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
protected virtual void Dispose(bool dispose)
2013-03-04 06:43:06 +01:00
{
if (dispose)
{
TvDbResourcePool.Dispose();
}
2013-02-25 01:13:45 +01:00
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// The root URL
/// </summary>
private const string RootUrl = "http://www.thetvdb.com/api/";
2013-02-21 02:33:05 +01:00
/// <summary>
/// The series query
/// </summary>
private const string SeriesQuery = "GetSeries.php?seriesname={0}";
2013-02-21 02:33:05 +01:00
/// <summary>
/// The series get
/// </summary>
private const string SeriesGet = "http://www.thetvdb.com/api/{0}/series/{1}/{2}.xml";
2013-02-21 02:33:05 +01:00
/// <summary>
/// The get actors
/// </summary>
private const string GetActors = "http://www.thetvdb.com/api/{0}/series/{1}/actors.xml";
2013-02-21 02:33:05 +01:00
/// <summary>
/// The LOCA l_ MET a_ FIL e_ NAME
/// </summary>
protected const string LocalMetaFileName = "Series.xml";
2013-02-21 02:33:05 +01:00
/// <summary>
/// Supportses the specified item.
/// </summary>
/// <param name="item">The item.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
public override bool Supports(BaseItem item)
{
return item is Series;
}
/// <summary>
/// Gets the priority.
/// </summary>
/// <value>The priority.</value>
public override MetadataProviderPriority Priority
{
get { return MetadataProviderPriority.Second; }
}
/// <summary>
/// Gets a value indicating whether [requires internet].
/// </summary>
/// <value><c>true</c> if [requires internet]; otherwise, <c>false</c>.</value>
public override bool RequiresInternet
{
get
{
return true;
}
}
/// <summary>
/// Needses the refresh internal.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="providerInfo">The provider info.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
protected override bool NeedsRefreshInternal(BaseItem item, BaseProviderInfo providerInfo)
{
return !HasLocalMeta(item) && base.NeedsRefreshInternal(item, providerInfo);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Fetches metadata and returns true or false indicating if any work that requires persistence was done
/// </summary>
/// <param name="item">The item.</param>
/// <param name="force">if set to <c>true</c> [force].</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{System.Boolean}.</returns>
public override async Task<bool> FetchAsync(BaseItem item, bool force, CancellationToken cancellationToken)
2013-02-21 02:33:05 +01:00
{
cancellationToken.ThrowIfCancellationRequested();
var series = (Series)item;
if (!HasLocalMeta(series))
2013-02-21 02:33:05 +01:00
{
var path = item.Path ?? "";
var seriesId = Path.GetFileName(path).GetAttributeValue("tvdbid") ?? await GetSeriesId(series, cancellationToken);
cancellationToken.ThrowIfCancellationRequested();
var status = ProviderRefreshStatus.Success;
2013-02-21 02:33:05 +01:00
if (!string.IsNullOrEmpty(seriesId))
{
series.SetProviderId(MetadataProviders.Tvdb, seriesId);
status = await FetchSeriesData(series, seriesId, cancellationToken).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
SetLastRefreshed(item, DateTime.UtcNow, status);
2013-02-21 02:33:05 +01:00
return true;
}
Logger.Info("Series provider not fetching because local meta exists or requested to ignore: " + item.Name);
return false;
}
/// <summary>
/// Fetches the series data.
/// </summary>
/// <param name="series">The series.</param>
/// <param name="seriesId">The series id.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{System.Boolean}.</returns>
private async Task<ProviderRefreshStatus> FetchSeriesData(Series series, string seriesId, CancellationToken cancellationToken)
2013-02-21 02:33:05 +01:00
{
var status = ProviderRefreshStatus.Success;
2013-02-21 02:33:05 +01:00
if (!string.IsNullOrEmpty(seriesId))
{
string url = string.Format(SeriesGet, TVUtils.TvdbApiKey, seriesId, ConfigurationManager.Configuration.PreferredMetadataLanguage);
2013-02-21 02:33:05 +01:00
var doc = new XmlDocument();
using (var xml = await HttpClient.Get(new HttpRequestOptions
2013-02-21 02:33:05 +01:00
{
Url = url,
ResourcePool = TvDbResourcePool,
CancellationToken = cancellationToken,
EnableResponseCache = true
}).ConfigureAwait(false))
2013-02-21 02:33:05 +01:00
{
doc.Load(xml);
2013-02-21 02:33:05 +01:00
}
if (doc.HasChildNodes)
{
//kick off the actor and image fetch simultaneously
var actorTask = FetchActors(series, seriesId, doc, cancellationToken);
var imageTask = FetchImages(series, seriesId, cancellationToken);
series.Name = doc.SafeGetString("//SeriesName");
series.Overview = doc.SafeGetString("//Overview");
series.CommunityRating = doc.SafeGetSingle("//Rating", 0, 10);
series.AirDays = TVUtils.GetAirDays(doc.SafeGetString("//Airs_DayOfWeek"));
series.AirTime = doc.SafeGetString("//Airs_Time");
string n = doc.SafeGetString("//banner");
if (!string.IsNullOrWhiteSpace(n) && !series.HasImage(ImageType.Banner))
2013-02-21 02:33:05 +01:00
{
2013-04-22 06:38:03 +02:00
series.SetImage(ImageType.Banner, await _providerManager.DownloadAndSaveImage(series, TVUtils.BannerUrl + n, "banner" + Path.GetExtension(n), ConfigurationManager.Configuration.SaveLocalMeta, TvDbResourcePool, cancellationToken).ConfigureAwait(false));
2013-02-21 02:33:05 +01:00
}
string s = doc.SafeGetString("//Network");
2013-02-21 02:33:05 +01:00
if (!string.IsNullOrWhiteSpace(s))
{
series.Studios.Clear();
foreach (var studio in s.Trim().Split('|'))
{
series.AddStudio(studio);
}
}
2013-02-21 02:33:05 +01:00
series.OfficialRating = doc.SafeGetString("//ContentRating");
string g = doc.SafeGetString("//Genre");
if (g != null)
{
string[] genres = g.Trim('|').Split('|');
if (g.Length > 0)
{
series.Genres.Clear();
foreach (var genre in genres)
{
series.AddGenre(genre);
}
2013-02-21 02:33:05 +01:00
}
}
try
{
//wait for other tasks
await Task.WhenAll(actorTask, imageTask).ConfigureAwait(false);
}
catch (HttpException)
{
status = ProviderRefreshStatus.CompletedWithErrors;
}
2013-02-21 02:33:05 +01:00
2013-03-04 06:43:06 +01:00
if (ConfigurationManager.Configuration.SaveLocalMeta)
2013-02-21 02:33:05 +01:00
{
var ms = new MemoryStream();
doc.Save(ms);
await _providerManager.SaveToLibraryFilesystem(series, Path.Combine(series.MetaLocation, LocalMetaFileName), ms, cancellationToken).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
}
}
return status;
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Fetches the actors.
/// </summary>
/// <param name="series">The series.</param>
/// <param name="seriesId">The series id.</param>
/// <param name="doc">The doc.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
private async Task FetchActors(Series series, string seriesId, XmlDocument doc, CancellationToken cancellationToken)
{
string urlActors = string.Format(GetActors, TVUtils.TvdbApiKey, seriesId);
2013-02-21 02:33:05 +01:00
var docActors = new XmlDocument();
using (var actors = await HttpClient.Get(new HttpRequestOptions
2013-02-21 02:33:05 +01:00
{
Url = urlActors,
ResourcePool = TvDbResourcePool,
CancellationToken = cancellationToken,
EnableResponseCache = true
}).ConfigureAwait(false))
2013-02-21 02:33:05 +01:00
{
docActors.Load(actors);
2013-02-21 02:33:05 +01:00
}
if (docActors.HasChildNodes)
{
XmlNode actorsNode = null;
2013-03-04 06:43:06 +01:00
if (ConfigurationManager.Configuration.SaveLocalMeta)
2013-02-21 02:33:05 +01:00
{
//add to the main doc for saving
var seriesNode = doc.SelectSingleNode("//Series");
if (seriesNode != null)
{
actorsNode = doc.CreateNode(XmlNodeType.Element, "Persons", null);
seriesNode.AppendChild(actorsNode);
}
}
var xmlNodeList = docActors.SelectNodes("Actors/Actor");
2013-02-21 02:33:05 +01:00
if (xmlNodeList != null)
{
series.People.Clear();
2013-02-21 02:33:05 +01:00
foreach (XmlNode p in xmlNodeList)
{
string actorName = p.SafeGetString("Name");
string actorRole = p.SafeGetString("Role");
if (!string.IsNullOrWhiteSpace(actorName))
{
series.AddPerson(new PersonInfo { Type = PersonType.Actor, Name = actorName, Role = actorRole });
2013-03-04 06:43:06 +01:00
if (ConfigurationManager.Configuration.SaveLocalMeta && actorsNode != null)
2013-02-21 02:33:05 +01:00
{
//create in main doc
var personNode = doc.CreateNode(XmlNodeType.Element, "Person", null);
foreach (XmlNode subNode in p.ChildNodes)
personNode.AppendChild(doc.ImportNode(subNode, true));
//need to add the type
var typeNode = doc.CreateNode(XmlNodeType.Element, "Type", null);
2013-04-14 01:43:41 +02:00
typeNode.InnerText = PersonType.Actor;
2013-02-21 02:33:05 +01:00
personNode.AppendChild(typeNode);
actorsNode.AppendChild(personNode);
}
}
}
}
2013-02-21 02:33:05 +01:00
}
}
protected readonly CultureInfo UsCulture = new CultureInfo("en-US");
2013-02-21 02:33:05 +01:00
/// <summary>
/// Fetches the images.
/// </summary>
/// <param name="series">The series.</param>
/// <param name="seriesId">The series id.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
private async Task FetchImages(Series series, string seriesId, CancellationToken cancellationToken)
{
if ((!string.IsNullOrEmpty(seriesId)) && ((series.PrimaryImagePath == null) || (series.BackdropImagePaths == null)))
{
string url = string.Format("http://www.thetvdb.com/api/" + TVUtils.TvdbApiKey + "/series/{0}/banners.xml", seriesId);
2013-02-21 02:33:05 +01:00
var images = new XmlDocument();
2013-05-20 07:36:22 +02:00
try
2013-02-21 02:33:05 +01:00
{
2013-05-20 07:36:22 +02:00
using (var imgs = await HttpClient.Get(new HttpRequestOptions
{
Url = url,
ResourcePool = TvDbResourcePool,
CancellationToken = cancellationToken,
EnableResponseCache = true
2013-05-20 07:36:22 +02:00
}).ConfigureAwait(false))
{
images.Load(imgs);
}
}
catch (HttpException ex)
2013-02-21 02:33:05 +01:00
{
2013-05-20 07:36:22 +02:00
if (ex.StatusCode.HasValue && ex.StatusCode.Value == HttpStatusCode.NotFound)
{
// If a series has no images this will produce a 404.
// Return gracefully so we don't keep retrying on subsequent scans
return;
}
throw;
2013-02-21 02:33:05 +01:00
}
if (images.HasChildNodes)
{
2013-03-04 06:43:06 +01:00
if (ConfigurationManager.Configuration.RefreshItemImages || !series.HasLocalImage("folder"))
2013-02-21 02:33:05 +01:00
{
var n = images.SelectSingleNode("//Banner[BannerType='poster']");
if (n != null)
{
n = n.SelectSingleNode("./BannerPath");
if (n != null)
{
series.PrimaryImagePath = await _providerManager.DownloadAndSaveImage(series, TVUtils.BannerUrl + n.InnerText, "folder" + Path.GetExtension(n.InnerText), ConfigurationManager.Configuration.SaveLocalMeta, TvDbResourcePool, cancellationToken).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
}
}
if (ConfigurationManager.Configuration.DownloadSeriesImages.Banner && (ConfigurationManager.Configuration.RefreshItemImages || !series.HasLocalImage("banner")))
2013-02-21 02:33:05 +01:00
{
var n = images.SelectSingleNode("//Banner[BannerType='series']");
if (n != null)
{
n = n.SelectSingleNode("./BannerPath");
if (n != null)
{
var bannerImagePath = await _providerManager.DownloadAndSaveImage(series, TVUtils.BannerUrl + n.InnerText, "banner" + Path.GetExtension(n.InnerText), ConfigurationManager.Configuration.SaveLocalMeta, TvDbResourcePool, cancellationToken);
2013-02-21 02:33:05 +01:00
series.SetImage(ImageType.Banner, bannerImagePath);
2013-02-21 02:33:05 +01:00
}
}
}
var bdNo = 0;
var xmlNodeList = images.SelectNodes("//Banner[BannerType='fanart']");
if (xmlNodeList != null)
foreach (XmlNode b in xmlNodeList)
{
series.BackdropImagePaths = new List<string>();
var p = b.SelectSingleNode("./BannerPath");
if (p != null)
{
var bdName = "backdrop" + (bdNo > 0 ? bdNo.ToString(UsCulture) : "");
2013-03-04 06:43:06 +01:00
if (ConfigurationManager.Configuration.RefreshItemImages || !series.HasLocalImage(bdName))
2013-02-21 02:33:05 +01:00
{
series.BackdropImagePaths.Add(await _providerManager.DownloadAndSaveImage(series, TVUtils.BannerUrl + p.InnerText, bdName + Path.GetExtension(p.InnerText), ConfigurationManager.Configuration.SaveLocalMeta, TvDbResourcePool, cancellationToken).ConfigureAwait(false));
2013-02-21 02:33:05 +01:00
}
bdNo++;
2013-03-04 06:43:06 +01:00
if (bdNo >= ConfigurationManager.Configuration.MaxBackdrops) break;
2013-02-21 02:33:05 +01:00
}
}
}
}
}
/// <summary>
/// Determines whether [has local meta] [the specified item].
/// </summary>
/// <param name="item">The item.</param>
/// <returns><c>true</c> if [has local meta] [the specified item]; otherwise, <c>false</c>.</returns>
private bool HasLocalMeta(BaseItem item)
{
return item.ResolveArgs.ContainsMetaFileByName(LocalMetaFileName);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the series id.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{System.String}.</returns>
private async Task<string> GetSeriesId(BaseItem item, CancellationToken cancellationToken)
{
var seriesId = item.GetProviderId(MetadataProviders.Tvdb);
if (string.IsNullOrEmpty(seriesId))
{
seriesId = await FindSeries(item.Name, cancellationToken).ConfigureAwait(false);
}
return seriesId;
}
/// <summary>
/// Finds the series.
/// </summary>
/// <param name="name">The name.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{System.String}.</returns>
public async Task<string> FindSeries(string name, CancellationToken cancellationToken)
{
//nope - search for it
string url = string.Format(RootUrl + SeriesQuery, WebUtility.UrlEncode(name));
2013-02-21 02:33:05 +01:00
var doc = new XmlDocument();
2013-05-19 17:56:03 +02:00
using (var results = await HttpClient.Get(new HttpRequestOptions
2013-02-21 02:33:05 +01:00
{
2013-05-19 17:56:03 +02:00
Url = url,
ResourcePool = TvDbResourcePool,
CancellationToken = cancellationToken,
EnableResponseCache = true
2013-05-19 17:56:03 +02:00
}).ConfigureAwait(false))
2013-02-21 02:33:05 +01:00
{
2013-05-19 17:56:03 +02:00
doc.Load(results);
2013-02-21 02:33:05 +01:00
}
if (doc.HasChildNodes)
{
XmlNodeList nodes = doc.SelectNodes("//Series");
string comparableName = GetComparableName(name);
if (nodes != null)
foreach (XmlNode node in nodes)
{
var n = node.SelectSingleNode("./SeriesName");
if (n != null && GetComparableName(n.InnerText) == comparableName)
{
n = node.SelectSingleNode("./seriesid");
if (n != null)
return n.InnerText;
}
else
{
if (n != null)
Logger.Info("TVDb Provider - " + n.InnerText + " did not match " + comparableName);
}
}
}
Logger.Info("TVDb Provider - Could not find " + name + ". Check name on Thetvdb.org.");
return null;
}
/// <summary>
/// The remove
/// </summary>
const string remove = "\"'!`?";
/// <summary>
/// The spacers
/// </summary>
const string spacers = "/,.:;\\(){}[]+-_=*"; // (there are not actually two - in the they are different char codes)
/// <summary>
/// Gets the name of the comparable.
/// </summary>
/// <param name="name">The name.</param>
/// <returns>System.String.</returns>
internal static string GetComparableName(string name)
{
name = name.ToLower();
name = name.Normalize(NormalizationForm.FormKD);
var sb = new StringBuilder();
foreach (var c in name)
{
if ((int)c >= 0x2B0 && (int)c <= 0x0333)
{
// skip char modifier and diacritics
}
else if (remove.IndexOf(c) > -1)
{
// skip chars we are removing
}
else if (spacers.IndexOf(c) > -1)
{
sb.Append(" ");
}
else if (c == '&')
{
sb.Append(" and ");
}
else
{
sb.Append(c);
}
}
name = sb.ToString();
name = name.Replace(", the", "");
name = name.Replace("the ", " ");
name = name.Replace(" the ", " ");
string prevName;
do
{
prevName = name;
name = name.Replace(" ", " ");
} while (name.Length != prevName.Length);
return name.Trim();
}
public void Dispose()
{
Dispose(true);
}
2013-02-21 02:33:05 +01:00
}
}