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.
82 lines
2.5 KiB
82 lines
2.5 KiB
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Entities;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.Providers.Music
|
|
{
|
|
public static class Extensions
|
|
{
|
|
public static string GetAlbumArtist(this AlbumInfo info)
|
|
{
|
|
var id = info.AlbumArtist;
|
|
|
|
if (string.IsNullOrEmpty(id))
|
|
{
|
|
return info.SongInfos.Select(i => i.AlbumArtist)
|
|
.FirstOrDefault(i => !string.IsNullOrEmpty(i));
|
|
}
|
|
|
|
return id;
|
|
}
|
|
|
|
public static string GetReleaseGroupId(this AlbumInfo info)
|
|
{
|
|
var id = info.GetProviderId(MetadataProviders.MusicBrainzReleaseGroup);
|
|
|
|
if (string.IsNullOrEmpty(id))
|
|
{
|
|
return info.SongInfos.Select(i => i.GetProviderId(MetadataProviders.MusicBrainzReleaseGroup))
|
|
.FirstOrDefault(i => !string.IsNullOrEmpty(i));
|
|
}
|
|
|
|
return id;
|
|
}
|
|
|
|
public static string GetReleaseId(this AlbumInfo info)
|
|
{
|
|
var id = info.GetProviderId(MetadataProviders.MusicBrainzAlbum);
|
|
|
|
if (string.IsNullOrEmpty(id))
|
|
{
|
|
return info.SongInfos.Select(i => i.GetProviderId(MetadataProviders.MusicBrainzAlbum))
|
|
.FirstOrDefault(i => !string.IsNullOrEmpty(i));
|
|
}
|
|
|
|
return id;
|
|
}
|
|
|
|
public static string GetMusicBrainzArtistId(this AlbumInfo info)
|
|
{
|
|
string id;
|
|
info.ProviderIds.TryGetValue(MetadataProviders.MusicBrainzAlbumArtist.ToString(), out id);
|
|
|
|
if (string.IsNullOrEmpty(id))
|
|
{
|
|
info.ArtistProviderIds.TryGetValue(MetadataProviders.MusicBrainzArtist.ToString(), out id);
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(id))
|
|
{
|
|
return info.SongInfos.Select(i => i.GetProviderId(MetadataProviders.MusicBrainzAlbumArtist))
|
|
.FirstOrDefault(i => !string.IsNullOrEmpty(i));
|
|
}
|
|
|
|
return id;
|
|
}
|
|
|
|
public static string GetMusicBrainzArtistId(this ArtistInfo info)
|
|
{
|
|
string id;
|
|
info.ProviderIds.TryGetValue(MetadataProviders.MusicBrainzArtist.ToString(), out id);
|
|
|
|
if (string.IsNullOrEmpty(id))
|
|
{
|
|
return info.SongInfos.Select(i => i.GetProviderId(MetadataProviders.MusicBrainzAlbumArtist))
|
|
.FirstOrDefault(i => !string.IsNullOrEmpty(i));
|
|
}
|
|
|
|
return id;
|
|
}
|
|
}
|
|
}
|