ExceptionMiddleware.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using System;
  2. using System.Net;
  3. using System.Threading.Tasks;
  4. using GxPress.Common.Exceptions;
  5. using Microsoft.AspNetCore.Http;
  6. using Microsoft.Extensions.Logging;
  7. using Newtonsoft.Json;
  8. namespace GxPress.Common.Middleware
  9. {
  10. /// <summary>
  11. /// 自定义异常中间件
  12. /// </summary>
  13. public class ExceptionMiddleware
  14. {
  15. private readonly RequestDelegate _next;
  16. private readonly ILogger<ExceptionMiddleware> _logger;
  17. public ExceptionMiddleware(RequestDelegate next, ILogger<ExceptionMiddleware> logger)
  18. {
  19. _next = next;
  20. _logger = logger;
  21. }
  22. public async Task Invoke(HttpContext context)
  23. {
  24. try
  25. {
  26. await _next.Invoke(context);
  27. }
  28. catch (BusinessException be)
  29. {
  30. _logger.LogDebug(be.Message);
  31. await HandleBusinessException(context, be);
  32. }
  33. catch (System.Exception ex)
  34. {
  35. _logger.LogError(ex, ex.Message);
  36. await HandleSystemException(context, ex);
  37. }
  38. }
  39. /// <summary>
  40. /// 处理业务异常
  41. /// </summary>
  42. /// <param name="context"></param>
  43. /// <param name="be"></param>
  44. /// <returns></returns>
  45. private Task HandleBusinessException(HttpContext context, BusinessException be)
  46. {
  47. context.Response.StatusCode = (int)HttpStatusCode.BadRequest;
  48. context.Response.ContentType = "application/json;charset=utf-8";
  49. return context.Response.WriteAsync(JsonConvert.SerializeObject(new
  50. {
  51. be.Message,
  52. be.StackTrace
  53. }));
  54. }
  55. /// <summary>
  56. /// 处理系统异常
  57. /// </summary>
  58. /// <param name="context"></param>
  59. /// <param name="ex"></param>
  60. /// <returns></returns>
  61. private Task HandleSystemException(HttpContext context, Exception ex)
  62. {
  63. context.Response.StatusCode = (int)HttpStatusCode.InternalServerError;
  64. context.Response.ContentType = "application/json;charset=utf-8";
  65. return context.Response.WriteAsync(JsonConvert.SerializeObject(ex));
  66. }
  67. }
  68. }