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>
private const string ApiKey = "x9wjnvv39ntjmt9zs95nm7bg" ;
2013-05-05 15:29:34 +00:00
private const string BasicUrl = @"http://api.rottentomatoes.com/api/public/v1.0/" ;
private const string Movie = @"movies/{1}.json?apikey={0}" ;
private const string MovieImdb = @"movie_alias.json?id={1}&type=imdb&apikey={0}" ;
private const string MovieSearch = @"movies.json?q={1}&apikey={0}&page_limit=20&page={2}" ;
private const string MoviesReviews = @"movies/{1}/reviews.json?review_type=top_critic&page_limit=10&page=1&country=us&apikey={0}" ;
2013-04-25 00:58:56 +00:00
/// <summary>
/// The _rotten tomatoes resource pool
/// </summary>
2013-05-06 03:58:45 +00:00
private readonly SemaphoreSlim _rottenTomatoesResourcePool = new SemaphoreSlim ( 2 , 2 ) ;
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 ;
}
/// <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 )
{
return item is Movie ;
}
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
return MetadataProviderPriority . Last ;
}
}
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>
public override Task < bool > FetchAsync ( BaseItem item , bool force , CancellationToken cancellationToken )
{
BaseProviderInfo data ;
2013-05-05 16:55:53 +00:00
// See whether there's an IMDB Id available
2013-05-05 15:29:34 +00:00
string imdbId = null ;
2013-04-25 00:58:56 +00:00
if ( item . ProviderData . TryGetValue ( Id , out data ) )
{
2013-05-05 15:29:34 +00:00
imdbId = item . GetProviderId ( MetadataProviders . Imdb ) ;
}
RTMovieSearchResult hit = null ;
2013-05-05 15:47:21 +00:00
2013-05-05 15:29:34 +00:00
if ( string . IsNullOrEmpty ( imdbId ) )
{
// No IMDB Id, search RT for an ID
2013-05-06 01:15:48 +00:00
var page = 1 ;
using ( var stream = HttpClient . Get ( MovieSearchUrl ( item . Name , page ) , _rottenTomatoesResourcePool , cancellationToken ) . Result )
2013-05-05 15:29:34 +00:00
{
2013-05-06 01:15:48 +00:00
var result = JsonSerializer . DeserializeFromStream < RTSearchResults > ( stream ) ;
2013-05-05 16:55:53 +00:00
if ( result . total = = 1 )
2013-05-05 15:29:34 +00:00
{
2013-05-05 16:55:53 +00:00
// With only one result we'll have to assume that this is the movie we're searching for
hit = result . movies [ 0 ] ;
}
else if ( result . total > 1 )
{
// If there are more results than one
// Step 1: Loop through all current results, see if there's an exact match (not case sensitive) somewhere, if so, accept that as the searched item, else go to step 2
// Step 2: Retrieve the next page and go to step 1 if there are results, else, stop checking
2013-05-05 15:29:34 +00:00
2013-05-05 16:55:53 +00:00
while ( hit = = null )
2013-05-05 15:29:34 +00:00
{
2013-05-05 16:55:53 +00:00
foreach ( var searchHit in result . movies )
{
if ( string . Equals ( searchHit . title , item . Name , StringComparison . InvariantCultureIgnoreCase ) )
{
hit = searchHit ;
break ;
}
}
2013-05-05 15:29:34 +00:00
2013-05-05 16:55:53 +00:00
if ( hit = = null )
2013-05-05 15:29:34 +00:00
{
2013-05-06 01:15:48 +00:00
using ( var newPageStream = HttpClient . Get ( MovieSearchUrl ( item . Name , page + + ) , _rottenTomatoesResourcePool , cancellationToken ) . Result )
2013-05-05 16:55:53 +00:00
{
2013-05-06 01:15:48 +00:00
result = JsonSerializer . DeserializeFromStream < RTSearchResults > ( newPageStream ) ;
2013-05-05 16:55:53 +00:00
if ( result . total = = 0 )
{
// No results found on RottenTomatoes
break ;
}
}
2013-05-05 15:29:34 +00:00
}
2013-05-05 16:55:53 +00:00
// while end
2013-05-05 15:29:34 +00:00
}
}
}
2013-05-05 16:55:53 +00:00
// if null end
2013-05-05 15:29:34 +00:00
}
else
{
// Have IMDB Id
2013-05-06 01:15:48 +00:00
using ( var stream = HttpClient . Get ( MovieImdbUrl ( imdbId ) , _rottenTomatoesResourcePool , cancellationToken ) . Result )
2013-05-05 15:29:34 +00:00
{
2013-05-06 01:15:48 +00:00
var result = JsonSerializer . DeserializeFromStream < RTMovieSearchResult > ( stream ) ;
2013-05-05 16:55:53 +00:00
if ( ! string . IsNullOrEmpty ( result . id ) )
{
// Got a result
hit = result ;
}
2013-05-05 15:29:34 +00:00
}
}
2013-05-05 16:55:53 +00:00
// If we found any results, that's great!
2013-05-05 15:29:34 +00:00
if ( hit ! = null )
{
2013-05-06 03:58:45 +00:00
item . CriticRatingSummary = hit . critics_consensus ;
2013-05-05 15:29:34 +00:00
item . CriticRating = float . Parse ( hit . ratings . critics_score ) ;
2013-05-06 01:15:48 +00:00
using ( var stream = HttpClient . Get ( MovieReviewsUrl ( hit . id ) , _rottenTomatoesResourcePool , cancellationToken ) . Result )
2013-05-05 15:29:34 +00:00
{
2013-05-06 01:15:48 +00:00
var result = JsonSerializer . DeserializeFromStream < RTReviewList > ( stream ) ;
2013-05-05 16:55:53 +00:00
2013-05-06 01:15:48 +00:00
item . CriticReviews = result . reviews . Select ( rtReview = > new ItemReview
2013-05-05 16:55:53 +00:00
{
2013-05-06 01:15:48 +00:00
ReviewerName = rtReview . critic ,
Publisher = rtReview . publication ,
Date = DateTime . Parse ( rtReview . date ) . ToUniversalTime ( ) ,
Caption = rtReview . quote ,
2013-05-06 02:23:19 +00:00
Url = rtReview . links . review ,
Likes = string . Equals ( rtReview . freshness , "fresh" , StringComparison . OrdinalIgnoreCase )
2013-05-06 01:15:48 +00:00
} ) . ToList ( ) ;
2013-05-05 15:29:34 +00:00
2013-05-05 16:55:53 +00:00
if ( data = = null )
{
data = new BaseProviderInfo ( ) ;
}
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
}
else
{
// Nothing found on RT
Logger . Info ( "Nothing found on RottenTomatoes for Movie \"{0}\"" , item . Name ) ;
// TODO: When alternative names are implemented search for those instead
2013-04-25 00:58:56 +00:00
}
2013-05-05 15:47:21 +00:00
if ( data ! = null )
{
data . Data = GetComparisonData ( imdbId ) ;
2013-05-05 16:55:53 +00:00
data . LastRefreshStatus = ProviderRefreshStatus . Success ;
2013-05-05 15:47:21 +00:00
}
2013-05-05 16:55:53 +00:00
2013-04-25 00:58:56 +00:00
SetLastRefreshed ( item , DateTime . UtcNow ) ;
return Task . FromResult ( true ) ;
}
2013-05-05 16:55:53 +00:00
// Utility functions to get the URL of the API calls
2013-05-05 15:29:34 +00:00
private string MovieUrl ( string rtId )
{
return BasicUrl + string . Format ( Movie , ApiKey , rtId ) ;
}
private string MovieImdbUrl ( string imdbId )
{
return BasicUrl + string . Format ( MovieImdb , ApiKey , imdbId . TrimStart ( 't' ) ) ;
}
private string MovieSearchUrl ( string query , int page = 1 )
{
return BasicUrl + string . Format ( MovieSearch , ApiKey , Uri . EscapeDataString ( query ) , page ) ;
}
private string MovieReviewsUrl ( string rtId )
{
return BasicUrl + string . Format ( MoviesReviews , ApiKey , rtId ) ;
}
// 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 ; }
}
protected class RTReviewList
{
public int total { get ; set ; }
public List < RTReview > reviews { get ; set ; }
}
protected class RTReview
{
public string critic { get ; set ; }
public string date { get ; set ; }
public string freshness { get ; set ; }
public string publication { get ; set ; }
public string quote { get ; set ; }
public RTReviewLink links { get ; set ; }
2013-05-06 03:58:45 +00:00
public string original_score { get ; set ; }
2013-05-05 15:29:34 +00:00
}
2013-05-05 16:55:53 +00:00
protected class RTReviewLink
2013-05-05 15:29:34 +00:00
{
public string review { get ; set ; }
}
2013-04-25 00:58:56 +00:00
}
2013-05-05 15:29:34 +00:00
}