2019-08-18 04:20:52 -07:00
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
2020-05-17 12:57:24 -07:00
|
|
|
using MediaBrowser.Model.Providers;
|
2019-08-18 04:20:52 -07:00
|
|
|
|
2020-05-30 23:23:09 -07:00
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.TV
|
2019-08-18 04:20:52 -07:00
|
|
|
{
|
2020-06-26 07:12:22 -07:00
|
|
|
/// <summary>
|
|
|
|
/// External ID for a TMDB series.
|
|
|
|
/// </summary>
|
2019-08-18 04:20:52 -07:00
|
|
|
public class TmdbSeriesExternalId : IExternalId
|
|
|
|
{
|
2019-08-18 05:44:13 -07:00
|
|
|
/// <inheritdoc />
|
2020-05-17 14:35:43 -07:00
|
|
|
public string ProviderName => TmdbUtils.ProviderName;
|
2019-08-18 04:20:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
/// <inheritdoc />
|
2020-06-06 12:17:49 -07:00
|
|
|
public string Key => MetadataProvider.Tmdb.ToString();
|
2019-08-18 04:20:52 -07:00
|
|
|
|
2020-03-22 12:58:53 -07:00
|
|
|
/// <inheritdoc />
|
2020-05-23 13:08:51 -07:00
|
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Series;
|
2020-03-22 12:58:53 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
/// <inheritdoc />
|
2019-08-18 04:34:44 -07:00
|
|
|
public string UrlFormatString => TmdbUtils.BaseTmdbUrl + "tv/{0}";
|
2019-08-18 04:20:52 -07:00
|
|
|
|
2019-08-18 05:44:13 -07:00
|
|
|
/// <inheritdoc />
|
2019-08-18 04:20:52 -07:00
|
|
|
public bool Supports(IHasProviderIds item)
|
|
|
|
{
|
|
|
|
return item is Series;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|