2020-02-22 06:04:52 +00:00
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
2020-02-27 16:43:57 +00:00
|
|
|
using MediaBrowser.Providers.Plugins.MusicBrainz;
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.Music
|
|
|
|
{
|
|
|
|
public class MusicBrainzReleaseGroupExternalId : IExternalId
|
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
2020-03-22 19:58:53 +00:00
|
|
|
public string Name => "MusicBrainz";
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Key => MetadataProviders.MusicBrainzReleaseGroup.ToString();
|
|
|
|
|
2020-03-22 19:58:53 +00:00
|
|
|
/// <inheritdoc />
|
2020-03-26 21:26:12 +00:00
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.ReleaseGroup;
|
2020-03-22 19:58:53 +00:00
|
|
|
|
2020-02-22 06:04:52 +00:00
|
|
|
/// <inheritdoc />
|
2020-02-27 16:43:57 +00:00
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/release-group/{0}";
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
2020-02-27 16:43:57 +00:00
|
|
|
public bool Supports(IHasProviderIds item) => item is Audio || item is MusicAlbum;
|
2020-02-22 06:04:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public class MusicBrainzAlbumArtistExternalId : IExternalId
|
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
2020-03-22 19:58:53 +00:00
|
|
|
public string Name => "MusicBrainz";
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Key => MetadataProviders.MusicBrainzAlbumArtist.ToString();
|
|
|
|
|
2020-03-22 19:58:53 +00:00
|
|
|
/// <inheritdoc />
|
2020-03-26 21:26:12 +00:00
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.AlbumArtist;
|
2020-03-22 19:58:53 +00:00
|
|
|
|
2020-02-22 06:04:52 +00:00
|
|
|
/// <inheritdoc />
|
2020-02-27 16:43:57 +00:00
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/artist/{0}";
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
2020-02-27 16:43:57 +00:00
|
|
|
public bool Supports(IHasProviderIds item) => item is Audio;
|
2020-02-22 06:04:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public class MusicBrainzAlbumExternalId : IExternalId
|
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
2020-03-22 19:58:53 +00:00
|
|
|
public string Name => "MusicBrainz";
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Key => MetadataProviders.MusicBrainzAlbum.ToString();
|
|
|
|
|
2020-03-22 19:58:53 +00:00
|
|
|
/// <inheritdoc />
|
2020-03-26 21:26:12 +00:00
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.Album;
|
2020-03-22 19:58:53 +00:00
|
|
|
|
2020-02-22 06:04:52 +00:00
|
|
|
/// <inheritdoc />
|
2020-02-27 16:43:57 +00:00
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/release/{0}";
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
2020-02-27 16:43:57 +00:00
|
|
|
public bool Supports(IHasProviderIds item) => item is Audio || item is MusicAlbum;
|
2020-02-22 06:04:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public class MusicBrainzArtistExternalId : IExternalId
|
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Name => "MusicBrainz";
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Key => MetadataProviders.MusicBrainzArtist.ToString();
|
|
|
|
|
2020-03-22 19:58:53 +00:00
|
|
|
/// <inheritdoc />
|
2020-03-26 21:26:12 +00:00
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.Artist;
|
2020-03-22 19:58:53 +00:00
|
|
|
|
2020-02-22 06:04:52 +00:00
|
|
|
/// <inheritdoc />
|
2020-02-27 16:43:57 +00:00
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/artist/{0}";
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public bool Supports(IHasProviderIds item) => item is MusicArtist;
|
|
|
|
}
|
|
|
|
|
|
|
|
public class MusicBrainzOtherArtistExternalId : IExternalId
|
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
2020-03-22 19:58:53 +00:00
|
|
|
public string Name => "MusicBrainz";
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
|
|
|
public string Key => MetadataProviders.MusicBrainzArtist.ToString();
|
|
|
|
|
2020-03-22 19:58:53 +00:00
|
|
|
/// <inheritdoc />
|
2020-03-26 21:26:12 +00:00
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.OtherArtist;
|
2020-03-22 19:58:53 +00:00
|
|
|
|
2020-02-22 06:04:52 +00:00
|
|
|
/// <inheritdoc />
|
2020-02-27 16:43:57 +00:00
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/artist/{0}";
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
2020-02-27 16:43:57 +00:00
|
|
|
public bool Supports(IHasProviderIds item) => item is Audio || item is MusicAlbum;
|
2020-02-22 06:04:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public class MusicBrainzTrackId : IExternalId
|
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
2020-03-22 19:58:53 +00:00
|
|
|
public string Name => "MusicBrainz";
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Key => MetadataProviders.MusicBrainzTrack.ToString();
|
|
|
|
|
2020-03-22 19:58:53 +00:00
|
|
|
/// <inheritdoc />
|
2020-03-26 21:26:12 +00:00
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.Track;
|
2020-03-22 19:58:53 +00:00
|
|
|
|
2020-02-22 06:04:52 +00:00
|
|
|
/// <inheritdoc />
|
2020-02-27 16:43:57 +00:00
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/track/{0}";
|
2020-02-22 06:04:52 +00:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public bool Supports(IHasProviderIds item) => item is Audio;
|
|
|
|
}
|
|
|
|
}
|