2013-12-26 16:53:23 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
|
using MediaBrowser.Model.Dto;
|
2013-11-21 20:48:26 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Runtime.Serialization;
|
2013-11-26 21:36:11 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2013-11-21 20:48:26 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class MusicArtist
|
|
|
|
|
/// </summary>
|
2013-12-05 16:50:21 +00:00
|
|
|
|
public class MusicArtist : Folder, IItemByName, IHasMusicGenres, IHasDualAccess, IHasTags, IHasProductionLocations
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-11-21 20:48:26 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-12-02 21:46:22 +00:00
|
|
|
|
public List<ItemByNameCounts> UserItemCountList { get; set; }
|
2013-11-21 20:48:26 +00:00
|
|
|
|
|
|
|
|
|
public bool IsAccessedByName { get; set; }
|
|
|
|
|
|
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; }
|
|
|
|
|
|
|
|
|
|
public List<string> ProductionLocations { get; set; }
|
|
|
|
|
|
2013-11-21 20:48:26 +00:00
|
|
|
|
public override bool IsFolder
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return !IsAccessedByName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override IEnumerable<BaseItem> ActualChildren
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (IsAccessedByName)
|
|
|
|
|
{
|
2013-11-26 21:36:11 +00:00
|
|
|
|
return new List<BaseItem>();
|
2013-11-21 20:48:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.ActualChildren;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-03 17:44:13 +00:00
|
|
|
|
private readonly Task _cachedTask = Task.FromResult(true);
|
2013-11-26 21:36:11 +00:00
|
|
|
|
protected override Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool? recursive = null, bool forceRefreshMetadata = false)
|
|
|
|
|
{
|
|
|
|
|
if (IsAccessedByName)
|
|
|
|
|
{
|
|
|
|
|
// Should never get in here anyway
|
2014-02-03 17:44:13 +00:00
|
|
|
|
return _cachedTask;
|
2013-11-26 21:36:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.ValidateChildrenInternal(progress, cancellationToken, recursive, forceRefreshMetadata);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-21 20:48:26 +00:00
|
|
|
|
public override string GetClientTypeName()
|
|
|
|
|
{
|
|
|
|
|
if (IsAccessedByName)
|
|
|
|
|
{
|
|
|
|
|
//return "Artist";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.GetClientTypeName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public MusicArtist()
|
|
|
|
|
{
|
2013-12-02 21:46:22 +00:00
|
|
|
|
UserItemCountList = new List<ItemByNameCounts>();
|
2013-12-05 16:50:21 +00:00
|
|
|
|
Tags = new List<string>();
|
|
|
|
|
ProductionLocations = new List<string>();
|
2013-11-21 20:48:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-01 23:33:50 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public override string GetUserDataKey()
|
|
|
|
|
{
|
2013-11-21 20:48:26 +00:00
|
|
|
|
return GetUserDataKey(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2013-12-21 18:37:34 +00:00
|
|
|
|
private static string GetUserDataKey(MusicArtist item)
|
2013-11-21 20:48:26 +00:00
|
|
|
|
{
|
|
|
|
|
var id = item.GetProviderId(MetadataProviders.Musicbrainz);
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(id))
|
|
|
|
|
{
|
|
|
|
|
return "Artist-Musicbrainz-" + id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return "Artist-" + item.Name;
|
2013-10-01 23:33:50 +00:00
|
|
|
|
}
|
2013-12-26 16:53:23 +00:00
|
|
|
|
|
|
|
|
|
protected override bool GetBlockUnratedValue(UserConfiguration config)
|
|
|
|
|
{
|
|
|
|
|
return config.BlockUnratedMusic;
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|