using Furion; using Furion.DataValidation; using Furion.FriendlyException; using Furion.UnifyResult; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; using System; using System.Threading.Tasks; namespace YBEE.EQM.Core { /// /// 规范化RESTful风格返回值 /// [UnifyModel(typeof(XnRestfulResult<>))] public class XnRestfulResultProvider : IUnifyResultProvider { /// /// 异常返回值 /// /// /// /// public IActionResult OnException(ExceptionContext context, ExceptionMetadata metadata) { AntShowType showType = AntShowType.ERROR_MESSAGE; int statusCode = metadata.Errors.ToString() == "unauthorized" ? 401 : metadata.StatusCode; //int errorCode = (int)(metadata.ErrorCode ?? 400); int errorCode = 500; if (metadata.Errors.ToString() == "unauthorized") { errorCode = 401; } if (metadata.OriginErrorCode is ErrorCode && metadata.ErrorCode.ToString() != "") { string ec = metadata.ErrorCode.ToString().ToUpper(); string st = ec[..1]; switch (st) { case "S": showType = AntShowType.SILENT; break; case "W": showType = AntShowType.WARN_MESSAGE; break; case "E": showType = AntShowType.ERROR_MESSAGE; break; case "N": showType = AntShowType.NOTIFICATION; break; case "R": showType = AntShowType.REDIRECT; break; } if (int.TryParse(ec.AsSpan(1), out int ecode)) { errorCode = ecode; } } return new JsonResult(RESTfulResult(statusCode, errors: metadata.Errors, errorCode: errorCode, showType: showType)); } /// /// 成功返回值 /// /// /// /// public IActionResult OnSucceeded(ActionExecutedContext context, object data) { return new JsonResult(RESTfulResult(StatusCodes.Status200OK, true, data)); } /// /// 验证失败返回值 /// /// /// /// public IActionResult OnValidateFailed(ActionExecutingContext context, ValidationMetadata metadata) { return new JsonResult(RESTfulResult(metadata.StatusCode ?? StatusCodes.Status400BadRequest, errors: metadata.ValidationResult, errorCode: 500, showType: AntShowType.NOTIFICATION)); } /// /// 处理输出状态码 /// /// /// /// /// public async Task OnResponseStatusCodes(HttpContext context, int statusCode, UnifyResultSettingsOptions unifyResultSettings) { // 设置响应状态码 UnifyContext.SetResponseStatusCodes(context, statusCode, unifyResultSettings); switch (statusCode) { // 处理 401 状态码 case StatusCodes.Status401Unauthorized: await context.Response.WriteAsJsonAsync(RESTfulResult(statusCode, errors: "401 未授权或授权已过期"), App.GetOptions()?.JsonSerializerOptions); break; // 处理 403 状态码 case StatusCodes.Status403Forbidden: await context.Response.WriteAsJsonAsync(RESTfulResult(statusCode, errors: "403 禁止访问"), App.GetOptions()?.JsonSerializerOptions); break; default: break; } } /// /// 返回 RESTful 风格结果集 /// /// /// /// /// /// /// /// private static XnRestfulResult RESTfulResult(int statusCode, bool succeeded = default, object data = default, object errors = default, int errorCode = 0, AntShowType showType = AntShowType.ERROR_MESSAGE) { return new XnRestfulResult { Success = succeeded, Code = statusCode, ErrorCode = errorCode, ErrorMessage = errors, ShowType = showType, Data = data, Extras = UnifyContext.Take(), Timestamp = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds() }; } } /// /// RESTful风格---Antd返回格式 /// /// public class XnRestfulResult { /// /// 执行成功 /// public bool Success { get; set; } /// /// 状态码 /// public int? Code { get; set; } /// /// 错误码 /// public int? ErrorCode { get; set; } = 0; /// /// 错误信息 /// public object ErrorMessage { get; set; } /// /// 前端错误显示级别 /// public AntShowType? ShowType { get; set; } /// /// 数据 /// public T Data { get; set; } /// /// 附加数据 /// public object Extras { get; set; } /// /// 时间戳 /// public long Timestamp { get; set; } } }