jellyfin/MediaBrowser.Providers/TV/TvExternalIds.cs

70 lines
1.9 KiB
C#
Raw Normal View History

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