2.權限控制的實現
此處使用比較簡單AOP方式,用MVC的Filter實現,代碼如下
復制代碼 代碼如下:
using System.Collections.Generic;
using System.Web.Mvc;
using Madnet.Model.MadAdmin;
using Madnet.BLL.MadAdmin;
namespace Madnet.Controllers.MadAdmin
{
public class SupportFilterAttribute : ActionFilterAttribute
{
private bool _IsLogin = true;
/// <summary>
/// 是否需要登錄
/// </summary>
public bool IsLogin
{
set
{
_IsLogin = value;
}
get
{
if (System.Configuration.ConfigurationManager.AppSettings["IsLogin"] != null)
{
bool.TryParse(System.Configuration.ConfigurationManager.AppSettings["IsLogin"].ToString(), out _IsLogin);
}
return _IsLogin;
}
}
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
string controllerName = (string)filterContext.RouteData.Values["controller"];
string actionName = (string)filterContext.RouteData.Values["action"];
if (IsLogin && filterContext.HttpContext.Session["Login_User"] == null)
{
filterContext.HttpContext.Response.Redirect(new UrlHelper(filterContext.RequestContext).Action("Login", "Default"));
filterContext.Result = new EmptyResult();
}
else if (IsLogin && filterContext.HttpContext.Session["Login_User"] != null)
{
Mad_User user = filterContext.HttpContext.Session["Login_User"] as Mad_User;
if (!user.is_super)
{
if (!GetPopedom(user).Exists(p => p.Controller_Name == controllerName.ToLower() && p.Action_Name == actionName.ToLower()))
{
filterContext.HttpContext.Response.Write("沒有權限");
filterContext.Result = new EmptyResult();
}
}
}
}
/// <summary>
/// 獲取當前用戶所有有權限執行的動作
/// </summary>
/// <returns></returns>
public List<Atmodel> GetPopedom(Mad_User user)
{
List<Atmodel> ats = new List<Atmodel>();
List<Mad_Popedom> pops = Mad_PopedomBLL.GetPopedombyUser(user.user_id);
foreach (Mad_Popedom pop in pops)
{
ats.Add(new AtModel() { Controller_Name = pop.Control, Action_Name = pop.Action });
}
return ats;
}
}
}
解釋一下,上面的代碼就是在執行前,先獲取登錄用戶可以運行的Controller-Action,然後和當前需要執行的Controller-Action比較,如存在,即通過,否則為沒有權限執行。
3.為動作添加權限
為簡單起見,對於Controller層我是獨立出來一個類庫的,好處是等會為角色添加權限的時候我們不需要手動輸入,只要反射dll就可以了。
如圖所示,凡需要權限控制的函數,只需要添加[SupportFilter]特性就可以了,當然這種方式只能控制到Action級。
4.為角色額添加權限
這個比較簡單,只需要把角色和權限關聯起來就可以了,這裡我是用反射Controller層dll實現。
Web.config
Global.asax.cs
Madnet.Controllers.Test即為Controller層的dll
Test為Controller名,index為Action名,選擇role2可以訪問的Action,提交到數據庫即可。此圖表示role2擁有Test1Controller的訪問權限,但是沒有Test2Controller,Test3Controller的訪問權限。
5.結束
上面4步即已完成基本的權限控制。可以在此基礎上加上用戶組,用戶,菜單等管理,可實現”用戶-角色-權限”的自由組合,一個簡單的通用後台大概就是這樣了。