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

76 lines
1.9 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
2015-01-26 17:47:16 -05:00
using System.Runtime.Serialization;
2013-07-01 13:17:33 -04:00
namespace MediaBrowser.Controller.Entities
{
public class GameGenre : BaseItem, IItemByName
{
/// <summary>
/// Gets the user data key.
/// </summary>
/// <returns>System.String.</returns>
2015-01-24 17:33:26 -05:00
protected override string CreateUserDataKey()
2013-07-01 13:17:33 -04:00
{
return "GameGenre-" + Name;
}
/// <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;
}
}
/// <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;
}
}
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;
}
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.Genres.Contains(Name, StringComparer.OrdinalIgnoreCase);
}
2015-06-28 21:10:45 -04:00
[IgnoreDataMember]
public override bool SupportsPeople
{
get
{
return false;
}
}
2013-07-01 13:17:33 -04:00
}
}