1. 新增WeChatApi独立项目,将原WebApi中的微信相关控制器迁移至新项目 2. 新增后台权限管理相关实体、服务接口和基础控制器 3. 完善管理员用户服务,增加角色关联查询和赋值逻辑 4. 修复WebApi Swagger文档过滤微信API版本的问题 5. 更新解决方案文件,添加新的微信API项目引用 6. 新增微信API基础配置文件和项目属性配置
115 lines
3.8 KiB
C#
115 lines
3.8 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using QYZH.InteractiveMagazine.IService;
|
|
using QYZH.InteractiveMagazine.Models.Common;
|
|
using QYZH.InteractiveMagazine.Models.Dto;
|
|
using QYZH.InteractiveMagazine.Models.Dto.Pet;
|
|
|
|
namespace QYZH.InteractiveMagazine.WeChatApi.Controllers;
|
|
|
|
/// <summary>
|
|
/// 小程序宠物管理控制器
|
|
/// </summary>
|
|
public class PetController : WeChatBaseController
|
|
{
|
|
private readonly IPetService _petService;
|
|
private readonly ILogger<PetController> _logger;
|
|
|
|
public PetController(IPetService petService, ILogger<PetController> logger)
|
|
{
|
|
_petService = petService;
|
|
_logger = logger;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取当前用户的宠物信息
|
|
/// </summary>
|
|
[HttpGet("mine")]
|
|
public async Task<BaseResponse<PetOutput>> GetMyPetAsync()
|
|
{
|
|
try
|
|
{
|
|
var userId = GetCurrentUserId();
|
|
if (userId == 0)
|
|
{
|
|
return BaseResponse<PetOutput>.Fail(ResultCode.DENY, "未获取到用户信息");
|
|
}
|
|
|
|
var pet = await _petService.GetPetByUserIdAsync(userId);
|
|
if (pet == null)
|
|
{
|
|
return BaseResponse<PetOutput>.Fail("未找到宠物信息");
|
|
}
|
|
|
|
return Success(pet);
|
|
}
|
|
catch (BusinessException ex)
|
|
{
|
|
_logger.LogWarning(ex, "获取宠物信息业务异常: {Message}", ex.Message);
|
|
return BaseResponse<PetOutput>.Fail(ex.Message);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "获取宠物信息系统异常");
|
|
return BaseResponse<PetOutput>.Fail("获取宠物信息失败,请稍后重试");
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 喂养宠物(增加成长值,触发进化检查)
|
|
/// </summary>
|
|
[HttpPost("feed")]
|
|
public async Task<BaseResponse<FeedPetOutput>> FeedPetAsync([FromBody] FeedPetInput input)
|
|
{
|
|
try
|
|
{
|
|
var userId = GetCurrentUserId();
|
|
if (userId == 0)
|
|
{
|
|
return BaseResponse<FeedPetOutput>.Fail(ResultCode.DENY, "未获取到用户信息");
|
|
}
|
|
|
|
var result = await _petService.FeedPetAsync(userId, input);
|
|
return Success(result, "喂养成功");
|
|
}
|
|
catch (BusinessException ex)
|
|
{
|
|
_logger.LogWarning(ex, "喂养宠物业务异常: {Message}", ex.Message);
|
|
return BaseResponse<FeedPetOutput>.Fail(ex.Message);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "喂养宠物系统异常,参数:{@Input}", input);
|
|
return BaseResponse<FeedPetOutput>.Fail("喂养宠物失败,请稍后重试");
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取宠物喂养记录列表
|
|
/// </summary>
|
|
[HttpGet("records/{petId}")]
|
|
public async Task<BaseResponse<PageListModel<FeedingRecordOutput>>> GetFeedingRecordsAsync(long petId, [FromQuery] PageQueryModel pageQuery)
|
|
{
|
|
try
|
|
{
|
|
var userId = GetCurrentUserId();
|
|
if (userId == 0)
|
|
{
|
|
return BaseResponse<PageListModel<FeedingRecordOutput>>.Fail(ResultCode.DENY, "未获取到用户信息");
|
|
}
|
|
|
|
var result = await _petService.GetFeedingRecordsAsync(userId, petId, pageQuery);
|
|
return Success(result);
|
|
}
|
|
catch (BusinessException ex)
|
|
{
|
|
_logger.LogWarning(ex, "查询喂养记录业务异常: {Message}", ex.Message);
|
|
return BaseResponse<PageListModel<FeedingRecordOutput>>.Fail(ex.Message);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "查询喂养记录系统异常");
|
|
return BaseResponse<PageListModel<FeedingRecordOutput>>.Fail("查询喂养记录失败,请稍后重试");
|
|
}
|
|
}
|
|
}
|