jellyfin/MediaBrowser.Controller/Entities/Audio/MusicAlbum.cs

189 lines
5.1 KiB
C#
Raw Normal View History

2014-02-07 04:10:13 +01:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Configuration;
2013-12-26 17:53:23 +01:00
using MediaBrowser.Model.Entities;
using System;
2013-09-11 19:54:59 +02:00
using System.Collections.Generic;
using System.Linq;
2013-02-21 02:33:05 +01:00
using System.Runtime.Serialization;
namespace MediaBrowser.Controller.Entities.Audio
{
/// <summary>
/// Class MusicAlbum
/// </summary>
2014-07-18 02:39:07 +02:00
public class MusicAlbum : Folder, IHasAlbumArtist, IHasArtist, IHasMusicGenres, IHasLookupInfo<AlbumInfo>
2013-02-21 02:33:05 +01:00
{
2013-11-12 16:36:08 +01:00
public List<Guid> SoundtrackIds { get; set; }
2014-02-07 04:10:13 +01:00
public MusicAlbum()
{
2013-11-12 16:36:08 +01:00
SoundtrackIds = new List<Guid>();
Artists = new List<string>();
AlbumArtists = new List<string>();
}
2014-08-30 16:26:29 +02:00
[IgnoreDataMember]
public override bool SupportsAddingToPlaylist
{
get { return true; }
}
[IgnoreDataMember]
public MusicArtist MusicArtist
{
get
{
return Parents.OfType<MusicArtist>().FirstOrDefault();
}
}
[IgnoreDataMember]
public List<string> AllArtists
2014-06-23 18:05:19 +02:00
{
get
{
var list = AlbumArtists.ToList();
2014-06-23 18:05:19 +02:00
list.AddRange(Artists);
return list;
}
}
public List<string> AlbumArtists { get; set; }
2014-08-29 14:14:41 +02:00
[IgnoreDataMember]
public string AlbumArtist
{
get { return AlbumArtists.FirstOrDefault(); }
}
2014-06-29 19:58:04 +02:00
/// <summary>
/// Gets the tracks.
/// </summary>
/// <value>The tracks.</value>
public IEnumerable<Audio> Tracks
{
get
{
return RecursiveChildren.OfType<Audio>();
}
}
protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)
{
return Tracks;
}
2013-02-21 02:33:05 +01: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 21:02:35 +01:00
2013-02-21 02:33:05 +01: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 06:38:03 +02:00
private static readonly MusicArtist UnknwonArtist = new MusicArtist { Name = "<Unknown>" };
2013-02-21 02:33:05 +01: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 16:05:47 +02: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)
{
2014-06-23 18:05:19 +02:00
return AllArtists.Contains(artist, StringComparer.OrdinalIgnoreCase);
2013-04-27 15:05:33 +02:00
}
2013-09-11 19:54:59 +02:00
public List<string> Artists { get; set; }
/// <summary>
/// Gets the user data key.
/// </summary>
/// <returns>System.String.</returns>
public override string GetUserDataKey()
{
var id = this.GetProviderId(MetadataProviders.MusicBrainzReleaseGroup);
2014-11-12 05:51:40 +01:00
if (!string.IsNullOrWhiteSpace(id))
{
return "MusicAlbum-MusicBrainzReleaseGroup-" + id;
}
id = this.GetProviderId(MetadataProviders.MusicBrainzAlbum);
2014-11-12 05:51:40 +01:00
if (!string.IsNullOrWhiteSpace(id))
{
return "MusicAlbum-Musicbrainz-" + id;
}
return base.GetUserDataKey();
}
2013-12-26 17:53:23 +01:00
protected override bool GetBlockUnratedValue(UserConfiguration config)
{
return config.BlockUnratedItems.Contains(UnratedItem.Music);
2013-12-26 17:53:23 +01:00
}
2014-02-07 04:10:13 +01:00
public AlbumInfo GetLookupInfo()
{
var id = GetItemLookupInfo<AlbumInfo>();
2014-06-23 18:05:19 +02:00
id.AlbumArtists = AlbumArtists;
2014-02-07 04:10:13 +01:00
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 02:33:05 +01:00
}
2013-09-01 15:13:11 +02:00
2014-06-29 21:59:52 +02:00
[Obsolete]
2013-09-01 15:13:11 +02:00
public class MusicAlbumDisc : Folder
{
2013-09-01 15:13:11 +02:00
}
2013-02-21 02:33:05 +01:00
}