2021-07-23 00:33:19 +00:00
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
|
2022-04-07 10:15:25 +00:00
|
|
|
namespace MediaBrowser.Providers.Plugins.MusicBrainz;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// MusicBrainz other artist external id.
|
|
|
|
/// </summary>
|
|
|
|
public class MusicBrainzOtherArtistExternalId : IExternalId
|
2021-07-23 00:33:19 +00:00
|
|
|
{
|
2022-04-07 10:15:25 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public string ProviderName => "MusicBrainz";
|
2021-07-23 00:33:19 +00:00
|
|
|
|
2022-04-07 10:15:25 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public string Key => MetadataProvider.MusicBrainzArtist.ToString();
|
2021-07-23 00:33:19 +00:00
|
|
|
|
2022-04-07 10:15:25 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.OtherArtist;
|
2021-07-23 00:33:19 +00:00
|
|
|
|
2022-04-07 10:15:25 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public string? UrlFormatString => Plugin.Instance!.Configuration.Server + "/artist/{0}";
|
2021-07-23 00:33:19 +00:00
|
|
|
|
2022-04-07 10:15:25 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public bool Supports(IHasProviderIds item) => item is Audio or MusicAlbum;
|
2021-07-23 00:33:19 +00:00
|
|
|
}
|