Пример #1
0
        public string LoadUserInfoList()
        {
            IBLL.IUserInfoService userInfoService = new BLL.UserInfoService();
            List <Model.UserInfo> list            = userInfoService.LoadEntities(u => true).ToList();

            return("序列化的数据");
        }
Пример #2
0
        public string LoadUserInfoList()
        {
            IBLL.IUserInfoService UserInfoService = new BLL.UserInfoService();
            List <Model.UserInfo> list            = UserInfoService.LoadEntities(u => true).ToList();

            return(Common.SerializeHelper.SerializeToString(list));
            //SOA:面向服务。
        }
Пример #3
0
        protected override void OnActionExecuting(ActionExecutingContext filterContext)//动作执行前
        {
            bool isExt = false;

            if (Session["userInfo"] != null)
            {
                LoginUser = Session["userInfo"] as UserInfo;
                isExt     = true;
                if (LoginUser.UName == "admin")    //超级权限,留的后门
                {
                    return;
                }
                //完成权限过滤.
                string requestUrl        = Request.Url.AbsolutePath.ToLower();//获取URL地址.
                string requestHttpMethod = Request.HttpMethod;

                IBLL.IUserInfoService   userInfoService   = new BLL.UserInfoService();//暂时没有注入
                IBLL.IActionInfoService actionInfoService = new BLL.ActionInfoService();

                var currentAction = actionInfoService.LoadEntities(a => a.Url == requestUrl && a.HttpMethod == requestHttpMethod).FirstOrDefault();    //根据URL地址与请求方式找出具体的权限.
                if (currentAction == null)
                {
                    Response.Redirect("/Error.html");
                    return;
                }
                //通过1号线进行校验.
                var currentUserInfo = userInfoService.LoadEntities(u => u.ID == LoginUser.ID).FirstOrDefault();                              //登录用户
                var actions         = currentUserInfo.R_UserInfo_ActionInfo.Where(r => r.ActionInfoID == currentAction.ID).FirstOrDefault(); //判断登录用户是否有权限
                if (actions != null)
                {
                    if (actions.IsPass == true)
                    {
                        return;
                    }
                    else
                    {
                        Response.Redirect("/Error.html");
                        return;
                    }
                }
                //走2号线校验.
                var currentUserRoles   = currentUserInfo.RoleInfo;
                var currentUserActions = from a in currentUserRoles
                                         select a.ActionInfo;
                var count = (from a in currentUserActions
                             from b in a
                             where b.ID == currentAction.ID
                             select b).Count();
                if (count < 1)
                {
                    Response.Redirect("/Error.html");
                    return;
                }
                //走3条线.
            }
            if (!isExt)//用户没有登录
            {
                filterContext.HttpContext.Response.Redirect("/Login/Index");
            }
            base.OnActionExecuting(filterContext);
        }