jellyfin-server/MediaBrowser.Controller/Entities/GameSystem.cs

77 lines
1.9 KiB
C#
Raw Normal View History

2014-01-17 21:18:43 +00:00
using System.Runtime.Serialization;
2014-02-07 03:10:13 +00:00
using MediaBrowser.Controller.Providers;
2014-01-17 21:18:43 +00:00
using MediaBrowser.Model.Configuration;
2013-12-26 16:53:23 +00:00
using System;
2014-12-20 06:06:27 +00:00
using MediaBrowser.Model.Users;
2013-09-21 21:00:04 +00:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class GameSystem
/// </summary>
2014-02-07 03:10:13 +00:00
public class GameSystem : Folder, IHasLookupInfo<GameSystemInfo>
2013-09-21 21:00:04 +00:00
{
/// <summary>
/// Return the id that should be used to key display prefs for this item.
/// Default is based on the type for everything except actual generic folders.
/// </summary>
/// <value>The display prefs id.</value>
2014-01-17 21:18:43 +00:00
[IgnoreDataMember]
2013-09-21 21:00:04 +00:00
public override Guid DisplayPreferencesId
{
get
{
return Id;
}
}
2013-09-22 16:49:55 +00:00
/// <summary>
/// Gets or sets the game system.
/// </summary>
/// <value>The game system.</value>
public string GameSystemName { get; set; }
/// <summary>
/// Gets the user data key.
/// </summary>
/// <returns>System.String.</returns>
2015-01-24 22:33:26 +00:00
protected override string CreateUserDataKey()
{
if (!string.IsNullOrEmpty(GameSystemName))
{
return "GameSystem-" + GameSystemName;
}
2015-01-24 22:33:26 +00:00
return base.CreateUserDataKey();
}
2013-12-26 16:53:23 +00:00
2014-12-20 06:06:27 +00:00
protected override bool GetBlockUnratedValue(UserPolicy config)
2013-12-26 16:53:23 +00:00
{
// Don't block. Determine by game
return false;
}
2014-02-07 03:10:13 +00:00
2015-11-06 15:02:22 +00:00
public override UnratedItem GetBlockUnratedType()
{
return UnratedItem.Game;
}
2014-02-07 03:10:13 +00:00
public GameSystemInfo GetLookupInfo()
{
var id = GetItemLookupInfo<GameSystemInfo>();
id.Path = Path;
return id;
}
2015-06-29 01:10:45 +00:00
[IgnoreDataMember]
public override bool SupportsPeople
{
get
{
return false;
}
}
2013-09-21 21:00:04 +00:00
}
}