You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
421 lines
15 KiB
421 lines
15 KiB
using MediaBrowser.Common.IO;
|
|
using MediaBrowser.Common.Net;
|
|
using MediaBrowser.Controller.Configuration;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
using MediaBrowser.Controller.IO;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Xml;
|
|
|
|
namespace MediaBrowser.Providers.TV
|
|
{
|
|
public class TvdbSeriesImageProvider : BaseMetadataProvider
|
|
{
|
|
/// <summary>
|
|
/// Gets the HTTP client.
|
|
/// </summary>
|
|
/// <value>The HTTP client.</value>
|
|
protected IHttpClient HttpClient { get; private set; }
|
|
|
|
/// <summary>
|
|
/// The _provider manager
|
|
/// </summary>
|
|
private readonly IProviderManager _providerManager;
|
|
private readonly IFileSystem _fileSystem;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="TvdbSeriesImageProvider"/> 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>
|
|
/// <exception cref="System.ArgumentNullException">httpClient</exception>
|
|
public TvdbSeriesImageProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager, IFileSystem fileSystem)
|
|
: base(logManager, configurationManager)
|
|
{
|
|
if (httpClient == null)
|
|
{
|
|
throw new ArgumentNullException("httpClient");
|
|
}
|
|
HttpClient = httpClient;
|
|
_providerManager = providerManager;
|
|
_fileSystem = fileSystem;
|
|
}
|
|
|
|
/// <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
|
|
{
|
|
// Run after fanart
|
|
get { return MetadataProviderPriority.Fourth; }
|
|
}
|
|
|
|
/// <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;
|
|
}
|
|
}
|
|
|
|
public override ItemUpdateType ItemUpdateType
|
|
{
|
|
get
|
|
{
|
|
return ItemUpdateType.ImageUpdate;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether [refresh on version change].
|
|
/// </summary>
|
|
/// <value><c>true</c> if [refresh on version change]; otherwise, <c>false</c>.</value>
|
|
protected override bool RefreshOnVersionChange
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the provider version.
|
|
/// </summary>
|
|
/// <value>The provider version.</value>
|
|
protected override string ProviderVersion
|
|
{
|
|
get
|
|
{
|
|
return "1";
|
|
}
|
|
}
|
|
|
|
protected override DateTime CompareDate(BaseItem item)
|
|
{
|
|
var seriesId = item.GetProviderId(MetadataProviders.Tvdb);
|
|
|
|
if (!string.IsNullOrEmpty(seriesId))
|
|
{
|
|
// Process images
|
|
var imagesXmlPath = Path.Combine(RemoteSeriesProvider.GetSeriesDataPath(ConfigurationManager.ApplicationPaths, seriesId), "banners.xml");
|
|
|
|
var imagesFileInfo = new FileInfo(imagesXmlPath);
|
|
|
|
if (imagesFileInfo.Exists)
|
|
{
|
|
return _fileSystem.GetLastWriteTimeUtc(imagesFileInfo);
|
|
}
|
|
}
|
|
|
|
return base.CompareDate(item);
|
|
}
|
|
|
|
protected override bool NeedsRefreshInternal(BaseItem item, BaseProviderInfo providerInfo)
|
|
{
|
|
if (item.HasImage(ImageType.Primary) && item.HasImage(ImageType.Banner) && item.BackdropImagePaths.Count >= ConfigurationManager.Configuration.MaxBackdrops)
|
|
{
|
|
return false;
|
|
}
|
|
return base.NeedsRefreshInternal(item, providerInfo);
|
|
}
|
|
|
|
/// <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)
|
|
{
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
var series = (Series)item;
|
|
var seriesId = series.GetProviderId(MetadataProviders.Tvdb);
|
|
|
|
if (!string.IsNullOrEmpty(seriesId))
|
|
{
|
|
// Process images
|
|
var seriesDataPath = RemoteSeriesProvider.GetSeriesDataPath(ConfigurationManager.ApplicationPaths, seriesId);
|
|
|
|
var imagesXmlPath = Path.Combine(seriesDataPath, "banners.xml");
|
|
|
|
var backdropLimit = ConfigurationManager.Configuration.MaxBackdrops;
|
|
|
|
if (!series.HasImage(ImageType.Primary) || !series.HasImage(ImageType.Banner) || series.BackdropImagePaths.Count < backdropLimit)
|
|
{
|
|
Directory.CreateDirectory(seriesDataPath);
|
|
|
|
try
|
|
{
|
|
var fanartData = FetchFanartXmlData(imagesXmlPath, backdropLimit, cancellationToken);
|
|
await DownloadImages(item, fanartData, backdropLimit, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
catch (FileNotFoundException)
|
|
{
|
|
// No biggie. Not all series have images
|
|
}
|
|
}
|
|
|
|
SetLastRefreshed(item, DateTime.UtcNow);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
protected readonly CultureInfo UsCulture = new CultureInfo("en-US");
|
|
|
|
private async Task DownloadImages(BaseItem item, FanartXmlData data, int backdropLimit, CancellationToken cancellationToken)
|
|
{
|
|
if (!item.HasImage(ImageType.Primary))
|
|
{
|
|
var url = data.LanguagePoster ?? data.Poster;
|
|
if (!string.IsNullOrEmpty(url))
|
|
{
|
|
url = TVUtils.BannerUrl + url;
|
|
|
|
await _providerManager.SaveImage(item, url, RemoteSeriesProvider.Current.TvDbResourcePool, ImageType.Primary, null, cancellationToken)
|
|
.ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
if (ConfigurationManager.Configuration.DownloadSeriesImages.Banner && !item.HasImage(ImageType.Banner))
|
|
{
|
|
var url = data.LanguageBanner ?? data.Banner;
|
|
if (!string.IsNullOrEmpty(url))
|
|
{
|
|
url = TVUtils.BannerUrl + url;
|
|
|
|
await _providerManager.SaveImage(item, url, RemoteSeriesProvider.Current.TvDbResourcePool, ImageType.Banner, null, cancellationToken)
|
|
.ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
if (ConfigurationManager.Configuration.DownloadSeriesImages.Backdrops && item.BackdropImagePaths.Count < backdropLimit)
|
|
{
|
|
var bdNo = item.BackdropImagePaths.Count;
|
|
|
|
var eligibleBackdrops = data.Backdrops
|
|
.Where(i =>
|
|
{
|
|
if (string.IsNullOrEmpty(i.Resolution))
|
|
{
|
|
return true;
|
|
}
|
|
|
|
var parts = i.Resolution.Split('x');
|
|
|
|
int width;
|
|
|
|
if (int.TryParse(parts[0], NumberStyles.Any, UsCulture, out width))
|
|
{
|
|
return width >= ConfigurationManager.Configuration.MinSeriesBackdropWidth;
|
|
}
|
|
|
|
return true;
|
|
})
|
|
.ToList();
|
|
|
|
foreach (var backdrop in eligibleBackdrops)
|
|
{
|
|
var url = TVUtils.BannerUrl + backdrop.Url;
|
|
|
|
if (item.ContainsImageWithSourceUrl(url))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
await _providerManager.SaveImage(item, url, RemoteSeriesProvider.Current.TvDbResourcePool, ImageType.Backdrop, bdNo, cancellationToken)
|
|
.ConfigureAwait(false);
|
|
|
|
bdNo++;
|
|
|
|
if (item.BackdropImagePaths.Count >= backdropLimit) break;
|
|
}
|
|
}
|
|
}
|
|
|
|
private FanartXmlData FetchFanartXmlData(string bannersXmlPath, int backdropLimit, CancellationToken cancellationToken)
|
|
{
|
|
var settings = new XmlReaderSettings
|
|
{
|
|
CheckCharacters = false,
|
|
IgnoreProcessingInstructions = true,
|
|
IgnoreComments = true,
|
|
ValidationType = ValidationType.None
|
|
};
|
|
|
|
var data = new FanartXmlData();
|
|
|
|
using (var streamReader = new StreamReader(bannersXmlPath, Encoding.UTF8))
|
|
{
|
|
// Use XmlReader for best performance
|
|
using (var reader = XmlReader.Create(streamReader, settings))
|
|
{
|
|
reader.MoveToContent();
|
|
|
|
// Loop through each element
|
|
while (reader.Read())
|
|
{
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
if (reader.NodeType == XmlNodeType.Element)
|
|
{
|
|
switch (reader.Name)
|
|
{
|
|
case "Banner":
|
|
{
|
|
using (var subtree = reader.ReadSubtree())
|
|
{
|
|
FetchInfoFromBannerNode(data, subtree, backdropLimit);
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
reader.Skip();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return data;
|
|
}
|
|
|
|
private void FetchInfoFromBannerNode(FanartXmlData data, XmlReader reader, int backdropLimit)
|
|
{
|
|
reader.MoveToContent();
|
|
|
|
string type = null;
|
|
string url = null;
|
|
string resolution = null;
|
|
|
|
while (reader.Read())
|
|
{
|
|
if (reader.NodeType == XmlNodeType.Element)
|
|
{
|
|
switch (reader.Name)
|
|
{
|
|
case "BannerType":
|
|
{
|
|
type = reader.ReadElementContentAsString() ?? string.Empty;
|
|
|
|
if (string.Equals(type, "poster", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
// Already got it
|
|
if (!string.IsNullOrEmpty(data.Poster))
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
else if (string.Equals(type, "series", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
// Already got it
|
|
if (!string.IsNullOrEmpty(data.Banner))
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case "BannerPath":
|
|
{
|
|
url = reader.ReadElementContentAsString() ?? string.Empty;
|
|
break;
|
|
}
|
|
|
|
case "BannerType2":
|
|
{
|
|
resolution = reader.ReadElementContentAsString() ?? string.Empty;
|
|
break;
|
|
}
|
|
|
|
default:
|
|
reader.Skip();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(url))
|
|
{
|
|
if (string.Equals(type, "poster", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
// Just grab the first
|
|
if (string.IsNullOrWhiteSpace(data.Poster))
|
|
{
|
|
data.Poster = url;
|
|
}
|
|
}
|
|
else if (string.Equals(type, "series", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
// Just grab the first
|
|
if (string.IsNullOrWhiteSpace(data.Banner))
|
|
{
|
|
data.Banner = url;
|
|
}
|
|
}
|
|
else if (string.Equals(type, "fanart", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
data.Backdrops.Add(new ImageInfo
|
|
{
|
|
Url = url,
|
|
Resolution = resolution
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
internal class FanartXmlData
|
|
{
|
|
public string LanguagePoster { get; set; }
|
|
public string LanguageBanner { get; set; }
|
|
public string Poster { get; set; }
|
|
public string Banner { get; set; }
|
|
public List<ImageInfo> Backdrops = new List<ImageInfo>();
|
|
}
|
|
|
|
internal class ImageInfo
|
|
{
|
|
public string Url { get; set; }
|
|
public string Resolution { get; set; }
|
|
}
|
|
}
|