2013-05-02 22:32:15 +00:00
|
|
|
|
using MediaBrowser.Common.Extensions;
|
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-04-25 00:58:56 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using MediaBrowser.Model.Serialization;
|
|
|
|
|
using System;
|
2013-05-05 15:29:34 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-05-06 01:15:48 +00:00
|
|
|
|
using System.Linq;
|
2013-05-06 02:23:19 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2013-04-25 00:58:56 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers.Movies
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class RottenTomatoesMovieProvider
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class RottenTomatoesMovieProvider : BaseMetadataProvider
|
|
|
|
|
{
|
|
|
|
|
// http://developer.rottentomatoes.com/iodocs
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The API key
|
|
|
|
|
/// </summary>
|
2013-05-06 20:47:37 +00:00
|
|
|
|
internal const string ApiKey = "x9wjnvv39ntjmt9zs95nm7bg";
|
2013-04-25 00:58:56 +00:00
|
|
|
|
|
2013-05-06 20:47:37 +00:00
|
|
|
|
internal const string BasicUrl = @"http://api.rottentomatoes.com/api/public/v1.0/";
|
2013-05-05 15:29:34 +00:00
|
|
|
|
private const string MovieImdb = @"movie_alias.json?id={1}&type=imdb&apikey={0}";
|
2013-05-06 20:47:37 +00:00
|
|
|
|
|
|
|
|
|
internal static RottenTomatoesMovieProvider Current { get; private set; }
|
2013-05-05 15:29:34 +00:00
|
|
|
|
|
2013-04-25 00:58:56 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _rotten tomatoes resource pool
|
|
|
|
|
/// </summary>
|
2013-05-06 20:47:37 +00:00
|
|
|
|
internal readonly SemaphoreSlim RottenTomatoesResourcePool = new SemaphoreSlim(1, 1);
|
2013-04-25 00:58:56 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the json serializer.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The json serializer.</value>
|
|
|
|
|
protected IJsonSerializer JsonSerializer { get; private set; }
|
|
|
|
|
|
|
|
|
|
/// <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="RottenTomatoesMovieProvider"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="logManager">The log manager.</param>
|
|
|
|
|
/// <param name="configurationManager">The configuration manager.</param>
|
|
|
|
|
/// <param name="jsonSerializer">The json serializer.</param>
|
|
|
|
|
/// <param name="httpClient">The HTTP client.</param>
|
|
|
|
|
public RottenTomatoesMovieProvider(ILogManager logManager, IServerConfigurationManager configurationManager, IJsonSerializer jsonSerializer, IHttpClient httpClient)
|
|
|
|
|
: base(logManager, configurationManager)
|
|
|
|
|
{
|
|
|
|
|
JsonSerializer = jsonSerializer;
|
|
|
|
|
HttpClient = httpClient;
|
2013-05-06 20:47:37 +00:00
|
|
|
|
Current = this;
|
2013-04-25 00:58:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the provider version.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The provider version.</value>
|
|
|
|
|
protected override string ProviderVersion
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2013-05-06 03:58:45 +00:00
|
|
|
|
return "5";
|
2013-04-25 00:58:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <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>
|
2013-05-05 15:29:34 +00:00
|
|
|
|
/// Supports the specified item.
|
2013-04-25 00:58:56 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
|
|
|
|
|
public override bool Supports(BaseItem item)
|
|
|
|
|
{
|
2013-05-06 15:36:40 +00:00
|
|
|
|
return false;
|
|
|
|
|
var trailer = item as Trailer;
|
|
|
|
|
|
|
|
|
|
if (trailer != null)
|
|
|
|
|
{
|
|
|
|
|
return !trailer.IsLocalTrailer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Don't support local trailers
|
|
|
|
|
return item is Movie;
|
2013-04-25 00:58:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-05 16:55:53 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the comparison data.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="imdbId">The imdb id.</param>
|
|
|
|
|
/// <returns>Guid.</returns>
|
|
|
|
|
private Guid GetComparisonData(string imdbId)
|
|
|
|
|
{
|
|
|
|
|
return string.IsNullOrEmpty(imdbId) ? Guid.Empty : imdbId.GetMD5();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the priority.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The priority.</value>
|
|
|
|
|
public override MetadataProviderPriority Priority
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// Run after moviedb and xml providers
|
2013-05-06 20:47:37 +00:00
|
|
|
|
return MetadataProviderPriority.Third;
|
2013-05-05 16:55:53 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-25 00:58:56 +00:00
|
|
|
|
/// <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 if imdb id has changed
|
2013-05-02 22:32:15 +00:00
|
|
|
|
if (providerInfo.Data != GetComparisonData(item.GetProviderId(MetadataProviders.Imdb)))
|
2013-04-25 00:58:56 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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>
|
2013-05-06 13:21:11 +00:00
|
|
|
|
public override async Task<bool> FetchAsync(BaseItem item, bool force, CancellationToken cancellationToken)
|
2013-04-25 00:58:56 +00:00
|
|
|
|
{
|
|
|
|
|
BaseProviderInfo data;
|
|
|
|
|
|
2013-05-06 13:21:11 +00:00
|
|
|
|
if (!item.ProviderData.TryGetValue(Id, out data))
|
2013-04-25 00:58:56 +00:00
|
|
|
|
{
|
2013-05-06 13:21:11 +00:00
|
|
|
|
data = new BaseProviderInfo();
|
|
|
|
|
item.ProviderData[Id] = data;
|
2013-05-05 15:29:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-06 13:21:11 +00:00
|
|
|
|
var imdbId = item.GetProviderId(MetadataProviders.Imdb);
|
|
|
|
|
|
2013-05-05 15:29:34 +00:00
|
|
|
|
if (string.IsNullOrEmpty(imdbId))
|
|
|
|
|
{
|
2013-05-06 13:21:11 +00:00
|
|
|
|
data.Data = GetComparisonData(imdbId);
|
|
|
|
|
data.LastRefreshStatus = ProviderRefreshStatus.Success;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-05-05 15:29:34 +00:00
|
|
|
|
|
2013-05-06 13:21:11 +00:00
|
|
|
|
// Have IMDB Id
|
2013-05-06 19:31:57 +00:00
|
|
|
|
using (var stream = await HttpClient.Get(new HttpRequestOptions
|
|
|
|
|
{
|
|
|
|
|
Url = GetMovieImdbUrl(imdbId),
|
2013-05-06 20:47:37 +00:00
|
|
|
|
ResourcePool = RottenTomatoesResourcePool,
|
2013-05-06 19:31:57 +00:00
|
|
|
|
CancellationToken = cancellationToken,
|
|
|
|
|
EnableResponseCache = true
|
|
|
|
|
|
|
|
|
|
}).ConfigureAwait(false))
|
2013-05-05 15:29:34 +00:00
|
|
|
|
{
|
2013-05-06 20:47:37 +00:00
|
|
|
|
var hit = JsonSerializer.DeserializeFromStream<RTMovieSearchResult>(stream);
|
2013-05-05 16:55:53 +00:00
|
|
|
|
|
2013-05-06 20:47:37 +00:00
|
|
|
|
if (!string.IsNullOrEmpty(hit.id))
|
2013-05-06 13:21:11 +00:00
|
|
|
|
{
|
|
|
|
|
// Got a result
|
2013-05-06 20:47:37 +00:00
|
|
|
|
item.CriticRatingSummary = hit.critics_consensus;
|
|
|
|
|
item.CriticRating = float.Parse(hit.ratings.critics_score);
|
2013-05-05 15:29:34 +00:00
|
|
|
|
|
2013-05-05 16:55:53 +00:00
|
|
|
|
data.Data = GetComparisonData(hit.alternate_ids.imdb);
|
2013-05-05 15:29:34 +00:00
|
|
|
|
|
2013-05-05 16:55:53 +00:00
|
|
|
|
item.SetProviderId(MetadataProviders.Imdb, hit.alternate_ids.imdb);
|
|
|
|
|
item.SetProviderId(MetadataProviders.RottenTomatoes, hit.id);
|
|
|
|
|
}
|
2013-05-05 15:29:34 +00:00
|
|
|
|
}
|
2013-04-25 00:58:56 +00:00
|
|
|
|
|
2013-05-06 15:36:40 +00:00
|
|
|
|
data.Data = GetComparisonData(imdbId);
|
|
|
|
|
data.LastRefreshStatus = ProviderRefreshStatus.Success;
|
2013-05-05 16:55:53 +00:00
|
|
|
|
|
2013-04-25 00:58:56 +00:00
|
|
|
|
SetLastRefreshed(item, DateTime.UtcNow);
|
|
|
|
|
|
2013-05-06 13:21:11 +00:00
|
|
|
|
return true;
|
2013-04-25 00:58:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-05 16:55:53 +00:00
|
|
|
|
// Utility functions to get the URL of the API calls
|
|
|
|
|
|
2013-05-06 15:36:40 +00:00
|
|
|
|
private string GetMovieImdbUrl(string imdbId)
|
2013-05-05 15:29:34 +00:00
|
|
|
|
{
|
|
|
|
|
return BasicUrl + string.Format(MovieImdb, ApiKey, imdbId.TrimStart('t'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Data contract classes for use with the Rotten Tomatoes API
|
|
|
|
|
|
|
|
|
|
protected class RTSearchResults
|
|
|
|
|
{
|
|
|
|
|
public int total { get; set; }
|
|
|
|
|
public List<RTMovieSearchResult> movies { get; set; }
|
|
|
|
|
public RTSearchLinks links { get; set; }
|
|
|
|
|
public string link_template { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected class RTSearchLinks
|
|
|
|
|
{
|
|
|
|
|
public string self { get; set; }
|
|
|
|
|
public string next { get; set; }
|
|
|
|
|
public string previous { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected class RTMovieSearchResult
|
|
|
|
|
{
|
|
|
|
|
public string title { get; set; }
|
|
|
|
|
public int year { get; set; }
|
|
|
|
|
public string runtime { get; set; }
|
|
|
|
|
public string synopsis { get; set; }
|
2013-05-06 03:58:45 +00:00
|
|
|
|
public string critics_consensus { get; set; }
|
2013-05-05 15:29:34 +00:00
|
|
|
|
public string mpaa_rating { get; set; }
|
|
|
|
|
public string id { get; set; }
|
|
|
|
|
public RTRatings ratings { get; set; }
|
|
|
|
|
public RTAlternateIds alternate_ids { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected class RTRatings
|
|
|
|
|
{
|
|
|
|
|
public string critics_rating { get; set; }
|
|
|
|
|
public string critics_score { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected class RTAlternateIds
|
|
|
|
|
{
|
|
|
|
|
public string imdb { get; set; }
|
|
|
|
|
}
|
2013-04-25 00:58:56 +00:00
|
|
|
|
}
|
2013-05-05 15:29:34 +00:00
|
|
|
|
}
|