ASP .NET Core MVC 过滤器之一 ActionFilterAttribute

.NET Core MVC 登陆或权限过滤器 

using Microsoft.AspNetCore.Mvc.Filters;
using System.Linq;
using Finance.Web.Models;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Controllers;
using Finance.Models;

namespace Finance.Admin.Attribues
{
    /// 
    /// 登陆过滤器
    /// 
    public class SignFilter: ActionFilterAttribute
    {
        /// 
        /// 当动作执行中 
        /// 
        /// 
        public override void OnActionExecuted(ActionExecutedContext context)
        {
            // 判断是否检查登录
            var noNeedCheck = false;
            if(context.ActionDescriptor is ControllerActionDescriptor controllerActionDescriptor)
            {
                noNeedCheck = controllerActionDescriptor.MethodInfo.GetCustomAttributes(inherit: true)
                  .Any(a => a.GetType().Equals(typeof(NoSignAttribute)));
            }
            if (noNeedCheck) return;
            // 检查登陆 - 在SignIn中判断用户合法性,将登陆信息保存在Session中,在SignOut中移除登陆信息
            // 获取登陆信息 - 这里采用Session来保存登陆信息 -- Constants是字符串常量池
            var admin = context.HttpContext.Session.GetObjectFromJson();

            // 检查登陆信息
            if (admin == null)
            {
                // 用户未登陆 - 跳转到登陆界面
                context.Result = new RedirectResult("/Login/Index");
            }
            base.OnActionExecuted(context);
        }
        /// 
        /// 不需要登陆的地方加个特性
        /// 
        public class NoSignAttribute : ActionFilterAttribute { }
    }
}

不需要登陆的地方加个特性

[NoSign]
public IActionResult SignIn()
{
	// TODO
}

需要注册过滤器

public void ConfigureServices(IServiceCollection services)
{
	services.AddMvc(config =>config.Filters.Add(typeof(SignFilter))).SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
	// Do Others
}

 

你可能感兴趣的:(小白轻松学c#.net,.net,core)