2014-02-07 03:10:13 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-12-26 16:53:23 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-10-01 23:33:50 +00:00
|
|
|
|
using System;
|
2013-09-11 17:54:59 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
using System.Linq;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class MusicAlbum
|
|
|
|
|
/// </summary>
|
2014-02-08 20:02:35 +00:00
|
|
|
|
public class MusicAlbum : Folder, IHasAlbumArtist, IHasArtist, IHasMusicGenres, IHasTags, IHasLookupInfo<AlbumInfo>, IHasSeries
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-11-12 15:36:08 +00:00
|
|
|
|
public List<Guid> SoundtrackIds { get; set; }
|
2014-02-07 03:10:13 +00:00
|
|
|
|
|
2013-09-10 18:56:00 +00:00
|
|
|
|
public MusicAlbum()
|
|
|
|
|
{
|
2013-09-11 17:54:59 +00:00
|
|
|
|
Artists = new List<string>();
|
2013-11-12 15:36:08 +00:00
|
|
|
|
SoundtrackIds = new List<Guid>();
|
2013-12-05 16:50:21 +00:00
|
|
|
|
Tags = new List<string>();
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public MusicArtist MusicArtist
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Parents.OfType<MusicArtist>().FirstOrDefault();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-05 16:50:21 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the tags.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The tags.</value>
|
|
|
|
|
public List<string> Tags { get; set; }
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Songs will group into us so don't also include us in the index
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [include in index]; otherwise, <c>false</c>.</value>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool IncludeInIndex
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-08 20:02:35 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public string SeriesName
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return AlbumArtist;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Override this to true if class should be grouped under a container in indicies
|
|
|
|
|
/// The container class should be defined via IndexContainer
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [group in index]; otherwise, <c>false</c>.</value>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool GroupInIndex
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The unknwon artist
|
|
|
|
|
/// </summary>
|
2013-04-22 04:38:03 +00:00
|
|
|
|
private static readonly MusicArtist UnknwonArtist = new MusicArtist { Name = "<Unknown>" };
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Override this to return the folder that should be used to construct a container
|
|
|
|
|
/// for this item in an index. GroupInIndex should be true as well.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The index container.</value>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override Folder IndexContainer
|
|
|
|
|
{
|
|
|
|
|
get { return Parent as MusicArtist ?? UnknwonArtist; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-24 14:05:47 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the specified artist has artist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="artist">The artist.</param>
|
|
|
|
|
/// <returns><c>true</c> if the specified artist has artist; otherwise, <c>false</c>.</returns>
|
|
|
|
|
public bool HasArtist(string artist)
|
|
|
|
|
{
|
2013-09-10 18:56:00 +00:00
|
|
|
|
return string.Equals(AlbumArtist, artist, StringComparison.OrdinalIgnoreCase)
|
|
|
|
|
|| Artists.Contains(artist, StringComparer.OrdinalIgnoreCase);
|
2013-04-27 13:05:33 +00:00
|
|
|
|
}
|
2013-09-06 19:17:15 +00:00
|
|
|
|
|
2013-09-10 18:56:00 +00:00
|
|
|
|
public string AlbumArtist { get; set; }
|
|
|
|
|
|
2013-09-11 17:54:59 +00:00
|
|
|
|
public List<string> Artists { get; set; }
|
2013-10-01 23:33:50 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public override string GetUserDataKey()
|
|
|
|
|
{
|
|
|
|
|
var id = this.GetProviderId(MetadataProviders.MusicBrainzReleaseGroup);
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(id))
|
|
|
|
|
{
|
2013-10-05 00:44:43 +00:00
|
|
|
|
return "MusicAlbum-MusicBrainzReleaseGroup-" + id;
|
2013-10-01 23:33:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
id = this.GetProviderId(MetadataProviders.MusicBrainzAlbum);
|
2013-10-01 23:33:50 +00:00
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(id))
|
|
|
|
|
{
|
2013-10-05 00:44:43 +00:00
|
|
|
|
return "MusicAlbum-Musicbrainz-" + id;
|
2013-10-01 23:33:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.GetUserDataKey();
|
|
|
|
|
}
|
2013-12-26 16:53:23 +00:00
|
|
|
|
|
|
|
|
|
protected override bool GetBlockUnratedValue(UserConfiguration config)
|
|
|
|
|
{
|
|
|
|
|
return config.BlockUnratedMusic;
|
|
|
|
|
}
|
2014-02-07 03:10:13 +00:00
|
|
|
|
|
|
|
|
|
public AlbumInfo GetLookupInfo()
|
|
|
|
|
{
|
|
|
|
|
var id = GetItemLookupInfo<AlbumInfo>();
|
|
|
|
|
|
|
|
|
|
id.AlbumArtist = AlbumArtist;
|
|
|
|
|
|
|
|
|
|
var artist = Parents.OfType<MusicArtist>().FirstOrDefault();
|
|
|
|
|
|
|
|
|
|
if (artist != null)
|
|
|
|
|
{
|
|
|
|
|
id.ArtistProviderIds = artist.ProviderIds;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
id.SongInfos = RecursiveChildren.OfType<Audio>()
|
|
|
|
|
.Select(i => i.GetLookupInfo())
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
return id;
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2013-09-01 13:13:11 +00:00
|
|
|
|
|
|
|
|
|
public class MusicAlbumDisc : Folder
|
|
|
|
|
{
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2013-09-01 13:13:11 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|