164 lines
8.8 KiB
C#
164 lines
8.8 KiB
C#
using System;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using TMDbLib.Objects.Authentication;
|
|
using TMDbLib.Objects.General;
|
|
using TMDbLib.Objects.TvShows;
|
|
using TMDbLib.Rest;
|
|
using TMDbLib.Utilities;
|
|
using Credits = TMDbLib.Objects.TvShows.Credits;
|
|
|
|
namespace TMDbLib.Client
|
|
{
|
|
public partial class TMDbClient
|
|
{
|
|
private async Task<T> GetTvSeasonMethodInternal<T>(int tvShowId, int seasonNumber, TvSeasonMethods tvShowMethod, string dateFormat = null, string language = null, CancellationToken cancellationToken = default) where T : new()
|
|
{
|
|
RestRequest req = _client.Create("tv/{id}/season/{season_number}/{method}");
|
|
req.AddUrlSegment("id", tvShowId.ToString(CultureInfo.InvariantCulture));
|
|
req.AddUrlSegment("season_number", seasonNumber.ToString(CultureInfo.InvariantCulture));
|
|
req.AddUrlSegment("method", tvShowMethod.GetDescription());
|
|
|
|
// TODO: Dateformat?
|
|
//if (dateFormat != null)
|
|
// req.DateFormat = dateFormat;
|
|
|
|
language ??= DefaultLanguage;
|
|
if (!string.IsNullOrWhiteSpace(language))
|
|
req.AddParameter("language", language);
|
|
|
|
T response = await req.GetOfT<T>(cancellationToken).ConfigureAwait(false);
|
|
|
|
return response;
|
|
}
|
|
|
|
public async Task<ResultContainer<TvEpisodeAccountStateWithNumber>> GetTvSeasonAccountStateAsync(int tvShowId, int seasonNumber, CancellationToken cancellationToken = default)
|
|
{
|
|
RequireSessionId(SessionType.UserSession);
|
|
|
|
RestRequest req = _client.Create("tv/{id}/season/{season_number}/account_states");
|
|
req.AddUrlSegment("id", tvShowId.ToString(CultureInfo.InvariantCulture));
|
|
req.AddUrlSegment("season_number", seasonNumber.ToString(CultureInfo.InvariantCulture));
|
|
req.AddUrlSegment("method", TvEpisodeMethods.AccountStates.GetDescription());
|
|
AddSessionId(req, SessionType.UserSession);
|
|
|
|
using RestResponse<ResultContainer<TvEpisodeAccountStateWithNumber>> response = await req.Get<ResultContainer<TvEpisodeAccountStateWithNumber>>(cancellationToken).ConfigureAwait(false);
|
|
|
|
return await response.GetDataObject().ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieve a season for a specifc tv Show by id.
|
|
/// </summary>
|
|
/// <param name="tvShowId">TMDb id of the tv show the desired season belongs to.</param>
|
|
/// <param name="seasonNumber">The season number of the season you want to retrieve. Note use 0 for specials.</param>
|
|
/// <param name="extraMethods">Enum flags indicating any additional data that should be fetched in the same request.</param>
|
|
/// <param name="language">If specified the api will attempt to return a localized result. ex: en,it,es </param>
|
|
/// <param name="includeImageLanguage">If specified the api will attempt to return localized image results eg. en,it,es.</param>
|
|
/// <param name="cancellationToken">A cancellation token</param>
|
|
/// <returns>The requested season for the specified tv show</returns>
|
|
public async Task<TvSeason> GetTvSeasonAsync(int tvShowId, int seasonNumber, TvSeasonMethods extraMethods = TvSeasonMethods.Undefined, string language = null, string includeImageLanguage = null, CancellationToken cancellationToken = default)
|
|
{
|
|
if (extraMethods.HasFlag(TvSeasonMethods.AccountStates))
|
|
RequireSessionId(SessionType.UserSession);
|
|
|
|
RestRequest req = _client.Create("tv/{id}/season/{season_number}");
|
|
req.AddUrlSegment("id", tvShowId.ToString(CultureInfo.InvariantCulture));
|
|
req.AddUrlSegment("season_number", seasonNumber.ToString(CultureInfo.InvariantCulture));
|
|
|
|
if (extraMethods.HasFlag(TvSeasonMethods.AccountStates))
|
|
AddSessionId(req, SessionType.UserSession);
|
|
|
|
language ??= DefaultLanguage;
|
|
if (!string.IsNullOrWhiteSpace(language))
|
|
req.AddParameter("language", language);
|
|
|
|
includeImageLanguage ??= DefaultImageLanguage;
|
|
if (!string.IsNullOrWhiteSpace(includeImageLanguage))
|
|
req.AddParameter("include_image_language", includeImageLanguage);
|
|
|
|
string appends = string.Join(",",
|
|
Enum.GetValues(typeof(TvSeasonMethods))
|
|
.OfType<TvSeasonMethods>()
|
|
.Except(new[] { TvSeasonMethods.Undefined })
|
|
.Where(s => extraMethods.HasFlag(s))
|
|
.Select(s => s.GetDescription()));
|
|
|
|
if (appends != string.Empty)
|
|
req.AddParameter("append_to_response", appends);
|
|
|
|
using RestResponse<TvSeason> response = await req.Get<TvSeason>(cancellationToken).ConfigureAwait(false);
|
|
|
|
if (!response.IsValid)
|
|
return null;
|
|
|
|
TvSeason item = await response.GetDataObject().ConfigureAwait(false);
|
|
|
|
// Nothing to patch up
|
|
if (item == null)
|
|
return null;
|
|
|
|
if (item.Images != null)
|
|
item.Images.Id = item.Id ?? 0;
|
|
|
|
if (item.Credits != null)
|
|
item.Credits.Id = item.Id ?? 0;
|
|
|
|
if (item.ExternalIds != null)
|
|
item.ExternalIds.Id = item.Id ?? 0;
|
|
|
|
if (item.AccountStates != null)
|
|
item.AccountStates.Id = item.Id ?? 0;
|
|
|
|
if (item.Videos != null)
|
|
item.Videos.Id = item.Id ?? 0;
|
|
|
|
return item;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a credits object for the season of the tv show associated with the provided TMDb id.
|
|
/// </summary>
|
|
/// <param name="tvShowId">The TMDb id of the target tv show.</param>
|
|
/// <param name="seasonNumber">The season number of the season you want to retrieve information for. Note use 0 for specials.</param>
|
|
/// <param name="language">If specified the api will attempt to return a localized result. ex: en,it,es </param>
|
|
/// <param name="cancellationToken">A cancellation token</param>
|
|
public async Task<Credits> GetTvSeasonCreditsAsync(int tvShowId, int seasonNumber, string language = null, CancellationToken cancellationToken = default)
|
|
{
|
|
return await GetTvSeasonMethodInternal<Credits>(tvShowId, seasonNumber, TvSeasonMethods.Credits, dateFormat: "yyyy-MM-dd", language: language, cancellationToken: cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns an object that contains all known exteral id's for the season of the tv show related to the specified TMDB id.
|
|
/// </summary>
|
|
/// <param name="tvShowId">The TMDb id of the target tv show.</param>
|
|
/// <param name="seasonNumber">The season number of the season you want to retrieve information for. Note use 0 for specials.</param>
|
|
/// <param name="cancellationToken">A cancellation token</param>
|
|
public async Task<ExternalIdsTvSeason> GetTvSeasonExternalIdsAsync(int tvShowId, int seasonNumber, CancellationToken cancellationToken = default)
|
|
{
|
|
return await GetTvSeasonMethodInternal<ExternalIdsTvSeason>(tvShowId, seasonNumber, TvSeasonMethods.ExternalIds, cancellationToken: cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieves all images all related to the season of specified tv show.
|
|
/// </summary>
|
|
/// <param name="tvShowId">The TMDb id of the target tv show.</param>
|
|
/// <param name="seasonNumber">The season number of the season you want to retrieve information for. Note use 0 for specials.</param>
|
|
/// <param name="language">
|
|
/// If specified the api will attempt to return a localized result. ex: en,it,es.
|
|
/// For images this means that the image might contain language specifc text
|
|
/// </param>
|
|
/// <param name="cancellationToken">A cancellation token</param>
|
|
public async Task<PosterImages> GetTvSeasonImagesAsync(int tvShowId, int seasonNumber, string language = null, CancellationToken cancellationToken = default)
|
|
{
|
|
return await GetTvSeasonMethodInternal<PosterImages>(tvShowId, seasonNumber, TvSeasonMethods.Images, language: language, cancellationToken: cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
public async Task<ResultContainer<Video>> GetTvSeasonVideosAsync(int tvShowId, int seasonNumber, string language = null, CancellationToken cancellationToken = default)
|
|
{
|
|
return await GetTvSeasonMethodInternal<ResultContainer<Video>>(tvShowId, seasonNumber, TvSeasonMethods.Videos, language: language, cancellationToken: cancellationToken).ConfigureAwait(false);
|
|
}
|
|
}
|
|
} |