AuthedControllerBase.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using CZFW.Core;
  2. using CZFW.Framework.Model;
  3. using Microsoft.AspNetCore.Mvc.Filters;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. namespace CZFW.Framework
  8. {
  9. /// <summary>
  10. /// 需要管理员登陆的控制器基类
  11. /// </summary>
  12. public class AuthedControllerBase : ControllerBase
  13. {
  14. public SysUserSessionModel SysUser;
  15. public override void OnActionExecuting(ActionExecutingContext context)
  16. {
  17. //var user = new SysUserSessionModel
  18. //{
  19. // Account = "admin",
  20. // ClientId = "0",
  21. // Id = "0",
  22. // NickName = "admin"
  23. //};
  24. var user =GetSession<SysUserSessionModel>(ConfigHelper.UserSessionName);
  25. if (user == null)
  26. {
  27. context.HttpContext.Response.StatusCode = 401;
  28. context.Result = Json(Result(false, "您还没有登陆或者已经登出,请登陆后再试", null, "401"));
  29. return;
  30. }
  31. SysUser = user;
  32. base.OnActionExecuting(context);
  33. }
  34. }
  35. }