You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.4 KiB
82 lines
2.4 KiB
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.AudioDb
|
|
{
|
|
public class AudioDbAlbumExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => "TheAudioDb";
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.AudioDbAlbum.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => null;
|
|
|
|
/// <inheritdoc />
|
|
public string UrlFormatString => "https://www.theaudiodb.com/album/{0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item) => item is MusicAlbum;
|
|
}
|
|
|
|
public class AudioDbOtherAlbumExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => "TheAudioDb";
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.AudioDbAlbum.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Album;
|
|
|
|
/// <inheritdoc />
|
|
public string UrlFormatString => "https://www.theaudiodb.com/album/{0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item) => item is Audio;
|
|
}
|
|
|
|
public class AudioDbArtistExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => "TheAudioDb";
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.AudioDbArtist.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Artist;
|
|
|
|
/// <inheritdoc />
|
|
public string UrlFormatString => "https://www.theaudiodb.com/artist/{0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item) => item is MusicArtist;
|
|
}
|
|
|
|
public class AudioDbOtherArtistExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => "TheAudioDb";
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.AudioDbArtist.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.OtherArtist;
|
|
|
|
/// <inheritdoc />
|
|
public string UrlFormatString => "https://www.theaudiodb.com/artist/{0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item) => item is Audio || item is MusicAlbum;
|
|
}
|
|
}
|