2019-08-18 11:20:52 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
2020-05-17 19:57:24 +00:00
|
|
|
using MediaBrowser.Model.Providers;
|
2019-08-18 11:20:52 +00:00
|
|
|
|
2020-05-31 06:23:09 +00:00
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.BoxSets
|
2019-08-18 11:20:52 +00:00
|
|
|
{
|
2020-06-26 14:12:22 +00:00
|
|
|
/// <summary>
|
|
|
|
/// External ID for a TMDB box set.
|
|
|
|
/// </summary>
|
2019-08-18 11:20:52 +00:00
|
|
|
public class TmdbBoxSetExternalId : IExternalId
|
|
|
|
{
|
2019-08-18 12:44:13 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-17 21:35:43 +00:00
|
|
|
public string ProviderName => TmdbUtils.ProviderName;
|
2019-08-18 11:20:52 +00:00
|
|
|
|
2019-08-18 12:44:13 +00:00
|
|
|
/// <inheritdoc />
|
2020-06-06 19:17:49 +00:00
|
|
|
public string Key => MetadataProvider.TmdbCollection.ToString();
|
2019-08-18 11:20:52 +00:00
|
|
|
|
2020-03-22 19:58:53 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-23 20:08:51 +00:00
|
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.BoxSet;
|
2020-03-22 19:58:53 +00:00
|
|
|
|
2019-08-18 12:44:13 +00:00
|
|
|
/// <inheritdoc />
|
2019-08-18 11:34:44 +00:00
|
|
|
public string UrlFormatString => TmdbUtils.BaseTmdbUrl + "collection/{0}";
|
2019-08-18 11:20:52 +00:00
|
|
|
|
2019-08-18 12:44:13 +00:00
|
|
|
/// <inheritdoc />
|
2019-08-18 11:20:52 +00:00
|
|
|
public bool Supports(IHasProviderIds item)
|
|
|
|
{
|
|
|
|
return item is Movie || item is MusicVideo || item is Trailer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|