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

113 lines
3.2 KiB
C#
Raw Normal View History

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