You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
using MediaBrowser.Controller.Entities.Movies;
|
|
using MediaBrowser.Controller.LiveTv;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Movies
|
|
{
|
|
/// <summary>
|
|
/// External id for a TMDb movie.
|
|
/// </summary>
|
|
public class TmdbMovieExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => TmdbUtils.ProviderName;
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.Tmdb.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Movie;
|
|
|
|
/// <inheritdoc />
|
|
public string? UrlFormatString => TmdbUtils.BaseTmdbUrl + "movie/{0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item)
|
|
{
|
|
// Supports images for tv movies
|
|
if (item is LiveTvProgram tvProgram && tvProgram.IsMovie)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return item is Movie;
|
|
}
|
|
}
|
|
}
|