1. 新增并完善ResultCode枚举,补充标准HTTP状态码对应的业务状态码 2. 重构BusinessException,新增基于ResultCode的构造函数和ThrowIf扩展方法 3. 替换所有硬编码的HTTP状态码为统一的ResultCode枚举 4. 优化全局异常中间件,根据业务状态码映射对应HTTP状态码并规范化JSON响应 5. 修复OssImageHelper和AutoDotCodeConsumer中的OSS文件处理逻辑 6. 新增用户答题快照实体类 7. 清理废弃的宠物模块迁移脚本
147 lines
4.8 KiB
C#
147 lines
4.8 KiB
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using MiniExcelLibs;
|
|
using QYZH.InteractiveMagazine.Infrastructure.Context;
|
|
using QYZH.InteractiveMagazine.Models.Common;
|
|
using QYZH.InteractiveMagazine.Models.Dto;
|
|
using QYZH.InteractiveMagazine.Models.Enum;
|
|
using System.Security.Claims;
|
|
using System.Web;
|
|
|
|
namespace QYZH.InteractiveMagazine.WebApi.Controllers;
|
|
|
|
/// <summary>
|
|
/// 基础控制器
|
|
/// </summary>
|
|
[Authorize]
|
|
[ApiController]
|
|
[Route("api/[controller]")]
|
|
[ApiExplorerSettings(GroupName = nameof(ApiVersionEnum.Platform))]
|
|
public abstract class BaseController : ControllerBase
|
|
{
|
|
/// <summary>
|
|
/// 获取当前用户ID
|
|
/// </summary>
|
|
/// <returns>用户ID</returns>
|
|
protected long? GetCurrentUserId()
|
|
{
|
|
var userIdClaim = User.Claims.FirstOrDefault(c => c.Type == ClaimTypes.NameIdentifier);
|
|
if (userIdClaim != null && long.TryParse(userIdClaim.Value, out var userId))
|
|
{
|
|
return userId;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取当前用户名
|
|
/// </summary>
|
|
/// <returns>用户名</returns>
|
|
protected string? GetCurrentUserName()
|
|
{
|
|
return User.Claims.FirstOrDefault(c => c.Type == ClaimTypes.Name)?.Value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 成功响应
|
|
/// </summary>
|
|
/// <typeparam name="T">数据类型</typeparam>
|
|
/// <param name="data">数据</param>
|
|
/// <param name="message">提示信息</param>
|
|
/// <returns>统一响应对象</returns>
|
|
protected BaseResponse<T> Success<T>(T data, string message = "操作成功")
|
|
{
|
|
return BaseResponse<T>.Success(data, message);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 失败响应
|
|
/// </summary>
|
|
/// <param name="message">提示信息</param>
|
|
/// <param name="code">状态码</param>
|
|
/// <returns>统一响应对象</returns>
|
|
protected BaseResponse<object> Fail(string message, int code = 500)
|
|
{
|
|
var resultCode = Enum.IsDefined(typeof(ResultCode), code)
|
|
? (ResultCode)code
|
|
: ResultCode.GLOBAL_ERROR;
|
|
return BaseResponse<object>.Fail(resultCode, message);
|
|
}
|
|
|
|
protected IActionResult ApiResult(bool success, string msg)
|
|
{
|
|
return success ? Success() : Fail(msg);
|
|
}
|
|
|
|
protected IActionResult Success()
|
|
{
|
|
return Ok(BaseResponse.Success());
|
|
}
|
|
|
|
protected IActionResult Fail(string msg)
|
|
{
|
|
return Ok(BaseResponse.Fail(msg));
|
|
}
|
|
|
|
/// <summary>
|
|
/// 导出Excel
|
|
/// </summary>
|
|
/// <param name="path">完整文件路径</param>
|
|
/// <param name="fileName">带扩展文件名</param>
|
|
/// <returns></returns>
|
|
protected IActionResult ExportExcel(string path, string fileName)
|
|
{
|
|
//var webHostEnvironment = App.WebHostEnvironment;
|
|
if (!Path.Exists(path))
|
|
{
|
|
throw new BusinessException(fileName + "文件不存在", ResultCode.NOT_FOUND);
|
|
}
|
|
var stream = System.IO.File.OpenRead(path); //创建文件流
|
|
|
|
Response.Headers.Append("Access-Control-Expose-Headers", "Content-Disposition");
|
|
return File(stream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", HttpUtility.UrlEncode(fileName));
|
|
}
|
|
|
|
protected (string, string) DownloadImportTemplate<T>(List<T> list, string fileName)
|
|
{
|
|
IWebHostEnvironment webHostEnvironment = ServiceContext.GetService<IWebHostEnvironment>();
|
|
var webRoot = webHostEnvironment.WebRootPath
|
|
?? Path.Combine(webHostEnvironment.ContentRootPath, "wwwroot");
|
|
if (!Directory.Exists(webRoot)) Directory.CreateDirectory(webRoot);
|
|
|
|
string sFileName = $"{fileName}.xlsx";
|
|
string fullPath = Path.Combine(webRoot, "ImportTemplate", sFileName);
|
|
|
|
//不存在模板创建模板
|
|
if (!Directory.Exists(fullPath))
|
|
{
|
|
var directoryPath = Path.GetDirectoryName(fullPath);
|
|
if (directoryPath != null)
|
|
{
|
|
Directory.CreateDirectory(directoryPath);
|
|
}
|
|
}
|
|
if (!Path.Exists(fullPath))
|
|
{
|
|
MiniExcel.SaveAs(fullPath, list, overwriteFile: true);
|
|
}
|
|
return (sFileName, fullPath);
|
|
}
|
|
|
|
protected (string, string) ExportExcelMini<T>(List<T> list, string sheetName, string fileName)
|
|
{
|
|
IWebHostEnvironment webHostEnvironment = ServiceContext.GetService<IWebHostEnvironment>();
|
|
var webRoot = webHostEnvironment.WebRootPath
|
|
?? Path.Combine(webHostEnvironment.ContentRootPath, "wwwroot");
|
|
if (!Directory.Exists(webRoot)) Directory.CreateDirectory(webRoot);
|
|
|
|
string sFileName = $"{fileName}_{DateTime.Now:MMdd_HHmmss}.xlsx";
|
|
string fullPath = Path.Combine(webRoot, "export", sFileName);
|
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(fullPath));
|
|
|
|
MiniExcel.SaveAs(fullPath, list, sheetName: sheetName);
|
|
return (sFileName, fullPath);
|
|
}
|
|
}
|