2014-02-06 20:10:13 -07:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-12-26 09:53:23 -07:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2015-01-26 09:47:15 -07:00
|
|
|
|
using MediaBrowser.Model.Users;
|
2013-09-11 10:54:59 -07:00
|
|
|
|
using System.Collections.Generic;
|
2013-09-10 11:56:00 -07:00
|
|
|
|
using System.Linq;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class MusicAlbum
|
|
|
|
|
/// </summary>
|
2014-07-17 17:39:07 -07:00
|
|
|
|
public class MusicAlbum : Folder, IHasAlbumArtist, IHasArtist, IHasMusicGenres, IHasLookupInfo<AlbumInfo>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2013-09-10 11:56:00 -07:00
|
|
|
|
public MusicAlbum()
|
|
|
|
|
{
|
2014-08-28 17:49:25 -07:00
|
|
|
|
Artists = new List<string>();
|
|
|
|
|
AlbumArtists = new List<string>();
|
2013-09-10 11:56:00 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-30 07:26:29 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-08-05 16:59:24 -07:00
|
|
|
|
public override bool SupportsAddingToPlaylist
|
|
|
|
|
{
|
|
|
|
|
get { return true; }
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 15:40:03 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public MusicArtist MusicArtist
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Parents.OfType<MusicArtist>().FirstOrDefault();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-06 19:51:52 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public List<string> AllArtists
|
2014-06-23 09:05:19 -07:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-08-28 17:49:25 -07:00
|
|
|
|
var list = AlbumArtists.ToList();
|
2014-06-23 09:05:19 -07:00
|
|
|
|
|
|
|
|
|
list.AddRange(Artists);
|
|
|
|
|
|
|
|
|
|
return list;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-28 11:10:26 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public string AlbumArtist
|
|
|
|
|
{
|
|
|
|
|
get { return AlbumArtists.FirstOrDefault(); }
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-05 18:21:18 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool SupportsPeople
|
|
|
|
|
{
|
|
|
|
|
get { return false; }
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-28 17:49:25 -07:00
|
|
|
|
public List<string> AlbumArtists { get; set; }
|
2014-04-06 19:51:52 -07:00
|
|
|
|
|
2014-06-29 10:58:04 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the tracks.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The tracks.</value>
|
|
|
|
|
public IEnumerable<Audio> Tracks
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2015-01-24 23:34:50 -07:00
|
|
|
|
return GetRecursiveChildren(i => i is Audio).Cast<Audio>();
|
2014-06-29 10:58:04 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)
|
|
|
|
|
{
|
|
|
|
|
return Tracks;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-11 10:54:59 -07:00
|
|
|
|
public List<string> Artists { get; set; }
|
2013-10-01 16:33:50 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2015-01-24 15:33:26 -07:00
|
|
|
|
protected override string CreateUserDataKey()
|
2013-10-01 16:33:50 -07:00
|
|
|
|
{
|
|
|
|
|
var id = this.GetProviderId(MetadataProviders.MusicBrainzReleaseGroup);
|
|
|
|
|
|
2014-11-11 21:51:40 -07:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(id))
|
2013-10-01 16:33:50 -07:00
|
|
|
|
{
|
2013-10-04 17:44:43 -07:00
|
|
|
|
return "MusicAlbum-MusicBrainzReleaseGroup-" + id;
|
2013-10-01 16:33:50 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 15:40:03 -07:00
|
|
|
|
id = this.GetProviderId(MetadataProviders.MusicBrainzAlbum);
|
2013-10-01 16:33:50 -07:00
|
|
|
|
|
2014-11-11 21:51:40 -07:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(id))
|
2013-10-01 16:33:50 -07:00
|
|
|
|
{
|
2013-10-04 17:44:43 -07:00
|
|
|
|
return "MusicAlbum-Musicbrainz-" + id;
|
2013-10-01 16:33:50 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-24 15:33:26 -07:00
|
|
|
|
return base.CreateUserDataKey();
|
2013-10-01 16:33:50 -07:00
|
|
|
|
}
|
2013-12-26 09:53:23 -07:00
|
|
|
|
|
2014-12-19 23:06:27 -07:00
|
|
|
|
protected override bool GetBlockUnratedValue(UserPolicy config)
|
2013-12-26 09:53:23 -07:00
|
|
|
|
{
|
2014-02-21 08:24:29 -07:00
|
|
|
|
return config.BlockUnratedItems.Contains(UnratedItem.Music);
|
2013-12-26 09:53:23 -07:00
|
|
|
|
}
|
2014-02-06 20:10:13 -07:00
|
|
|
|
|
|
|
|
|
public AlbumInfo GetLookupInfo()
|
|
|
|
|
{
|
|
|
|
|
var id = GetItemLookupInfo<AlbumInfo>();
|
|
|
|
|
|
2014-06-23 09:05:19 -07:00
|
|
|
|
id.AlbumArtists = AlbumArtists;
|
2014-02-06 20:10:13 -07:00
|
|
|
|
|
|
|
|
|
var artist = Parents.OfType<MusicArtist>().FirstOrDefault();
|
|
|
|
|
|
|
|
|
|
if (artist != null)
|
|
|
|
|
{
|
|
|
|
|
id.ArtistProviderIds = artist.ProviderIds;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-24 23:34:50 -07:00
|
|
|
|
id.SongInfos = GetRecursiveChildren(i => i is Audio)
|
|
|
|
|
.Cast<Audio>()
|
2014-02-06 20:10:13 -07:00
|
|
|
|
.Select(i => i.GetLookupInfo())
|
|
|
|
|
.ToList();
|
|
|
|
|
|
2015-05-31 11:22:51 -07:00
|
|
|
|
var album = id.SongInfos
|
|
|
|
|
.Select(i => i.Album)
|
|
|
|
|
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(album))
|
|
|
|
|
{
|
|
|
|
|
id.Name = album;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 20:10:13 -07:00
|
|
|
|
return id;
|
|
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|