jellyfin-server/MediaBrowser.Providers/TV/TvExternalIds.cs

83 lines
2.3 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using MediaBrowser.Controller.Entities.TV;
2014-02-21 18:48:15 +00:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Providers;
using MediaBrowser.Providers.Plugins.TheTvdb;
2014-02-21 18:48:15 +00:00
namespace MediaBrowser.Providers.TV
{
public class Zap2ItExternalId : IExternalId
{
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
2020-05-17 21:35:43 +00:00
public string ProviderName => "Zap2It";
2014-02-21 18:48:15 +00:00
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
2020-06-06 19:17:49 +00:00
public string Key => MetadataProvider.Zap2It.ToString();
2014-02-21 18:48:15 +00:00
/// <inheritdoc />
public ExternalIdMediaType? Type => null;
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
public string UrlFormatString => "http://tvlistings.zap2it.com/overview.html?programSeriesId={0}";
2014-02-21 18:48:15 +00:00
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
public bool Supports(IHasProviderIds item) => item is Series;
2014-02-21 18:48:15 +00:00
}
public class TvdbExternalId : IExternalId
{
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
2020-05-17 21:35:43 +00:00
public string ProviderName => "TheTVDB";
2014-02-21 18:48:15 +00:00
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
2020-06-06 19:17:49 +00:00
public string Key => MetadataProvider.Tvdb.ToString();
2014-02-21 18:48:15 +00:00
/// <inheritdoc />
public ExternalIdMediaType? Type => null;
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
2019-02-20 18:52:50 +00:00
public string UrlFormatString => TvdbUtils.TvdbBaseUrl + "?tab=series&id={0}";
2014-02-21 18:48:15 +00:00
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
public bool Supports(IHasProviderIds item) => item is Series;
2014-02-21 18:48:15 +00:00
}
2014-07-07 14:23:08 +00:00
public class TvdbSeasonExternalId : IExternalId
{
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
2020-05-17 21:35:43 +00:00
public string ProviderName => "TheTVDB";
2014-07-07 14:23:08 +00:00
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
2020-06-06 19:17:49 +00:00
public string Key => MetadataProvider.Tvdb.ToString();
2014-07-07 14:23:08 +00:00
/// <inheritdoc />
public ExternalIdMediaType? Type => ExternalIdMediaType.Season;
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
public string UrlFormatString => null;
2014-07-07 14:23:08 +00:00
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
public bool Supports(IHasProviderIds item) => item is Season;
2014-07-07 14:23:08 +00:00
}
2014-02-21 21:44:10 +00:00
public class TvdbEpisodeExternalId : IExternalId
{
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
2020-05-17 21:35:43 +00:00
public string ProviderName => "TheTVDB";
2014-02-21 21:44:10 +00:00
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
2020-06-06 19:17:49 +00:00
public string Key => MetadataProvider.Tvdb.ToString();
2014-02-21 21:44:10 +00:00
/// <inheritdoc />
public ExternalIdMediaType? Type => ExternalIdMediaType.Episode;
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
2019-02-20 18:52:50 +00:00
public string UrlFormatString => TvdbUtils.TvdbBaseUrl + "?tab=episode&id={0}";
2014-02-21 21:44:10 +00:00
2019-09-10 20:37:53 +00:00
/// <inheritdoc />
public bool Supports(IHasProviderIds item) => item is Episode;
2014-02-21 21:44:10 +00:00
}
2014-02-21 18:48:15 +00:00
}