692 lines
26 KiB
C#
692 lines
26 KiB
C#
using MediaBrowser.Common.Configuration;
|
||
using MediaBrowser.Common.Extensions;
|
||
using MediaBrowser.Common.Net;
|
||
using MediaBrowser.Controller.Configuration;
|
||
using MediaBrowser.Controller.Entities;
|
||
using MediaBrowser.Controller.Entities.TV;
|
||
using MediaBrowser.Controller.Extensions;
|
||
using MediaBrowser.Controller.Library;
|
||
using MediaBrowser.Model.Entities;
|
||
using MediaBrowser.Model.IO;
|
||
using MediaBrowser.Model.Logging;
|
||
using MediaBrowser.Model.Net;
|
||
using System;
|
||
using System.Globalization;
|
||
using System.IO;
|
||
using System.Linq;
|
||
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
|
||
{
|
||
/// <summary>
|
||
/// The _provider manager
|
||
/// </summary>
|
||
private readonly IProviderManager _providerManager;
|
||
|
||
/// <summary>
|
||
/// The tv db
|
||
/// </summary>
|
||
internal readonly SemaphoreSlim TvDbResourcePool = new SemaphoreSlim(1, 1);
|
||
|
||
/// <summary>
|
||
/// Gets the current.
|
||
/// </summary>
|
||
/// <value>The current.</value>
|
||
internal static RemoteSeriesProvider Current { get; private set; }
|
||
|
||
/// <summary>
|
||
/// The _zip client
|
||
/// </summary>
|
||
private readonly IZipClient _zipClient;
|
||
|
||
/// <summary>
|
||
/// Gets the HTTP client.
|
||
/// </summary>
|
||
/// <value>The HTTP client.</value>
|
||
protected IHttpClient HttpClient { get; private set; }
|
||
|
||
/// <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>
|
||
/// <param name="zipClient">The zip client.</param>
|
||
/// <exception cref="System.ArgumentNullException">httpClient</exception>
|
||
public RemoteSeriesProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager, IZipClient zipClient)
|
||
: base(logManager, configurationManager)
|
||
{
|
||
if (httpClient == null)
|
||
{
|
||
throw new ArgumentNullException("httpClient");
|
||
}
|
||
HttpClient = httpClient;
|
||
_providerManager = providerManager;
|
||
_zipClient = zipClient;
|
||
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)
|
||
{
|
||
if (dispose)
|
||
{
|
||
TvDbResourcePool.Dispose();
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// The root URL
|
||
/// </summary>
|
||
private const string RootUrl = "http://www.thetvdb.com/api/";
|
||
/// <summary>
|
||
/// The series query
|
||
/// </summary>
|
||
private const string SeriesQuery = "GetSeries.php?seriesname={0}";
|
||
/// <summary>
|
||
/// The series get zip
|
||
/// </summary>
|
||
private const string SeriesGetZip = "http://www.thetvdb.com/api/{0}/series/{1}/all/{2}.zip";
|
||
|
||
/// <summary>
|
||
/// The LOCA l_ MET a_ FIL e_ NAME
|
||
/// </summary>
|
||
protected const string LocalMetaFileName = "Series.xml";
|
||
|
||
/// <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>
|
||
/// 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";
|
||
}
|
||
}
|
||
|
||
/// <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)
|
||
{
|
||
// Refresh even if local metadata exists because we need episode infos
|
||
if (GetComparisonData(item) != providerInfo.Data)
|
||
{
|
||
return true;
|
||
}
|
||
|
||
return base.NeedsRefreshInternal(item, providerInfo);
|
||
}
|
||
|
||
/// <summary>
|
||
/// Gets the comparison data.
|
||
/// </summary>
|
||
/// <param name="item">The item.</param>
|
||
/// <returns>Guid.</returns>
|
||
private Guid GetComparisonData(BaseItem item)
|
||
{
|
||
var series = (Series)item;
|
||
var seriesId = series.GetProviderId(MetadataProviders.Tvdb);
|
||
|
||
if (!string.IsNullOrEmpty(seriesId))
|
||
{
|
||
// Process images
|
||
var path = GetSeriesDataPath(ConfigurationManager.ApplicationPaths, seriesId);
|
||
|
||
var files = new DirectoryInfo(path)
|
||
.EnumerateFiles("*.xml", SearchOption.TopDirectoryOnly)
|
||
.Select(i => i.FullName + i.LastWriteTimeUtc.Ticks)
|
||
.ToArray();
|
||
|
||
if (files.Length > 0)
|
||
{
|
||
return string.Join(string.Empty, files).GetMD5();
|
||
}
|
||
}
|
||
|
||
return Guid.Empty;
|
||
}
|
||
/// <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))
|
||
{
|
||
seriesId = await GetSeriesId(series, cancellationToken);
|
||
}
|
||
|
||
cancellationToken.ThrowIfCancellationRequested();
|
||
|
||
var status = ProviderRefreshStatus.Success;
|
||
|
||
if (!string.IsNullOrEmpty(seriesId))
|
||
{
|
||
series.SetProviderId(MetadataProviders.Tvdb, seriesId);
|
||
|
||
var seriesDataPath = GetSeriesDataPath(ConfigurationManager.ApplicationPaths, seriesId);
|
||
|
||
status = await FetchSeriesData(series, seriesId, seriesDataPath, cancellationToken).ConfigureAwait(false);
|
||
}
|
||
|
||
BaseProviderInfo data;
|
||
if (!item.ProviderData.TryGetValue(Id, out data))
|
||
{
|
||
data = new BaseProviderInfo();
|
||
item.ProviderData[Id] = data;
|
||
}
|
||
|
||
data.Data = GetComparisonData(item);
|
||
|
||
SetLastRefreshed(item, DateTime.UtcNow, status);
|
||
return true;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Fetches the series data.
|
||
/// </summary>
|
||
/// <param name="series">The series.</param>
|
||
/// <param name="seriesId">The series id.</param>
|
||
/// <param name="seriesDataPath">The series data path.</param>
|
||
/// <param name="cancellationToken">The cancellation token.</param>
|
||
/// <returns>Task{System.Boolean}.</returns>
|
||
private async Task<ProviderRefreshStatus> FetchSeriesData(Series series, string seriesId, string seriesDataPath, CancellationToken cancellationToken)
|
||
{
|
||
var status = ProviderRefreshStatus.Success;
|
||
|
||
var files = Directory.EnumerateFiles(seriesDataPath, "*.xml", SearchOption.TopDirectoryOnly).Select(Path.GetFileName).ToArray();
|
||
|
||
var seriesXmlFilename = ConfigurationManager.Configuration.PreferredMetadataLanguage.ToLower() + ".xml";
|
||
|
||
// Only download if not already there
|
||
// The prescan task will take care of updates so we don't need to re-download here
|
||
if (!files.Contains("banners.xml", StringComparer.OrdinalIgnoreCase) || !files.Contains("actors.xml", StringComparer.OrdinalIgnoreCase) || !files.Contains(seriesXmlFilename, StringComparer.OrdinalIgnoreCase))
|
||
{
|
||
await DownloadSeriesZip(seriesId, seriesDataPath, cancellationToken).ConfigureAwait(false);
|
||
}
|
||
|
||
// Only examine the main info if there's no local metadata
|
||
if (!HasLocalMeta(series))
|
||
{
|
||
var seriesXmlPath = Path.Combine(seriesDataPath, seriesXmlFilename);
|
||
var actorsXmlPath = Path.Combine(seriesDataPath, "actors.xml");
|
||
|
||
var seriesDoc = new XmlDocument();
|
||
seriesDoc.Load(seriesXmlPath);
|
||
|
||
FetchMainInfo(series, seriesDoc);
|
||
|
||
var actorsDoc = new XmlDocument();
|
||
actorsDoc.Load(actorsXmlPath);
|
||
|
||
FetchActors(series, actorsDoc, seriesDoc);
|
||
|
||
if (ConfigurationManager.Configuration.SaveLocalMeta)
|
||
{
|
||
var ms = new MemoryStream();
|
||
seriesDoc.Save(ms);
|
||
|
||
await _providerManager.SaveToLibraryFilesystem(series, Path.Combine(series.MetaLocation, LocalMetaFileName), ms, cancellationToken).ConfigureAwait(false);
|
||
}
|
||
}
|
||
|
||
// Process images
|
||
var imagesXmlPath = Path.Combine(seriesDataPath, "banners.xml");
|
||
|
||
try
|
||
{
|
||
var xmlDoc = new XmlDocument();
|
||
xmlDoc.Load(imagesXmlPath);
|
||
|
||
await FetchImages(series, xmlDoc, cancellationToken).ConfigureAwait(false);
|
||
}
|
||
catch (HttpException)
|
||
{
|
||
// Have the provider try again next time, but don't let it fail here
|
||
status = ProviderRefreshStatus.CompletedWithErrors;
|
||
}
|
||
|
||
return status;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Downloads the series zip.
|
||
/// </summary>
|
||
/// <param name="seriesId">The series id.</param>
|
||
/// <param name="seriesDataPath">The series data path.</param>
|
||
/// <param name="cancellationToken">The cancellation token.</param>
|
||
/// <returns>Task.</returns>
|
||
internal async Task DownloadSeriesZip(string seriesId, string seriesDataPath, CancellationToken cancellationToken)
|
||
{
|
||
var url = string.Format(SeriesGetZip, TVUtils.TvdbApiKey, seriesId, ConfigurationManager.Configuration.PreferredMetadataLanguage);
|
||
|
||
using (var zipStream = await HttpClient.Get(new HttpRequestOptions
|
||
{
|
||
Url = url,
|
||
ResourcePool = TvDbResourcePool,
|
||
CancellationToken = cancellationToken
|
||
|
||
}).ConfigureAwait(false))
|
||
{
|
||
// Copy to memory stream because we need a seekable stream
|
||
using (var ms = new MemoryStream())
|
||
{
|
||
await zipStream.CopyToAsync(ms).ConfigureAwait(false);
|
||
|
||
ms.Position = 0;
|
||
_zipClient.ExtractAll(ms, seriesDataPath, true);
|
||
}
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Gets the series data path.
|
||
/// </summary>
|
||
/// <param name="appPaths">The app paths.</param>
|
||
/// <param name="seriesId">The series id.</param>
|
||
/// <returns>System.String.</returns>
|
||
internal static string GetSeriesDataPath(IApplicationPaths appPaths, string seriesId)
|
||
{
|
||
var seriesDataPath = Path.Combine(GetSeriesDataPath(appPaths), seriesId);
|
||
|
||
if (!Directory.Exists(seriesDataPath))
|
||
{
|
||
Directory.CreateDirectory(seriesDataPath);
|
||
}
|
||
|
||
return seriesDataPath;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Gets the series data path.
|
||
/// </summary>
|
||
/// <param name="appPaths">The app paths.</param>
|
||
/// <returns>System.String.</returns>
|
||
internal static string GetSeriesDataPath(IApplicationPaths appPaths)
|
||
{
|
||
var dataPath = Path.Combine(appPaths.DataPath, "tvdb");
|
||
|
||
if (!Directory.Exists(dataPath))
|
||
{
|
||
Directory.CreateDirectory(dataPath);
|
||
}
|
||
|
||
return dataPath;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Fetches the main info.
|
||
/// </summary>
|
||
/// <param name="series">The series.</param>
|
||
/// <param name="doc">The doc.</param>
|
||
private void FetchMainInfo(Series series, XmlDocument doc)
|
||
{
|
||
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 s = doc.SafeGetString("//Network");
|
||
|
||
if (!string.IsNullOrWhiteSpace(s))
|
||
{
|
||
series.Studios.Clear();
|
||
|
||
foreach (var studio in s.Trim().Split('|'))
|
||
{
|
||
series.AddStudio(studio);
|
||
}
|
||
}
|
||
|
||
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);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Fetches the actors.
|
||
/// </summary>
|
||
/// <param name="series">The series.</param>
|
||
/// <param name="actorsDoc">The actors doc.</param>
|
||
/// <param name="seriesDoc">The seriesDoc.</param>
|
||
/// <returns>Task.</returns>
|
||
private void FetchActors(Series series, XmlDocument actorsDoc, XmlDocument seriesDoc)
|
||
{
|
||
XmlNode actorsNode = null;
|
||
if (ConfigurationManager.Configuration.SaveLocalMeta)
|
||
{
|
||
//add to the main seriesDoc for saving
|
||
var seriesNode = seriesDoc.SelectSingleNode("//Series");
|
||
if (seriesNode != null)
|
||
{
|
||
actorsNode = seriesDoc.CreateNode(XmlNodeType.Element, "Persons", null);
|
||
seriesNode.AppendChild(actorsNode);
|
||
}
|
||
}
|
||
|
||
var xmlNodeList = actorsDoc.SelectNodes("Actors/Actor");
|
||
|
||
if (xmlNodeList != null)
|
||
{
|
||
series.People.Clear();
|
||
|
||
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 });
|
||
|
||
if (ConfigurationManager.Configuration.SaveLocalMeta && actorsNode != null)
|
||
{
|
||
//create in main seriesDoc
|
||
var personNode = seriesDoc.CreateNode(XmlNodeType.Element, "Person", null);
|
||
foreach (XmlNode subNode in p.ChildNodes)
|
||
personNode.AppendChild(seriesDoc.ImportNode(subNode, true));
|
||
//need to add the type
|
||
var typeNode = seriesDoc.CreateNode(XmlNodeType.Element, "Type", null);
|
||
typeNode.InnerText = PersonType.Actor;
|
||
personNode.AppendChild(typeNode);
|
||
actorsNode.AppendChild(personNode);
|
||
}
|
||
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// The us culture
|
||
/// </summary>
|
||
protected readonly CultureInfo UsCulture = new CultureInfo("en-US");
|
||
|
||
/// <summary>
|
||
/// Fetches the images.
|
||
/// </summary>
|
||
/// <param name="series">The series.</param>
|
||
/// <param name="images">The images.</param>
|
||
/// <param name="cancellationToken">The cancellation token.</param>
|
||
/// <returns>Task.</returns>
|
||
private async Task FetchImages(Series series, XmlDocument images, CancellationToken cancellationToken)
|
||
{
|
||
if (ConfigurationManager.Configuration.RefreshItemImages || !series.HasImage(ImageType.Primary))
|
||
{
|
||
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);
|
||
}
|
||
}
|
||
}
|
||
|
||
if (ConfigurationManager.Configuration.DownloadSeriesImages.Banner && (ConfigurationManager.Configuration.RefreshItemImages || !series.HasImage(ImageType.Banner)))
|
||
{
|
||
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);
|
||
|
||
series.SetImage(ImageType.Banner, bannerImagePath);
|
||
}
|
||
}
|
||
}
|
||
|
||
if (series.BackdropImagePaths.Count < ConfigurationManager.Configuration.MaxBackdrops)
|
||
{
|
||
var bdNo = 0;
|
||
var xmlNodeList = images.SelectNodes("//Banner[BannerType='fanart']");
|
||
if (xmlNodeList != null)
|
||
{
|
||
foreach (XmlNode b in xmlNodeList)
|
||
{
|
||
var p = b.SelectSingleNode("./BannerPath");
|
||
|
||
if (p != null)
|
||
{
|
||
var bdName = "backdrop" + (bdNo > 0 ? bdNo.ToString(UsCulture) : "");
|
||
series.BackdropImagePaths.Add(await _providerManager.DownloadAndSaveImage(series, TVUtils.BannerUrl + p.InnerText, bdName + Path.GetExtension(p.InnerText), ConfigurationManager.Configuration.SaveLocalMeta, TvDbResourcePool, cancellationToken).ConfigureAwait(false));
|
||
bdNo++;
|
||
}
|
||
|
||
if (series.BackdropImagePaths.Count >= ConfigurationManager.Configuration.MaxBackdrops) break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
/// <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);
|
||
}
|
||
|
||
/// <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));
|
||
var doc = new XmlDocument();
|
||
|
||
using (var results = await HttpClient.Get(new HttpRequestOptions
|
||
{
|
||
Url = url,
|
||
ResourcePool = TvDbResourcePool,
|
||
CancellationToken = cancellationToken
|
||
|
||
}).ConfigureAwait(false))
|
||
{
|
||
doc.Load(results);
|
||
}
|
||
|
||
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();
|
||
}
|
||
|
||
/// <summary>
|
||
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
||
/// </summary>
|
||
public void Dispose()
|
||
{
|
||
Dispose(true);
|
||
}
|
||
}
|
||
}
|