2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Common.Extensions;
|
2013-02-25 00:13:45 +00:00
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-03-02 17:59:15 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Model.Net;
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Xml;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers.TV
|
|
|
|
|
{
|
2013-03-02 17:59:15 +00:00
|
|
|
|
class FanArtTvProvider : FanartBaseProvider
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
protected string FanArtBaseUrl = "http://api.fanart.tv/webservice/series/{0}/{1}/xml/all/1/1";
|
|
|
|
|
|
2013-02-25 00:13:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the HTTP client.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTP client.</value>
|
|
|
|
|
protected IHttpClient HttpClient { get; private set; }
|
|
|
|
|
|
2013-03-08 05:08:27 +00:00
|
|
|
|
private readonly IProviderManager _providerManager;
|
|
|
|
|
|
|
|
|
|
public FanArtTvProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager)
|
2013-03-04 05:43:06 +00:00
|
|
|
|
: base(logManager, configurationManager)
|
2013-02-25 00:13:45 +00:00
|
|
|
|
{
|
|
|
|
|
if (httpClient == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("httpClient");
|
|
|
|
|
}
|
|
|
|
|
HttpClient = httpClient;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
_providerManager = providerManager;
|
2013-02-25 00:13:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public override bool Supports(BaseItem item)
|
|
|
|
|
{
|
|
|
|
|
return item is Series;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool ShouldFetch(BaseItem item, BaseProviderInfo providerInfo)
|
|
|
|
|
{
|
|
|
|
|
if (item.DontFetchMeta || string.IsNullOrEmpty(item.GetProviderId(MetadataProviders.Tvdb))) return false; //nothing to do
|
|
|
|
|
var artExists = item.ResolveArgs.ContainsMetaFileByName(ART_FILE);
|
|
|
|
|
var logoExists = item.ResolveArgs.ContainsMetaFileByName(LOGO_FILE);
|
|
|
|
|
var thumbExists = item.ResolveArgs.ContainsMetaFileByName(THUMB_FILE);
|
|
|
|
|
|
|
|
|
|
|
2013-03-04 16:09:15 +00:00
|
|
|
|
return (!artExists && ConfigurationManager.Configuration.DownloadSeriesImages.Art)
|
|
|
|
|
|| (!logoExists && ConfigurationManager.Configuration.DownloadSeriesImages.Logo)
|
|
|
|
|
|| (!thumbExists && ConfigurationManager.Configuration.DownloadSeriesImages.Thumb);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-08 05:08:27 +00:00
|
|
|
|
public override async Task<bool> FetchAsync(BaseItem item, bool force, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-02-25 00:13:45 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
var series = (Series)item;
|
2013-04-13 18:02:30 +00:00
|
|
|
|
|
|
|
|
|
BaseProviderInfo providerData;
|
|
|
|
|
|
|
|
|
|
if (!item.ProviderData.TryGetValue(Id, out providerData))
|
|
|
|
|
{
|
|
|
|
|
providerData = new BaseProviderInfo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ShouldFetch(series, providerData))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-03-04 05:43:06 +00:00
|
|
|
|
string language = ConfigurationManager.Configuration.PreferredMetadataLanguage.ToLower();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
string url = string.Format(FanArtBaseUrl, APIKey, series.GetProviderId(MetadataProviders.Tvdb));
|
|
|
|
|
var doc = new XmlDocument();
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-03-28 22:47:54 +00:00
|
|
|
|
using (var xml = await HttpClient.Get(url, FanArtResourcePool, cancellationToken).ConfigureAwait(false))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
doc.Load(xml);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (HttpException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-02-25 00:13:45 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
if (doc.HasChildNodes)
|
|
|
|
|
{
|
|
|
|
|
string path;
|
2013-04-23 19:02:50 +00:00
|
|
|
|
var hd = ConfigurationManager.Configuration.DownloadHDFanArt ? "hdtv" : "clear";
|
2013-03-04 16:09:15 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadSeriesImages.Logo && !series.ResolveArgs.ContainsMetaFileByName(LOGO_FILE))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-04-23 19:02:50 +00:00
|
|
|
|
var node = doc.SelectSingleNode("//fanart/series/"+hd+"logos/"+hd+"logo[@lang = \"" + language + "\"]/@url") ??
|
|
|
|
|
doc.SelectSingleNode("//fanart/series/clearlogos/clearlogo[@lang = \"" + language + "\"]/@url") ??
|
|
|
|
|
doc.SelectSingleNode("//fanart/series/"+hd+"logos/"+hd+"logo/@url") ??
|
|
|
|
|
doc.SelectSingleNode("//fanart/series/clearlogos/clearlogo/@url");
|
2013-02-21 01:33:05 +00:00
|
|
|
|
path = node != null ? node.Value : null;
|
|
|
|
|
if (!string.IsNullOrEmpty(path))
|
|
|
|
|
{
|
|
|
|
|
Logger.Debug("FanArtProvider getting ClearLogo for " + series.Name);
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-04-22 04:38:03 +00:00
|
|
|
|
series.SetImage(ImageType.Logo, await _providerManager.DownloadAndSaveImage(series, path, LOGO_FILE, ConfigurationManager.Configuration.SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
catch (HttpException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
catch (IOException)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-02-25 00:13:45 +00:00
|
|
|
|
|
2013-04-23 19:02:50 +00:00
|
|
|
|
hd = ConfigurationManager.Configuration.DownloadHDFanArt ? "hd" : "";
|
2013-03-04 16:09:15 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadSeriesImages.Art && !series.ResolveArgs.ContainsMetaFileByName(ART_FILE))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-04-23 19:02:50 +00:00
|
|
|
|
var node = doc.SelectSingleNode("//fanart/series/"+hd+"cleararts/"+hd+"clearart[@lang = \"" + language + "\"]/@url") ??
|
|
|
|
|
doc.SelectSingleNode("//fanart/series/cleararts/clearart[@lang = \"" + language + "\"]/@url") ??
|
|
|
|
|
doc.SelectSingleNode("//fanart/series/"+hd+"cleararts/"+hd+"clearart/@url") ??
|
2013-02-21 01:33:05 +00:00
|
|
|
|
doc.SelectSingleNode("//fanart/series/cleararts/clearart/@url");
|
|
|
|
|
path = node != null ? node.Value : null;
|
|
|
|
|
if (!string.IsNullOrEmpty(path))
|
|
|
|
|
{
|
|
|
|
|
Logger.Debug("FanArtProvider getting ClearArt for " + series.Name);
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-04-22 04:38:03 +00:00
|
|
|
|
series.SetImage(ImageType.Art, await _providerManager.DownloadAndSaveImage(series, path, ART_FILE, ConfigurationManager.Configuration.SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
catch (HttpException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
catch (IOException)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-02-25 00:13:45 +00:00
|
|
|
|
|
2013-03-04 16:09:15 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.DownloadSeriesImages.Thumb && !series.ResolveArgs.ContainsMetaFileByName(THUMB_FILE))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
var node = doc.SelectSingleNode("//fanart/series/tvthumbs/tvthumb[@lang = \"" + language + "\"]/@url") ??
|
|
|
|
|
doc.SelectSingleNode("//fanart/series/tvthumbs/tvthumb/@url");
|
|
|
|
|
path = node != null ? node.Value : null;
|
|
|
|
|
if (!string.IsNullOrEmpty(path))
|
|
|
|
|
{
|
|
|
|
|
Logger.Debug("FanArtProvider getting ThumbArt for " + series.Name);
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-04-22 04:38:03 +00:00
|
|
|
|
series.SetImage(ImageType.Disc, await _providerManager.DownloadAndSaveImage(series, path, THUMB_FILE, ConfigurationManager.Configuration.SaveLocalMeta, FanArtResourcePool, cancellationToken).ConfigureAwait(false));
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
catch (HttpException)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
catch (IOException)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
SetLastRefreshed(series, DateTime.UtcNow);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|