123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.Entities.TV;
- 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
- {
- get { return "http://tvlistings.zap2it.com/tv/dexter/{0}?aid=zap2it"; }
- }
- 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
- {
- get { return "http://thetvdb.com/index.php?tab=series&id={0}"; }
- }
- public bool Supports(IHasProviderIds item)
- {
- return item is Series;
- }
- }
- public class TvdbEpisodeExternalId : 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 Episode;
- }
- }
- public class TvComSeriesExternalId : IExternalId
- {
- public string Name
- {
- get { return "TV.com"; }
- }
- public string Key
- {
- get { return MetadataProviders.Tvcom.ToString(); }
- }
- public string UrlFormatString
- {
- get { return null; }
- }
- public bool Supports(IHasProviderIds item)
- {
- return item is Series;
- }
- }
- public class TvComPersonExternalId : IExternalId
- {
- public string Name
- {
- get { return "TV.com"; }
- }
- public string Key
- {
- get { return MetadataProviders.Tvcom.ToString(); }
- }
- public string UrlFormatString
- {
- get { return null; }
- }
- public bool Supports(IHasProviderIds item)
- {
- return item is Person;
- }
- }
- }
|