2016-02-01 17:22:02 +00:00
|
|
|
|
using System;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-02-07 03:10:13 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-12-26 16:53:23 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2015-01-26 16:47:15 +00:00
|
|
|
|
using MediaBrowser.Model.Users;
|
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;
|
2016-02-01 17:22:02 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class MusicAlbum
|
|
|
|
|
/// </summary>
|
2016-02-01 17:22:02 +00:00
|
|
|
|
public class MusicAlbum : Folder, IHasAlbumArtist, IHasArtist, IHasMusicGenres, IHasLookupInfo<AlbumInfo>, IMetadataContainer
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-09-10 18:56:00 +00:00
|
|
|
|
public MusicAlbum()
|
|
|
|
|
{
|
2014-08-29 00:49:25 +00:00
|
|
|
|
Artists = new List<string>();
|
|
|
|
|
AlbumArtists = new List<string>();
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-30 14:26:29 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-08-05 23:59:24 +00:00
|
|
|
|
public override bool SupportsAddingToPlaylist
|
|
|
|
|
{
|
|
|
|
|
get { return true; }
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public MusicArtist MusicArtist
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2016-03-14 01:34:24 +00:00
|
|
|
|
var artist = GetParents().OfType<MusicArtist>().FirstOrDefault();
|
|
|
|
|
|
|
|
|
|
if (artist == null)
|
|
|
|
|
{
|
|
|
|
|
var name = AlbumArtist;
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(name))
|
|
|
|
|
{
|
|
|
|
|
artist = LibraryManager.GetArtist(name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return artist;
|
2014-02-07 22:40:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-07 02:51:52 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public List<string> AllArtists
|
2014-06-23 16:05:19 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-08-29 00:49:25 +00:00
|
|
|
|
var list = AlbumArtists.ToList();
|
2014-06-23 16:05:19 +00:00
|
|
|
|
|
|
|
|
|
list.AddRange(Artists);
|
|
|
|
|
|
|
|
|
|
return list;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-28 18:10:26 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public string AlbumArtist
|
|
|
|
|
{
|
|
|
|
|
get { return AlbumArtists.FirstOrDefault(); }
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-06 01:21:18 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool SupportsPeople
|
|
|
|
|
{
|
|
|
|
|
get { return false; }
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-29 00:49:25 +00:00
|
|
|
|
public List<string> AlbumArtists { get; set; }
|
2014-04-07 02:51:52 +00:00
|
|
|
|
|
2014-06-29 17:58:04 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the tracks.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The tracks.</value>
|
2015-09-20 02:06:56 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-06-29 17:58:04 +00:00
|
|
|
|
public IEnumerable<Audio> Tracks
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2015-01-25 06:34:50 +00:00
|
|
|
|
return GetRecursiveChildren(i => i is Audio).Cast<Audio>();
|
2014-06-29 17:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)
|
|
|
|
|
{
|
|
|
|
|
return Tracks;
|
|
|
|
|
}
|
|
|
|
|
|
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>
|
2015-01-24 22:33:26 +00:00
|
|
|
|
protected override string CreateUserDataKey()
|
2013-10-01 23:33:50 +00:00
|
|
|
|
{
|
|
|
|
|
var id = this.GetProviderId(MetadataProviders.MusicBrainzReleaseGroup);
|
|
|
|
|
|
2014-11-12 04:51:40 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(id))
|
2013-10-01 23:33:50 +00:00
|
|
|
|
{
|
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
|
|
|
|
|
2014-11-12 04:51:40 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(id))
|
2013-10-01 23:33:50 +00:00
|
|
|
|
{
|
2013-10-05 00:44:43 +00:00
|
|
|
|
return "MusicAlbum-Musicbrainz-" + id;
|
2013-10-01 23:33:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-14 01:34:24 +00:00
|
|
|
|
if (ConfigurationManager.Configuration.EnableStandaloneMusicKeys)
|
|
|
|
|
{
|
|
|
|
|
var albumArtist = AlbumArtist;
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(albumArtist))
|
|
|
|
|
{
|
|
|
|
|
return albumArtist + "-" + Name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-24 22:33:26 +00:00
|
|
|
|
return base.CreateUserDataKey();
|
2013-10-01 23:33:50 +00:00
|
|
|
|
}
|
2013-12-26 16:53:23 +00:00
|
|
|
|
|
2014-12-20 06:06:27 +00:00
|
|
|
|
protected override bool GetBlockUnratedValue(UserPolicy config)
|
2013-12-26 16:53:23 +00:00
|
|
|
|
{
|
2014-02-21 15:24:29 +00:00
|
|
|
|
return config.BlockUnratedItems.Contains(UnratedItem.Music);
|
2013-12-26 16:53:23 +00:00
|
|
|
|
}
|
2014-02-07 03:10:13 +00:00
|
|
|
|
|
2015-11-06 15:02:22 +00:00
|
|
|
|
public override UnratedItem GetBlockUnratedType()
|
|
|
|
|
{
|
|
|
|
|
return UnratedItem.Music;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 03:10:13 +00:00
|
|
|
|
public AlbumInfo GetLookupInfo()
|
|
|
|
|
{
|
|
|
|
|
var id = GetItemLookupInfo<AlbumInfo>();
|
|
|
|
|
|
2014-06-23 16:05:19 +00:00
|
|
|
|
id.AlbumArtists = AlbumArtists;
|
2014-02-07 03:10:13 +00:00
|
|
|
|
|
2016-03-14 01:34:24 +00:00
|
|
|
|
var artist = MusicArtist;
|
2014-02-07 03:10:13 +00:00
|
|
|
|
|
|
|
|
|
if (artist != null)
|
|
|
|
|
{
|
|
|
|
|
id.ArtistProviderIds = artist.ProviderIds;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-25 06:34:50 +00:00
|
|
|
|
id.SongInfos = GetRecursiveChildren(i => i is Audio)
|
|
|
|
|
.Cast<Audio>()
|
2014-02-07 03:10:13 +00:00
|
|
|
|
.Select(i => i.GetLookupInfo())
|
|
|
|
|
.ToList();
|
|
|
|
|
|
2015-05-31 18:22:51 +00:00
|
|
|
|
var album = id.SongInfos
|
|
|
|
|
.Select(i => i.Album)
|
|
|
|
|
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(album))
|
|
|
|
|
{
|
|
|
|
|
id.Name = album;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 03:10:13 +00:00
|
|
|
|
return id;
|
|
|
|
|
}
|
2016-02-01 17:22:02 +00:00
|
|
|
|
|
|
|
|
|
public async Task RefreshAllMetadata(MetadataRefreshOptions refreshOptions, IProgress<double> progress, CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
var items = GetRecursiveChildren().ToList();
|
|
|
|
|
|
|
|
|
|
var songs = items.OfType<Audio>().ToList();
|
|
|
|
|
|
|
|
|
|
var others = items.Except(songs).ToList();
|
|
|
|
|
|
|
|
|
|
var totalItems = songs.Count + others.Count;
|
|
|
|
|
var numComplete = 0;
|
|
|
|
|
|
|
|
|
|
var childUpdateType = ItemUpdateType.None;
|
|
|
|
|
|
|
|
|
|
// Refresh songs
|
|
|
|
|
foreach (var item in songs)
|
|
|
|
|
{
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
|
|
|
var updateType = await item.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
childUpdateType = childUpdateType | updateType;
|
|
|
|
|
|
|
|
|
|
numComplete++;
|
|
|
|
|
double percent = numComplete;
|
|
|
|
|
percent /= totalItems;
|
|
|
|
|
progress.Report(percent * 100);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var parentRefreshOptions = refreshOptions;
|
|
|
|
|
if (childUpdateType > ItemUpdateType.None)
|
|
|
|
|
{
|
|
|
|
|
parentRefreshOptions = new MetadataRefreshOptions(refreshOptions);
|
|
|
|
|
parentRefreshOptions.MetadataRefreshMode = MetadataRefreshMode.FullRefresh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Refresh current item
|
|
|
|
|
await RefreshMetadata(parentRefreshOptions, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
// Refresh all non-songs
|
|
|
|
|
foreach (var item in others)
|
|
|
|
|
{
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
|
|
|
|
var updateType = await item.RefreshMetadata(parentRefreshOptions, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
numComplete++;
|
|
|
|
|
double percent = numComplete;
|
|
|
|
|
percent /= totalItems;
|
|
|
|
|
progress.Report(percent * 100);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
progress.Report(100);
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2015-09-20 17:34:05 +00:00
|
|
|
|
}
|