jellyfin/MediaBrowser.Providers/TV/TvExternalIds.cs

99 lines
2.1 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Entities.TV;
2014-02-21 19:48:15 +01:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Providers.TV
{
public class Zap2ItExternalId : IExternalId
{
public string Name
{
get { return "Zap2It"; }
}
public string Key
{
get { return MetadataProviders.Zap2It.ToString(); }
}
public string UrlFormatString
{
2018-09-12 19:26:21 +02:00
get { return "http://tvlistings.zap2it.com/overview.html?programSeriesId={0}"; }
2014-02-21 19:48:15 +01:00
}
public bool Supports(IHasProviderIds item)
{
return item is Series;
}
}
public class TvdbExternalId : IExternalId
{
public string Name
{
get { return "TheTVDB"; }
}
public string Key
{
get { return MetadataProviders.Tvdb.ToString(); }
}
public string UrlFormatString
{
2018-09-12 19:26:21 +02:00
get { return TvdbPrescanTask.TvdbBaseUrl + "?tab=series&id={0}"; }
2014-02-21 19:48:15 +01:00
}
public bool Supports(IHasProviderIds item)
{
return item is Series;
}
}
2014-07-07 16:23:08 +02:00
public class TvdbSeasonExternalId : IExternalId
{
public string Name
{
get { return "TheTVDB"; }
}
public string Key
{
get { return MetadataProviders.Tvdb.ToString(); }
}
public string UrlFormatString
{
get { return null; }
}
public bool Supports(IHasProviderIds item)
{
return item is Season;
}
}
2014-02-21 22:44:10 +01:00
public class TvdbEpisodeExternalId : IExternalId
{
public string Name
{
get { return "TheTVDB"; }
}
public string Key
{
get { return MetadataProviders.Tvdb.ToString(); }
}
public string UrlFormatString
{
2018-09-12 19:26:21 +02:00
get { return TvdbPrescanTask.TvdbBaseUrl + "?tab=episode&id={0}"; }
2014-02-21 22:44:10 +01:00
}
public bool Supports(IHasProviderIds item)
{
return item is Episode;
}
}
2014-02-21 19:48:15 +01:00
}