196 lines
7.2 KiB
C#
196 lines
7.2 KiB
C#
using Bootstrap.Security.DataAccess;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
|
||
namespace Bootstrap.DataAccess
|
||
{
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public class Role
|
||
{
|
||
/// <summary>
|
||
/// 获得/设置 角色主键ID
|
||
/// </summary>
|
||
public string Id { get; set; }
|
||
|
||
/// <summary>
|
||
/// 获得/设置 角色名称
|
||
/// </summary>
|
||
public string RoleName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 获得/设置 角色描述
|
||
/// </summary>
|
||
public string Description { get; set; }
|
||
|
||
/// <summary>
|
||
/// 获取/设置 用户角色关联状态 checked 标示已经关联 '' 标示未关联
|
||
/// </summary>
|
||
public string Checked { get; set; }
|
||
|
||
/// <summary>
|
||
/// 查询所有角色
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
public virtual IEnumerable<Role> Retrieves() => DbManager.Db.Fetch<Role>();
|
||
|
||
/// <summary>
|
||
/// 保存用户角色关系
|
||
/// </summary>
|
||
/// <param name="userId"></param>
|
||
/// <param name="roleIds"></param>
|
||
/// <returns></returns>
|
||
public virtual bool SaveByUserId(string userId, IEnumerable<string> roleIds)
|
||
{
|
||
var ret = false;
|
||
var db = DbManager.Db;
|
||
try
|
||
{
|
||
db.BeginTransaction();
|
||
// delete user from config table
|
||
db.Execute("delete from UserRole where UserID = @0", userId);
|
||
db.InsertBulk("UserRole", roleIds.Select(g => new { UserID = userId, RoleID = g }));
|
||
db.CompleteTransaction();
|
||
ret = true;
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
db.AbortTransaction();
|
||
throw ex;
|
||
}
|
||
return ret;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 查询某个用户所拥有的角色
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
public virtual IEnumerable<Role> RetrievesByUserId(string userId) => DbManager.Db.Fetch<Role>("select r.ID, r.RoleName, r.Description, case ur.RoleID when r.ID then 'checked' else '' end Checked from Roles r left join UserRole ur on r.ID = ur.RoleID and UserID = @0", userId);
|
||
|
||
/// <summary>
|
||
/// 删除角色表
|
||
/// </summary>
|
||
/// <param name="value"></param>
|
||
public virtual bool Delete(IEnumerable<string> value)
|
||
{
|
||
bool ret = false;
|
||
var ids = string.Join(",", value);
|
||
var db = DbManager.Db;
|
||
try
|
||
{
|
||
db.BeginTransaction();
|
||
db.Execute($"delete from UserRole where RoleID in ({ids})");
|
||
db.Execute($"delete from RoleGroup where RoleID in ({ids})");
|
||
db.Execute($"delete from NavigationRole where RoleID in ({ids})");
|
||
db.Execute($"delete from Roles where ID in ({ids})");
|
||
db.CompleteTransaction();
|
||
ret = true;
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
db.AbortTransaction();
|
||
throw ex;
|
||
}
|
||
return ret;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 保存新建/更新的角色信息
|
||
/// </summary>
|
||
/// <param name="p"></param>
|
||
/// <returns></returns>
|
||
public virtual bool Save(Role p)
|
||
{
|
||
if (!string.IsNullOrEmpty(p.RoleName) && p.RoleName.Length > 50) p.RoleName = p.RoleName.Substring(0, 50);
|
||
if (!string.IsNullOrEmpty(p.Description) && p.Description.Length > 50) p.Description = p.Description.Substring(0, 500);
|
||
|
||
DbManager.Db.Save(p);
|
||
return true;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 查询某个菜单所拥有的角色
|
||
/// </summary>
|
||
/// <param name="menuId"></param>
|
||
/// <returns></returns>
|
||
public virtual IEnumerable<Role> RetrievesByMenuId(string menuId) => DbManager.Db.Fetch<Role>("select r.ID, r.RoleName, r.Description, case ur.RoleID when r.ID then 'checked' else '' end Checked from Roles r left join NavigationRole ur on r.ID = ur.RoleID and NavigationID = @0", menuId);
|
||
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
/// <param name="menuId"></param>
|
||
/// <param name="roleIds"></param>
|
||
/// <returns></returns>
|
||
public virtual bool SavaByMenuId(string menuId, IEnumerable<string> roleIds)
|
||
{
|
||
var ret = false;
|
||
var db = DbManager.Db;
|
||
db.BeginTransaction();
|
||
try
|
||
{
|
||
// delete role from config table
|
||
db.Execute("delete from NavigationRole where NavigationID = @0", menuId);
|
||
db.InsertBulk("NavigationRole", roleIds.Select(g => new { NavigationID = menuId, RoleID = g }));
|
||
db.CompleteTransaction();
|
||
ret = true;
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
db.AbortTransaction();
|
||
throw ex;
|
||
}
|
||
return ret;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 根据GroupId查询和该Group有关的所有Roles
|
||
/// </summary>
|
||
/// <param name="groupId"></param>
|
||
/// <returns></returns>
|
||
public virtual IEnumerable<Role> RetrievesByGroupId(string groupId) => DbManager.Db.Fetch<Role>("select r.ID, r.RoleName, r.Description, case ur.RoleID when r.ID then 'checked' else '' end Checked from Roles r left join RoleGroup ur on r.ID = ur.RoleID and GroupID = @0", groupId);
|
||
|
||
/// <summary>
|
||
/// 根据GroupId更新Roles信息,删除旧的Roles信息,插入新的Roles信息
|
||
/// </summary>
|
||
/// <param name="groupId"></param>
|
||
/// <param name="roleIds"></param>
|
||
/// <returns></returns>
|
||
public virtual bool SaveByGroupId(string groupId, IEnumerable<string> roleIds)
|
||
{
|
||
var ret = false;
|
||
var db = DbManager.Db;
|
||
try
|
||
{
|
||
// delete user from config table
|
||
db.Execute("delete from RoleGroup where GroupID = @0", groupId);
|
||
db.InsertBulk("RoleGroup", roleIds.Select(g => new { GroupID = groupId, RoleID = g }));
|
||
db.CompleteTransaction();
|
||
ret = true;
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
db.AbortTransaction();
|
||
throw ex;
|
||
}
|
||
return ret;
|
||
}
|
||
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
/// <param name="userName"></param>
|
||
/// <returns></returns>
|
||
public virtual IEnumerable<string> RetrieveRolesByUserName(string userName) => DbHelper.RetrieveRolesByUserName(userName);
|
||
|
||
/// <summary>
|
||
/// 根据菜单url查询某个所拥有的角色
|
||
/// 从NavigatorRole表查
|
||
/// 从Navigators-〉GroupNavigatorRole-〉Role查查询某个用户所拥有的角色
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
public virtual IEnumerable<string> RetrieveRolesByUrl(string url) => DbHelper.RetrieveRolesByUrl(url);
|
||
}
|
||
}
|