jellyfin/MediaBrowser.Providers/Plugins/Omdb/OmdbProvider.cs

557 lines
19 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
2014-02-03 21:51:28 +01:00
using System;
using System.Collections.Generic;
2014-02-03 21:51:28 +01:00
using System.Globalization;
using System.IO;
2014-02-03 21:51:28 +01:00
using System.Linq;
2019-06-14 18:38:14 +02:00
using System.Net.Http;
using System.Text;
2014-02-03 21:51:28 +01:00
using System.Threading;
using System.Threading.Tasks;
2018-09-12 19:26:21 +02:00
using MediaBrowser.Common;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Serialization;
2014-02-03 21:51:28 +01:00
2020-03-09 15:36:02 +01:00
namespace MediaBrowser.Providers.Plugins.Omdb
2014-02-03 21:51:28 +01:00
{
public class OmdbProvider
{
private readonly IJsonSerializer _jsonSerializer;
private readonly IFileSystem _fileSystem;
private readonly IServerConfigurationManager _configurationManager;
2020-08-17 21:10:02 +02:00
private readonly IHttpClientFactory _httpClientFactory;
2014-02-03 21:51:28 +01:00
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
2018-09-12 19:26:21 +02:00
private readonly IApplicationHost _appHost;
2014-02-03 21:51:28 +01:00
2020-08-17 21:10:02 +02:00
public OmdbProvider(IJsonSerializer jsonSerializer, IHttpClientFactory httpClientFactory, IFileSystem fileSystem, IApplicationHost appHost, IServerConfigurationManager configurationManager)
2014-02-03 21:51:28 +01:00
{
_jsonSerializer = jsonSerializer;
2020-08-17 21:10:02 +02:00
_httpClientFactory = httpClientFactory;
_fileSystem = fileSystem;
_configurationManager = configurationManager;
2018-09-12 19:26:21 +02:00
_appHost = appHost;
2014-02-03 21:51:28 +01:00
}
public async Task Fetch<T>(MetadataResult<T> itemResult, string imdbId, string language, string country, CancellationToken cancellationToken)
2016-11-15 20:42:43 +01:00
where T : BaseItem
2014-02-03 21:51:28 +01:00
{
2015-05-29 01:37:43 +02:00
if (string.IsNullOrWhiteSpace(imdbId))
{
throw new ArgumentNullException(nameof(imdbId));
2015-05-29 01:37:43 +02:00
}
2019-01-13 21:37:13 +01:00
var item = itemResult.Item;
2016-12-23 20:35:05 +01:00
var result = await GetRootObject(imdbId, cancellationToken).ConfigureAwait(false);
2014-02-03 21:51:28 +01:00
2016-11-15 20:42:43 +01:00
// Only take the name and rating if the user's language is set to english, since Omdb has no localization
2017-10-05 20:10:07 +02:00
if (string.Equals(language, "en", StringComparison.OrdinalIgnoreCase) || _configurationManager.Configuration.EnableNewOmdbSupport)
2016-11-15 20:42:43 +01:00
{
item.Name = result.Title;
2015-08-19 18:43:23 +02:00
2016-11-15 20:42:43 +01:00
if (string.Equals(country, "us", StringComparison.OrdinalIgnoreCase))
{
item.OfficialRating = result.Rated;
2015-07-06 16:20:23 +02:00
}
2016-11-15 20:42:43 +01:00
}
2015-05-30 16:32:18 +02:00
2016-11-15 20:42:43 +01:00
if (!string.IsNullOrEmpty(result.Year) && result.Year.Length >= 4
&& int.TryParse(result.Year.AsSpan().Slice(0, 4), NumberStyles.Number, _usCulture, out var year)
2016-11-15 20:42:43 +01:00
&& year >= 0)
{
item.ProductionYear = year;
}
2015-05-30 16:32:18 +02:00
2017-04-12 19:09:12 +02:00
var tomatoScore = result.GetRottenTomatoScore();
2014-02-03 21:51:28 +01:00
2017-04-12 19:09:12 +02:00
if (tomatoScore.HasValue)
2016-10-17 18:35:29 +02:00
{
2017-04-12 19:09:12 +02:00
item.CriticRating = tomatoScore;
2016-10-17 18:35:29 +02:00
}
2014-02-03 21:51:28 +01:00
2016-11-15 20:42:43 +01:00
if (!string.IsNullOrEmpty(result.imdbVotes)
&& int.TryParse(result.imdbVotes, NumberStyles.Number, _usCulture, out var voteCount)
2016-11-15 20:42:43 +01:00
&& voteCount >= 0)
{
2020-06-14 11:11:11 +02:00
// item.VoteCount = voteCount;
2016-11-15 20:42:43 +01:00
}
2014-02-03 21:51:28 +01:00
2016-11-15 20:42:43 +01:00
if (!string.IsNullOrEmpty(result.imdbRating)
&& float.TryParse(result.imdbRating, NumberStyles.Any, _usCulture, out var imdbRating)
2016-11-15 20:42:43 +01:00
&& imdbRating >= 0)
{
item.CommunityRating = imdbRating;
}
2014-02-03 21:51:28 +01:00
if (!string.IsNullOrEmpty(result.Website))
{
item.HomePageUrl = result.Website;
}
2014-02-03 21:51:28 +01:00
2016-11-15 20:42:43 +01:00
if (!string.IsNullOrWhiteSpace(result.imdbID))
{
2020-06-06 21:17:49 +02:00
item.SetProviderId(MetadataProvider.Imdb, result.imdbID);
2016-11-15 20:42:43 +01:00
}
2015-05-30 16:32:18 +02:00
2016-11-15 20:42:43 +01:00
ParseAdditionalMetadata(itemResult, result);
}
public async Task<bool> FetchEpisodeData<T>(MetadataResult<T> itemResult, int episodeNumber, int seasonNumber, string episodeImdbId, string seriesImdbId, string language, string country, CancellationToken cancellationToken)
where T : BaseItem
{
if (string.IsNullOrWhiteSpace(seriesImdbId))
{
throw new ArgumentNullException(nameof(seriesImdbId));
}
2019-01-13 21:37:13 +01:00
var item = itemResult.Item;
var seasonResult = await GetSeasonRootObject(seriesImdbId, seasonNumber, cancellationToken).ConfigureAwait(false);
2016-10-22 16:51:19 +02:00
if (seasonResult == null)
{
return false;
}
RootObject result = null;
if (!string.IsNullOrWhiteSpace(episodeImdbId))
{
foreach (var episode in seasonResult.Episodes)
{
if (string.Equals(episodeImdbId, episode.imdbID, StringComparison.OrdinalIgnoreCase))
{
result = episode;
break;
}
}
}
// finally, search by numbers
if (result == null)
{
foreach (var episode in seasonResult.Episodes)
{
if (episode.Episode == episodeNumber)
{
result = episode;
break;
}
}
}
if (result == null)
{
return false;
}
// Only take the name and rating if the user's language is set to english, since Omdb has no localization
2017-10-05 20:10:07 +02:00
if (string.Equals(language, "en", StringComparison.OrdinalIgnoreCase) || _configurationManager.Configuration.EnableNewOmdbSupport)
{
item.Name = result.Title;
if (string.Equals(country, "us", StringComparison.OrdinalIgnoreCase))
{
item.OfficialRating = result.Rated;
}
}
if (!string.IsNullOrEmpty(result.Year) && result.Year.Length >= 4
&& int.TryParse(result.Year.AsSpan().Slice(0, 4), NumberStyles.Number, _usCulture, out var year)
&& year >= 0)
{
item.ProductionYear = year;
}
2017-04-12 19:09:12 +02:00
var tomatoScore = result.GetRottenTomatoScore();
2017-04-12 19:09:12 +02:00
if (tomatoScore.HasValue)
2016-10-17 18:35:29 +02:00
{
2017-04-12 19:09:12 +02:00
item.CriticRating = tomatoScore;
}
if (!string.IsNullOrEmpty(result.imdbVotes)
&& int.TryParse(result.imdbVotes, NumberStyles.Number, _usCulture, out var voteCount)
&& voteCount >= 0)
{
2020-06-14 11:11:11 +02:00
// item.VoteCount = voteCount;
}
if (!string.IsNullOrEmpty(result.imdbRating)
&& float.TryParse(result.imdbRating, NumberStyles.Any, _usCulture, out var imdbRating)
&& imdbRating >= 0)
{
item.CommunityRating = imdbRating;
}
if (!string.IsNullOrEmpty(result.Website))
{
item.HomePageUrl = result.Website;
}
if (!string.IsNullOrWhiteSpace(result.imdbID))
{
2020-06-06 21:17:49 +02:00
item.SetProviderId(MetadataProvider.Imdb, result.imdbID);
}
ParseAdditionalMetadata(itemResult, result);
return true;
}
internal async Task<RootObject> GetRootObject(string imdbId, CancellationToken cancellationToken)
{
2016-12-23 20:35:05 +01:00
var path = await EnsureItemInfo(imdbId, cancellationToken).ConfigureAwait(false);
string resultString;
2020-01-08 17:52:50 +01:00
using (var stream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read))
{
using (var reader = new StreamReader(stream, new UTF8Encoding(false)))
{
resultString = reader.ReadToEnd();
resultString = resultString.Replace("\"N/A\"", "\"\"");
}
}
var result = _jsonSerializer.DeserializeFromString<RootObject>(resultString);
return result;
}
internal async Task<SeasonRootObject> GetSeasonRootObject(string imdbId, int seasonId, CancellationToken cancellationToken)
{
2016-12-23 20:35:05 +01:00
var path = await EnsureSeasonInfo(imdbId, seasonId, cancellationToken).ConfigureAwait(false);
string resultString;
2020-01-08 17:52:50 +01:00
using (var stream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read))
{
using (var reader = new StreamReader(stream, new UTF8Encoding(false)))
{
resultString = reader.ReadToEnd();
resultString = resultString.Replace("\"N/A\"", "\"\"");
}
}
var result = _jsonSerializer.DeserializeFromString<SeasonRootObject>(resultString);
return result;
}
internal static bool IsValidSeries(Dictionary<string, string> seriesProviderIds)
{
2020-06-06 21:17:49 +02:00
if (seriesProviderIds.TryGetValue(MetadataProvider.Imdb.ToString(), out string id) && !string.IsNullOrEmpty(id))
{
// This check should ideally never be necessary but we're seeing some cases of this and haven't tracked them down yet.
if (!string.IsNullOrWhiteSpace(id))
{
return true;
}
}
return false;
}
2020-08-07 19:26:28 +02:00
public static string GetOmdbUrl(string query)
2017-02-13 22:03:41 +01:00
{
2020-08-07 19:26:28 +02:00
const string Url = "https://www.omdbapi.com?apikey=2c9d9507";
2018-09-12 19:26:21 +02:00
if (string.IsNullOrWhiteSpace(query))
2018-09-12 19:26:21 +02:00
{
2020-08-07 19:26:28 +02:00
return Url;
2018-09-12 19:26:21 +02:00
}
2020-08-07 19:26:28 +02:00
return Url + "&" + query;
2017-02-13 22:03:41 +01:00
}
private async Task<string> EnsureItemInfo(string imdbId, CancellationToken cancellationToken)
{
if (string.IsNullOrWhiteSpace(imdbId))
{
throw new ArgumentNullException(nameof(imdbId));
}
var imdbParam = imdbId.StartsWith("tt", StringComparison.OrdinalIgnoreCase) ? imdbId : "tt" + imdbId;
var path = GetDataFilePath(imdbParam);
var fileInfo = _fileSystem.GetFileSystemInfo(path);
if (fileInfo.Exists)
{
// If it's recent or automatic updates are enabled, don't re-download
2018-09-12 19:26:21 +02:00
if ((DateTime.UtcNow - _fileSystem.GetLastWriteTimeUtc(fileInfo)).TotalDays <= 1)
{
return path;
}
}
2020-08-07 19:26:28 +02:00
var url = GetOmdbUrl(
string.Format(
CultureInfo.InvariantCulture,
"i={0}&plot=short&tomatoes=true&r=json",
imdbParam));
2020-08-17 21:10:02 +02:00
using var response = await GetOmdbResponse(_httpClientFactory.CreateClient(), url, cancellationToken).ConfigureAwait(false);
await using var stream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false);
var rootObject = await _jsonSerializer.DeserializeFromStreamAsync<RootObject>(stream).ConfigureAwait(false);
Directory.CreateDirectory(Path.GetDirectoryName(path));
_jsonSerializer.SerializeToFile(rootObject, path);
return path;
}
private async Task<string> EnsureSeasonInfo(string seriesImdbId, int seasonId, CancellationToken cancellationToken)
{
if (string.IsNullOrWhiteSpace(seriesImdbId))
{
2019-01-12 21:41:08 +01:00
throw new ArgumentException("The series IMDb ID was null or whitespace.", nameof(seriesImdbId));
}
var imdbParam = seriesImdbId.StartsWith("tt", StringComparison.OrdinalIgnoreCase) ? seriesImdbId : "tt" + seriesImdbId;
var path = GetSeasonFilePath(imdbParam, seasonId);
var fileInfo = _fileSystem.GetFileSystemInfo(path);
if (fileInfo.Exists)
{
// If it's recent or automatic updates are enabled, don't re-download
2018-09-12 19:26:21 +02:00
if ((DateTime.UtcNow - _fileSystem.GetLastWriteTimeUtc(fileInfo)).TotalDays <= 1)
{
return path;
}
}
2020-08-07 19:26:28 +02:00
var url = GetOmdbUrl(
string.Format(
CultureInfo.InvariantCulture,
"i={0}&season={1}&detail=full",
imdbParam,
seasonId));
2020-08-17 21:10:02 +02:00
using var response = await GetOmdbResponse(_httpClientFactory.CreateClient(), url, cancellationToken).ConfigureAwait(false);
await using var stream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false);
var rootObject = await _jsonSerializer.DeserializeFromStreamAsync<SeasonRootObject>(stream).ConfigureAwait(false);
Directory.CreateDirectory(Path.GetDirectoryName(path));
_jsonSerializer.SerializeToFile(rootObject, path);
return path;
}
2020-08-17 21:10:02 +02:00
public static Task<HttpResponseMessage> GetOmdbResponse(HttpClient httpClient, string url, CancellationToken cancellationToken)
2017-02-04 22:22:55 +01:00
{
2020-08-17 21:10:02 +02:00
return httpClient.GetAsync(url, cancellationToken);
2017-02-04 22:22:55 +01:00
}
internal string GetDataFilePath(string imdbId)
{
if (string.IsNullOrEmpty(imdbId))
{
throw new ArgumentNullException(nameof(imdbId));
2014-02-03 21:51:28 +01:00
}
var dataPath = Path.Combine(_configurationManager.ApplicationPaths.CachePath, "omdb");
2020-08-07 19:26:28 +02:00
var filename = string.Format(CultureInfo.InvariantCulture, "{0}.json", imdbId);
return Path.Combine(dataPath, filename);
2014-02-03 21:51:28 +01:00
}
internal string GetSeasonFilePath(string imdbId, int seasonId)
{
if (string.IsNullOrEmpty(imdbId))
{
throw new ArgumentNullException(nameof(imdbId));
}
var dataPath = Path.Combine(_configurationManager.ApplicationPaths.CachePath, "omdb");
2020-08-07 19:26:28 +02:00
var filename = string.Format(CultureInfo.InvariantCulture, "{0}_season_{1}.json", imdbId, seasonId);
return Path.Combine(dataPath, filename);
}
private void ParseAdditionalMetadata<T>(MetadataResult<T> itemResult, RootObject result)
where T : BaseItem
2014-02-03 21:51:28 +01:00
{
2019-01-13 21:37:13 +01:00
var item = itemResult.Item;
2017-10-05 20:10:07 +02:00
var isConfiguredForEnglish = IsConfiguredForEnglish(item) || _configurationManager.Configuration.EnableNewOmdbSupport;
2017-02-10 00:25:10 +01:00
// Grab series genres because IMDb data is better than TVDB. Leave movies alone
2014-02-03 21:51:28 +01:00
// But only do it if english is the preferred language because this data will not be localized
2017-02-10 00:25:10 +01:00
if (isConfiguredForEnglish && !string.IsNullOrWhiteSpace(result.Genre))
2014-02-03 21:51:28 +01:00
{
2018-09-12 19:26:21 +02:00
item.Genres = Array.Empty<string>();
2014-02-03 21:51:28 +01:00
foreach (var genre in result.Genre
.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries)
.Select(i => i.Trim())
.Where(i => !string.IsNullOrWhiteSpace(i)))
{
item.AddGenre(genre);
}
}
2017-02-10 00:25:10 +01:00
if (isConfiguredForEnglish)
{
// Omdb is currently english only, so for other languages skip this and let secondary providers fill it in
item.Overview = result.Plot;
}
if (!Plugin.Instance.Configuration.CastAndCrew)
{
return;
}
if (!string.IsNullOrWhiteSpace(result.Director))
{
var person = new PersonInfo
{
Name = result.Director.Trim(),
Type = PersonType.Director
};
itemResult.AddPerson(person);
}
if (!string.IsNullOrWhiteSpace(result.Writer))
{
var person = new PersonInfo
{
Name = result.Director.Trim(),
Type = PersonType.Writer
};
itemResult.AddPerson(person);
}
if (!string.IsNullOrWhiteSpace(result.Actors))
{
var actorList = result.Actors.Split(',');
foreach (var actor in actorList)
{
if (!string.IsNullOrWhiteSpace(actor))
{
var person = new PersonInfo
{
Name = actor.Trim(),
Type = PersonType.Actor
};
itemResult.AddPerson(person);
}
}
}
2014-02-03 21:51:28 +01:00
}
2017-02-10 00:25:10 +01:00
private bool IsConfiguredForEnglish(BaseItem item)
2014-02-03 21:51:28 +01:00
{
var lang = item.GetPreferredMetadataLanguage();
// The data isn't localized and so can only be used for english users
2014-02-15 17:36:09 +01:00
return string.Equals(lang, "en", StringComparison.OrdinalIgnoreCase);
2014-02-03 21:51:28 +01:00
}
internal class SeasonRootObject
{
public string Title { get; set; }
public string seriesID { get; set; }
public int Season { get; set; }
public int? totalSeasons { get; set; }
public RootObject[] Episodes { get; set; }
public string Response { get; set; }
}
internal class RootObject
2014-02-03 21:51:28 +01:00
{
public string Title { get; set; }
2014-02-03 21:51:28 +01:00
public string Year { get; set; }
2014-02-03 21:51:28 +01:00
public string Rated { get; set; }
2014-02-03 21:51:28 +01:00
public string Released { get; set; }
2014-02-03 21:51:28 +01:00
public string Runtime { get; set; }
2014-02-03 21:51:28 +01:00
public string Genre { get; set; }
2014-02-03 21:51:28 +01:00
public string Director { get; set; }
2014-02-03 21:51:28 +01:00
public string Writer { get; set; }
2014-02-03 21:51:28 +01:00
public string Actors { get; set; }
2014-02-03 21:51:28 +01:00
public string Plot { get; set; }
2017-04-12 19:09:12 +02:00
public string Language { get; set; }
2017-04-12 19:09:12 +02:00
public string Country { get; set; }
2017-04-12 19:09:12 +02:00
public string Awards { get; set; }
2014-02-03 21:51:28 +01:00
public string Poster { get; set; }
2017-04-12 19:09:12 +02:00
public List<OmdbRating> Ratings { get; set; }
2017-04-12 19:09:12 +02:00
public string Metascore { get; set; }
2014-02-03 21:51:28 +01:00
public string imdbRating { get; set; }
2014-02-03 21:51:28 +01:00
public string imdbVotes { get; set; }
2014-02-03 21:51:28 +01:00
public string imdbID { get; set; }
2014-02-03 21:51:28 +01:00
public string Type { get; set; }
2014-02-03 21:51:28 +01:00
public string DVD { get; set; }
2014-02-03 21:51:28 +01:00
public string BoxOffice { get; set; }
2014-02-03 21:51:28 +01:00
public string Production { get; set; }
2014-02-03 21:51:28 +01:00
public string Website { get; set; }
2014-02-03 21:51:28 +01:00
public string Response { get; set; }
2017-04-12 19:09:12 +02:00
public int Episode { get; set; }
2014-02-03 21:51:28 +01:00
2017-04-12 19:09:12 +02:00
public float? GetRottenTomatoScore()
{
if (Ratings != null)
{
var rating = Ratings.FirstOrDefault(i => string.Equals(i.Source, "Rotten Tomatoes", StringComparison.OrdinalIgnoreCase));
if (rating != null && rating.Value != null)
{
var value = rating.Value.TrimEnd('%');
if (float.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out var score))
2017-04-12 19:09:12 +02:00
{
return score;
}
}
}
2017-04-12 19:09:12 +02:00
return null;
}
}
2017-04-12 19:09:12 +02:00
public class OmdbRating
{
public string Source { get; set; }
2017-04-12 19:09:12 +02:00
public string Value { get; set; }
2014-02-03 21:51:28 +01:00
}
}
}