jellyfin/MediaBrowser.Controller/Entities/GameSystem.cs

63 lines
1.7 KiB
C#
Raw Normal View History

2014-01-17 22:18:43 +01:00
using System.Runtime.Serialization;
2014-02-07 04:10:13 +01:00
using MediaBrowser.Controller.Providers;
2014-01-17 22:18:43 +01:00
using MediaBrowser.Model.Configuration;
2013-12-26 17:53:23 +01:00
using System;
2014-12-20 07:06:27 +01:00
using MediaBrowser.Model.Users;
2013-09-21 23:00:04 +02:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class GameSystem
/// </summary>
2014-02-07 04:10:13 +01:00
public class GameSystem : Folder, IHasLookupInfo<GameSystemInfo>
2013-09-21 23:00:04 +02: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 22:18:43 +01:00
[IgnoreDataMember]
2013-09-21 23:00:04 +02:00
public override Guid DisplayPreferencesId
{
get
{
return Id;
}
}
2013-09-22 18:49:55 +02: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 23:33:26 +01:00
protected override string CreateUserDataKey()
{
if (!string.IsNullOrEmpty(GameSystemName))
{
return "GameSystem-" + GameSystemName;
}
2015-01-24 23:33:26 +01:00
return base.CreateUserDataKey();
}
2013-12-26 17:53:23 +01:00
2014-12-20 07:06:27 +01:00
protected override bool GetBlockUnratedValue(UserPolicy config)
2013-12-26 17:53:23 +01:00
{
// Don't block. Determine by game
return false;
}
2014-02-07 04:10:13 +01:00
public GameSystemInfo GetLookupInfo()
{
var id = GetItemLookupInfo<GameSystemInfo>();
id.Path = Path;
return id;
}
2013-09-21 23:00:04 +02:00
}
}