2014-03-09 22:14:44 +00:00
|
|
|
|
using System;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-03-09 22:14:44 +00:00
|
|
|
|
using System.Linq;
|
2014-08-30 14:26:29 +00:00
|
|
|
|
using System.Runtime.Serialization;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2013-06-11 03:31:00 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class MusicGenre
|
|
|
|
|
/// </summary>
|
2013-06-27 19:29:58 +00:00
|
|
|
|
public class MusicGenre : BaseItem, IItemByName
|
2013-06-11 03:31:00 +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-06-11 03:31:00 +00:00
|
|
|
|
{
|
|
|
|
|
return "MusicGenre-" + Name;
|
|
|
|
|
}
|
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
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns the folder containing the item.
|
|
|
|
|
/// If the item is a folder, it returns the folder itself
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The containing folder path.</value>
|
2015-01-26 22:47:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-07 22:40:03 +00:00
|
|
|
|
public override string ContainingFolderPath
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Path;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-06 05:39:07 +00:00
|
|
|
|
public override bool CanDelete()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-19 04:37:44 +00:00
|
|
|
|
public override bool IsSaveLocalMetadataEnabled()
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance is owned item.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance is owned item; otherwise, <c>false</c>.</value>
|
2015-01-26 22:47:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-07 22:40:03 +00:00
|
|
|
|
public override bool IsOwnedItem
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-09 22:14:44 +00:00
|
|
|
|
|
|
|
|
|
public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems)
|
|
|
|
|
{
|
2015-01-26 22:47:16 +00:00
|
|
|
|
return inputItems.Where(GetItemFilter());
|
2015-01-25 06:34:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-26 22:47:16 +00:00
|
|
|
|
public Func<BaseItem, bool> GetItemFilter()
|
2015-01-25 06:34:50 +00:00
|
|
|
|
{
|
2015-01-26 22:47:16 +00:00
|
|
|
|
return i => (i is IHasMusicGenres) && i.Genres.Contains(Name, StringComparer.OrdinalIgnoreCase);
|
2014-03-09 22:14:44 +00:00
|
|
|
|
}
|
2015-06-29 01:10:45 +00:00
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool SupportsPeople
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-11 03:31:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|