BootstrapAdmin/Bootstrap.Admin/Models/HeaderBarModel.cs

45 lines
1.2 KiB
C#
Raw Normal View History

2016-10-23 23:35:17 +08:00
using Bootstrap.DataAccess;
using System.Security.Principal;
2016-10-23 23:35:17 +08:00
namespace Bootstrap.Admin.Models
2016-10-20 17:55:29 +08:00
{
/// <summary>
///
/// </summary>
2016-10-23 23:35:17 +08:00
public class HeaderBarModel : ModelBase
2016-10-20 17:55:29 +08:00
{
/// <summary>
///
/// </summary>
/// <param name="identity"></param>
public HeaderBarModel(IIdentity identity)
2016-10-23 23:35:17 +08:00
{
var user = UserHelper.RetrieveUserByUserName(identity.Name);
Icon = string.Format("{0}{1}", DictHelper.RetrieveIconFolderPath(), user.Icon);
2016-10-23 23:35:17 +08:00
DisplayName = user.DisplayName;
UserName = user.UserName;
AppCode = user.App;
if (!string.IsNullOrEmpty(user.Css)) Theme = user.Css;
2016-10-23 23:35:17 +08:00
}
2016-10-20 17:55:29 +08:00
/// <summary>
///
/// </summary>
public string UserName { get; }
2016-10-23 23:35:17 +08:00
/// <summary>
///
/// </summary>
public string DisplayName { get; }
2016-10-23 23:35:17 +08:00
/// <summary>
/// 获得/设置 用户头像地址
/// </summary>
public string Icon { get; }
/// <summary>
/// 获得 当前设置的默认应用
/// </summary>
public string AppCode { get; }
2016-10-20 17:55:29 +08:00
}
}