CZAuth.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using CZFW.Framework.Model.ViewModel;
  2. using Microsoft.AspNetCore.Builder;
  3. using Microsoft.AspNetCore.Http;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace CZFW.Framework.Auth
  9. {
  10. public class CZAuth : IMiddleware
  11. {
  12. public Task InvokeAsync(HttpContext context, RequestDelegate next)
  13. {
  14. var path = context.Request.Path;
  15. if (path.StartsWithSegments("/assets") ||
  16. path.StartsWithSegments("/userinfo/login") ||
  17. path.StartsWithSegments("/userinfo/login2") ||
  18. path.StartsWithSegments("/userinfo/login3") ||
  19. path.StartsWithSegments("/userinfo/GetCurrentUser") ||
  20. path.StartsWithSegments("/home/index") ||
  21. path.StartsWithSegments("/") ||
  22. path.StartsWithSegments("/home") ||
  23. path.StartsWithSegments("/index") ||
  24. path.StartsWithSegments("/login") ||
  25. path.StartsWithSegments("/org") ||
  26. path.StartsWithSegments("/worldManage") ||
  27. path.StartsWithSegments("/userManage") ||
  28. path.StartsWithSegments("/uploadedimages") ||
  29. path.StartsWithSegments("/sync"))
  30. return next.Invoke(context);
  31. var op = Model.OperatorProvider.Provider.GetCurrent();
  32. if (op != null)
  33. {
  34. if (!(path.StartsWithSegments("/portal") || path.StartsWithSegments("/portalManage") || path.StartsWithSegments("/uploadedImage") || path.StartsWithSegments("/Attachment/UploadImage")) && (op.IsSystem && !op.HasAccess(context.Request.Path)))
  35. {
  36. var result = new ResultModel
  37. {
  38. Success = false,
  39. Code = "401",
  40. Message = "Not Authorized Access!"
  41. };
  42. return context.Response.WriteAsync(Core.Json.Json.ToJson(result));
  43. }
  44. return next.Invoke(context);
  45. }
  46. else
  47. {
  48. var result = new ResultModel
  49. {
  50. Success = false,
  51. Code = "403",
  52. Message = "Not Login!"
  53. };
  54. return context.Response.WriteAsync(CZFW.Core.Json.Json.ToJson(result));
  55. }
  56. }
  57. }
  58. public static class CZAuthExtensions
  59. {
  60. public static IApplicationBuilder UseCZAuth(this IApplicationBuilder builder)
  61. {
  62. return builder.UseMiddleware<CZAuth>();
  63. }
  64. }
  65. }