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

82 lines
2.4 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using MediaBrowser.Controller.Entities.Audio;
2014-02-21 19:48:15 +01:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Providers;
2014-02-21 19:48:15 +01:00
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 />
2020-05-17 23:35:43 +02:00
public string ProviderName => "TheAudioDb";
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
2020-06-06 21:17:49 +02:00
public string Key => MetadataProvider.AudioDbAlbum.ToString();
2014-02-21 19:48:15 +01:00
/// <inheritdoc />
public ExternalIdMediaType? Type => null;
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 />
2020-05-17 23:35:43 +02:00
public string ProviderName => "TheAudioDb";
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
2020-06-06 21:17:49 +02:00
public string Key => MetadataProvider.AudioDbAlbum.ToString();
2014-02-21 19:48:15 +01:00
/// <inheritdoc />
public ExternalIdMediaType? Type => ExternalIdMediaType.Album;
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 />
2020-05-17 23:35:43 +02:00
public string ProviderName => "TheAudioDb";
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
2020-06-06 21:17:49 +02:00
public string Key => MetadataProvider.AudioDbArtist.ToString();
2014-02-21 19:48:15 +01:00
/// <inheritdoc />
public ExternalIdMediaType? Type => ExternalIdMediaType.Artist;
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 />
2020-05-17 23:35:43 +02:00
public string ProviderName => "TheAudioDb";
2014-02-21 19:48:15 +01:00
2019-09-10 22:37:53 +02:00
/// <inheritdoc />
2020-06-06 21:17:49 +02:00
public string Key => MetadataProvider.AudioDbArtist.ToString();
2014-02-21 19:48:15 +01:00
/// <inheritdoc />
public ExternalIdMediaType? Type => ExternalIdMediaType.OtherArtist;
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
}
}