ExceptionMiddleware.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using System;
  2. using System.Diagnostics;
  3. using System.Net;
  4. using System.Security.Claims;
  5. using System.Threading.Tasks;
  6. using GxPress.Common.Exceptions;
  7. using GxPress.Repository.Interface;
  8. using GxPress.Service.Interface;
  9. using Microsoft.AspNetCore.Http;
  10. using Microsoft.Extensions.Logging;
  11. using Newtonsoft.Json;
  12. namespace GxPress.Api
  13. {
  14. /// <summary>
  15. /// 自定义异常中间件
  16. /// </summary>
  17. public class ExceptionMiddleware
  18. {
  19. private readonly RequestDelegate _next;
  20. private readonly ILogger<ExceptionMiddleware> _logger;
  21. private readonly IHttpContextAccessor _contextAccessor;
  22. private readonly IApiLogService _apiLogService;
  23. public ExceptionMiddleware(RequestDelegate next, ILogger<ExceptionMiddleware> logger, IHttpContextAccessor contextAccessor, IApiLogService _apiLogService)
  24. {
  25. _next = next;
  26. this._apiLogService = _apiLogService;
  27. _logger = logger;
  28. _contextAccessor = contextAccessor;
  29. }
  30. public async Task Invoke(HttpContext context)
  31. {
  32. try
  33. {
  34. await _next.Invoke(context);
  35. // var watch = new Stopwatch();
  36. // watch.Start();
  37. if (context.User != null)
  38. {
  39. var ty = _contextAccessor?.HttpContext?.User?.FindFirst(ClaimTypes.Role);
  40. if (ty != null && !ty.Value.Equals("Admin"))
  41. {
  42. var userId = _contextAccessor?.HttpContext?.User?.FindFirst(ClaimTypes.NameIdentifier);
  43. if (int.TryParse(userId?.Value, out var accountId))
  44. {
  45. await _apiLogService.DataSave(context, 1, accountId);
  46. }
  47. }
  48. // watch.Stop();
  49. }
  50. }
  51. catch (BusinessException be)
  52. {
  53. _logger.LogDebug(be.Message);
  54. await HandleBusinessException(context, be);
  55. }
  56. catch (System.Exception ex)
  57. {
  58. _logger.LogError(ex, ex.Message);
  59. await HandleSystemException(context, ex);
  60. }
  61. }
  62. /// <summary>
  63. /// 处理业务异常
  64. /// </summary>
  65. /// <param name="context"></param>
  66. /// <param name="be"></param>
  67. /// <returns></returns>
  68. private Task HandleBusinessException(HttpContext context, BusinessException be)
  69. {
  70. context.Response.StatusCode = (int)HttpStatusCode.BadRequest;
  71. context.Response.ContentType = "application/json;charset=utf-8";
  72. return context.Response.WriteAsync(JsonConvert.SerializeObject(new
  73. {
  74. be.Message,
  75. be.StackTrace
  76. }));
  77. }
  78. /// <summary>
  79. /// 处理系统异常
  80. /// </summary>
  81. /// <param name="context"></param>
  82. /// <param name="ex"></param>
  83. /// <returns></returns>
  84. private Task HandleSystemException(HttpContext context, Exception ex)
  85. {
  86. context.Response.StatusCode = (int)HttpStatusCode.InternalServerError;
  87. context.Response.ContentType = "application/json;charset=utf-8";
  88. return context.Response.WriteAsync(JsonConvert.SerializeObject(ex));
  89. }
  90. }
  91. }