96 lines
3.3 KiB
C#
96 lines
3.3 KiB
C#
using Bootstrap.Security;
|
|
using Bootstrap.Security.DataAccess;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Bootstrap.DataAccess
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class Menu : BootstrapMenu
|
|
{
|
|
/// <summary>
|
|
/// 删除菜单信息
|
|
/// </summary>
|
|
/// <param name="value"></param>
|
|
public virtual bool Delete(IEnumerable<string> value)
|
|
{
|
|
var ret = false;
|
|
var db = DbManager.Db;
|
|
try
|
|
{
|
|
var ids = string.Join(",", value);
|
|
db.BeginTransaction();
|
|
db.Execute($"delete from NavigationRole where NavigationID in ({ids})");
|
|
db.Execute($"delete from Navigations 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(BootstrapMenu p)
|
|
{
|
|
if (string.IsNullOrEmpty(p.Name)) throw new ArgumentNullException(nameof(p.Name));
|
|
|
|
if (p.Name.Length > 50) p.Name = p.Name.Substring(0, 50);
|
|
if (p.Icon != null && p.Icon.Length > 50) p.Icon = p.Icon.Substring(0, 50);
|
|
if (p.Url != null && p.Url.Length > 4000) p.Url = p.Url.Substring(0, 4000);
|
|
DbManager.Db.Save(p);
|
|
return true;
|
|
}
|
|
/// <summary>
|
|
/// 查询某个角色所配置的菜单
|
|
/// </summary>
|
|
/// <param name="roleId"></param>
|
|
/// <returns></returns>
|
|
public virtual IEnumerable<object> RetrieveMenusByRoleId(string roleId)
|
|
{
|
|
var menus = DbManager.Db.Fetch<BootstrapMenu>("select NavigationID as Id from NavigationRole where RoleID = @0", roleId);
|
|
return menus.Select(m => new { m.Id });
|
|
}
|
|
/// <summary>
|
|
/// 通过角色ID保存当前授权菜单
|
|
/// </summary>
|
|
/// <param name="roleId"></param>
|
|
/// <param name="menuIds"></param>
|
|
/// <returns></returns>
|
|
public virtual bool SaveMenusByRoleId(string roleId, IEnumerable<string> menuIds)
|
|
{
|
|
bool ret = false;
|
|
var db = DbManager.Db;
|
|
try
|
|
{
|
|
db.BeginTransaction();
|
|
db.Execute("delete from NavigationRole where RoleID = @0", roleId);
|
|
db.InsertBulk("NavigationRole", menuIds.Select(g => new { NavigationID = g, RoleID = roleId }));
|
|
db.CompleteTransaction();
|
|
ret = true;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
db.AbortTransaction();
|
|
throw ex;
|
|
}
|
|
return ret;
|
|
}
|
|
/// <summary>
|
|
/// 通过当前用户名获得所有菜单
|
|
/// </summary>
|
|
/// <param name="userName">当前登陆的用户名</param>
|
|
/// <returns></returns>
|
|
public virtual IEnumerable<BootstrapMenu> RetrieveAllMenus(string userName) => DbHelper.RetrieveAllMenus(userName);
|
|
}
|
|
}
|