2019-01-13 13:03:10 -07:00
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2014-02-21 11:48:15 -07:00
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
2020-05-17 12:57:24 -07:00
|
|
|
using MediaBrowser.Model.Providers;
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2020-03-02 10:07:31 -07:00
|
|
|
namespace MediaBrowser.Providers.Plugins.AudioDb
|
2014-02-21 11:48:15 -07:00
|
|
|
{
|
|
|
|
public class AudioDbAlbumExternalId : IExternalId
|
|
|
|
{
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public string Name => "TheAudioDb";
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public string Key => MetadataProviders.AudioDbAlbum.ToString();
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2020-03-22 12:58:53 -07:00
|
|
|
/// <inheritdoc />
|
2020-05-17 12:29:53 -07:00
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.General;
|
2020-03-22 12:58:53 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public string UrlFormatString => "https://www.theaudiodb.com/album/{0}";
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2020-03-02 10:07:31 -07:00
|
|
|
public bool Supports(IHasProviderIds item) => item is MusicAlbum;
|
2014-02-21 11:48:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public class AudioDbOtherAlbumExternalId : IExternalId
|
|
|
|
{
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2020-03-22 12:58:53 -07:00
|
|
|
public string Name => "TheAudioDb";
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public string Key => MetadataProviders.AudioDbAlbum.ToString();
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2020-03-22 12:58:53 -07:00
|
|
|
/// <inheritdoc />
|
2020-03-26 14:26:12 -07:00
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.Album;
|
2020-03-22 12:58:53 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public string UrlFormatString => "https://www.theaudiodb.com/album/{0}";
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
|
|
|
public bool Supports(IHasProviderIds item) => item is Audio;
|
2014-02-21 11:48:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public class AudioDbArtistExternalId : IExternalId
|
|
|
|
{
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public string Name => "TheAudioDb";
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public string Key => MetadataProviders.AudioDbArtist.ToString();
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2020-03-22 12:58:53 -07:00
|
|
|
/// <inheritdoc />
|
2020-03-26 14:26:12 -07:00
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.Artist;
|
2020-03-22 12:58:53 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public string UrlFormatString => "https://www.theaudiodb.com/artist/{0}";
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
|
|
|
public bool Supports(IHasProviderIds item) => item is MusicArtist;
|
2014-02-21 11:48:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public class AudioDbOtherArtistExternalId : IExternalId
|
|
|
|
{
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2020-03-22 12:58:53 -07:00
|
|
|
public string Name => "TheAudioDb";
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public string Key => MetadataProviders.AudioDbArtist.ToString();
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2020-03-22 12:58:53 -07:00
|
|
|
/// <inheritdoc />
|
2020-03-26 14:26:12 -07:00
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.OtherArtist;
|
2020-03-22 12:58:53 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public string UrlFormatString => "https://www.theaudiodb.com/artist/{0}";
|
2014-02-21 11:48:15 -07:00
|
|
|
|
2019-09-10 13:37:53 -07:00
|
|
|
/// <inheritdoc />
|
2020-03-02 10:07:31 -07:00
|
|
|
public bool Supports(IHasProviderIds item) => item is Audio || item is MusicAlbum;
|
2014-02-21 11:48:15 -07:00
|
|
|
}
|
|
|
|
}
|