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

112 lines
3.1 KiB
C#
Raw Normal View History

2013-11-21 20:48:26 +00:00
using MediaBrowser.Model.Dto;
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>
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; }
/// <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;
}
}
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
return Task.FromResult(true);
}
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();
}
/// <summary>
/// Gets or sets the last fm image URL.
/// </summary>
/// <value>The last fm image URL.</value>
public string LastFmImageUrl { get; set; }
public string LastFmImageSize { get; set; }
2013-11-21 20:48:26 +00:00
public MusicArtist()
{
2013-12-02 21:46:22 +00:00
UserItemCountList = new List<ItemByNameCounts>();
Tags = new List<string>();
ProductionLocations = new List<string>();
2013-11-21 20:48:26 +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-02-21 01:33:05 +00:00
}
}