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.
28 lines
850 B
28 lines
850 B
using MediaBrowser.Controller.Entities.Audio;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.MusicBrainz;
|
|
|
|
/// <summary>
|
|
/// MusicBrainz release group external id.
|
|
/// </summary>
|
|
public class MusicBrainzReleaseGroupExternalId : IExternalId
|
|
{
|
|
/// <inheritdoc />
|
|
public string ProviderName => "MusicBrainz";
|
|
|
|
/// <inheritdoc />
|
|
public string Key => MetadataProvider.MusicBrainzReleaseGroup.ToString();
|
|
|
|
/// <inheritdoc />
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.ReleaseGroup;
|
|
|
|
/// <inheritdoc />
|
|
public string? UrlFormatString => Plugin.Instance!.Configuration.Server + "/release-group/{0}";
|
|
|
|
/// <inheritdoc />
|
|
public bool Supports(IHasProviderIds item) => item is Audio or MusicAlbum;
|
|
}
|