| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Globalization; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Net.Http; |
| | 6 | | using System.Threading; |
| | 7 | | using System.Threading.Tasks; |
| | 8 | | using Jellyfin.Data.Enums; |
| | 9 | | using Jellyfin.Extensions; |
| | 10 | | using MediaBrowser.Common.Net; |
| | 11 | | using MediaBrowser.Controller.Entities; |
| | 12 | | using MediaBrowser.Controller.Entities.TV; |
| | 13 | | using MediaBrowser.Controller.Providers; |
| | 14 | | using MediaBrowser.Model.Entities; |
| | 15 | | using MediaBrowser.Model.Providers; |
| | 16 | |
|
| | 17 | | namespace MediaBrowser.Providers.Plugins.Tmdb.TV |
| | 18 | | { |
| | 19 | | /// <summary> |
| | 20 | | /// TV season provider powered by TheMovieDb. |
| | 21 | | /// </summary> |
| | 22 | | public class TmdbSeasonProvider : IRemoteMetadataProvider<Season, SeasonInfo> |
| | 23 | | { |
| | 24 | | private readonly IHttpClientFactory _httpClientFactory; |
| | 25 | | private readonly TmdbClientManager _tmdbClientManager; |
| | 26 | |
|
| | 27 | | /// <summary> |
| | 28 | | /// Initializes a new instance of the <see cref="TmdbSeasonProvider"/> class. |
| | 29 | | /// </summary> |
| | 30 | | /// <param name="httpClientFactory">The <see cref="IHttpClientFactory"/>.</param> |
| | 31 | | /// <param name="tmdbClientManager">The <see cref="TmdbClientManager"/>.</param> |
| | 32 | | public TmdbSeasonProvider(IHttpClientFactory httpClientFactory, TmdbClientManager tmdbClientManager) |
| | 33 | | { |
| 21 | 34 | | _httpClientFactory = httpClientFactory; |
| 21 | 35 | | _tmdbClientManager = tmdbClientManager; |
| 21 | 36 | | } |
| | 37 | |
|
| | 38 | | /// <inheritdoc /> |
| 0 | 39 | | public string Name => TmdbUtils.ProviderName; |
| | 40 | |
|
| | 41 | | /// <inheritdoc /> |
| | 42 | | public async Task<MetadataResult<Season>> GetMetadata(SeasonInfo info, CancellationToken cancellationToken) |
| | 43 | | { |
| | 44 | | var result = new MetadataResult<Season>(); |
| | 45 | |
|
| | 46 | | info.SeriesProviderIds.TryGetValue(MetadataProvider.Tmdb.ToString(), out string? seriesTmdbId); |
| | 47 | |
|
| | 48 | | var seasonNumber = info.IndexNumber; |
| | 49 | |
|
| | 50 | | if (string.IsNullOrWhiteSpace(seriesTmdbId) || !seasonNumber.HasValue) |
| | 51 | | { |
| | 52 | | return result; |
| | 53 | | } |
| | 54 | |
|
| | 55 | | var seasonResult = await _tmdbClientManager |
| | 56 | | .GetSeasonAsync(Convert.ToInt32(seriesTmdbId, CultureInfo.InvariantCulture), seasonNumber.Value, info.Me |
| | 57 | | .ConfigureAwait(false); |
| | 58 | |
|
| | 59 | | if (seasonResult is null) |
| | 60 | | { |
| | 61 | | return result; |
| | 62 | | } |
| | 63 | |
|
| | 64 | | result.HasMetadata = true; |
| | 65 | | result.Item = new Season |
| | 66 | | { |
| | 67 | | IndexNumber = seasonNumber, |
| | 68 | | Overview = seasonResult.Overview |
| | 69 | | }; |
| | 70 | |
|
| | 71 | | if (Plugin.Instance.Configuration.ImportSeasonName) |
| | 72 | | { |
| | 73 | | result.Item.Name = seasonResult.Name; |
| | 74 | | } |
| | 75 | |
|
| | 76 | | result.Item.TrySetProviderId(MetadataProvider.Tvdb, seasonResult.ExternalIds.TvdbId); |
| | 77 | |
|
| | 78 | | // TODO why was this disabled? |
| | 79 | | var credits = seasonResult.Credits; |
| | 80 | | if (credits?.Cast is not null) |
| | 81 | | { |
| | 82 | | var cast = credits.Cast.OrderBy(c => c.Order).Take(Plugin.Instance.Configuration.MaxCastMembers).ToList( |
| | 83 | | for (var i = 0; i < cast.Count; i++) |
| | 84 | | { |
| | 85 | | var member = cast[i]; |
| | 86 | | result.AddPerson(new PersonInfo |
| | 87 | | { |
| | 88 | | Name = member.Name.Trim(), |
| | 89 | | Role = member.Character.Trim(), |
| | 90 | | Type = PersonKind.Actor, |
| | 91 | | SortOrder = member.Order |
| | 92 | | }); |
| | 93 | | } |
| | 94 | | } |
| | 95 | |
|
| | 96 | | if (credits?.Crew is not null) |
| | 97 | | { |
| | 98 | | foreach (var person in credits.Crew) |
| | 99 | | { |
| | 100 | | // Normalize this |
| | 101 | | var type = TmdbUtils.MapCrewToPersonType(person); |
| | 102 | |
|
| | 103 | | if (!TmdbUtils.WantedCrewKinds.Contains(type) |
| | 104 | | && !TmdbUtils.WantedCrewTypes.Contains(person.Job ?? string.Empty, StringComparison.OrdinalIgnor |
| | 105 | | { |
| | 106 | | continue; |
| | 107 | | } |
| | 108 | |
|
| | 109 | | result.AddPerson(new PersonInfo |
| | 110 | | { |
| | 111 | | Name = person.Name.Trim(), |
| | 112 | | Role = person.Job?.Trim(), |
| | 113 | | Type = type |
| | 114 | | }); |
| | 115 | | } |
| | 116 | | } |
| | 117 | |
|
| | 118 | | result.Item.PremiereDate = seasonResult.AirDate; |
| | 119 | | result.Item.ProductionYear = seasonResult.AirDate?.Year; |
| | 120 | |
|
| | 121 | | return result; |
| | 122 | | } |
| | 123 | |
|
| | 124 | | /// <inheritdoc /> |
| | 125 | | public Task<IEnumerable<RemoteSearchResult>> GetSearchResults(SeasonInfo searchInfo, CancellationToken cancellat |
| | 126 | | { |
| 0 | 127 | | return Task.FromResult(Enumerable.Empty<RemoteSearchResult>()); |
| | 128 | | } |
| | 129 | |
|
| | 130 | | /// <inheritdoc /> |
| | 131 | | public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken) |
| | 132 | | { |
| 0 | 133 | | return _httpClientFactory.CreateClient(NamedClient.Default).GetAsync(url, cancellationToken); |
| | 134 | | } |
| | 135 | | } |
| | 136 | | } |