Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Entities/Genre.cs

79 lines
1.9 KiB
C#
Raw Normal View History

2015-01-26 17:47:16 -05:00
using System.Runtime.Serialization;
using MediaBrowser.Controller.Entities.Audio;
using System;
using System.Collections.Generic;
using System.Linq;
2013-02-20 20:33:05 -05:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class Genre
/// </summary>
2013-06-27 15:29:58 -04:00
public class Genre : BaseItem, IItemByName
2013-02-20 20:33:05 -05:00
{
2016-04-30 19:05:21 -04:00
public override List<string> GetUserDataKeys()
{
2016-04-30 19:05:21 -04:00
var list = base.GetUserDataKeys();
list.Insert(0, "Genre-" + Name);
return list;
}
/// <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 17:47:16 -05:00
[IgnoreDataMember]
public override string ContainingFolderPath
{
get
{
return Path;
}
}
2015-02-18 23:37:44 -05:00
public override bool IsSaveLocalMetadataEnabled()
{
return true;
}
2015-02-06 00:39:07 -05:00
public override bool CanDelete()
{
return false;
}
/// <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 17:47:16 -05:00
[IgnoreDataMember]
public override bool IsOwnedItem
{
get
{
return false;
}
}
public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems)
{
2015-01-26 17:47:16 -05:00
return inputItems.Where(GetItemFilter());
2015-01-25 01:34:50 -05:00
}
2015-01-26 17:47:16 -05:00
public Func<BaseItem, bool> GetItemFilter()
2015-01-25 01:34:50 -05:00
{
2015-01-26 17:47:16 -05:00
return i => !(i is Game) && !(i is IHasMusicGenres) && i.Genres.Contains(Name, StringComparer.OrdinalIgnoreCase);
}
2015-06-28 21:10:45 -04:00
[IgnoreDataMember]
public override bool SupportsPeople
{
get
{
return false;
}
}
2013-02-20 20:33:05 -05:00
}
}