jellyfin/MediaBrowser.Providers/Plugins/AudioDb/ExternalIds.cs

67 lines
2 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Entities.Audio;
2014-02-21 19:48:15 +01:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
2020-03-02 18:07:31 +01:00
namespace MediaBrowser.Providers.Plugins.AudioDb
2014-02-21 19:48:15 +01:00
{
public class AudioDbAlbumExternalId : IExternalId
{
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string Name => "TheAudioDb";
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string Key => MetadataProviders.AudioDbAlbum.ToString();
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string UrlFormatString => "https://www.theaudiodb.com/album/{0}";
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
2020-03-02 18:07:31 +01:00
public bool Supports(IHasProviderIds item) => item is MusicAlbum;
2014-02-21 19:48:15 +01:00
}
public class AudioDbOtherAlbumExternalId : IExternalId
{
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string Name => "TheAudioDb Album";
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string Key => MetadataProviders.AudioDbAlbum.ToString();
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string UrlFormatString => "https://www.theaudiodb.com/album/{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 Audio;
2014-02-21 19:48:15 +01:00
}
public class AudioDbArtistExternalId : IExternalId
{
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string Name => "TheAudioDb";
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string Key => MetadataProviders.AudioDbArtist.ToString();
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string UrlFormatString => "https://www.theaudiodb.com/artist/{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 MusicArtist;
2014-02-21 19:48:15 +01:00
}
public class AudioDbOtherArtistExternalId : IExternalId
{
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string Name => "TheAudioDb Artist";
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string Key => MetadataProviders.AudioDbArtist.ToString();
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
public string UrlFormatString => "https://www.theaudiodb.com/artist/{0}";
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
2020-03-02 18:07:31 +01:00
public bool Supports(IHasProviderIds item) => item is Audio || item is MusicAlbum;
2014-02-21 19:48:15 +01:00
}
}