Files
QYZH.InteractiveMagazine/QYZH.InteractiveMagazine.Service/AiBasePromptService.cs
glz dbf77c7d50 refactor: 调整期刊实体字段与用户期刊输出映射
1. 移除Journal实体冗余的Title字段,统一使用Name字段
2. 更新UserDto和UsersService中的期刊标题映射逻辑
3. 新增JournalPageTask的四项能力评分字段
4. 新增AI提示词管理的完整服务、控制器与相关DTO
5. 新增用户作答记录实体JournalPageTaskUserAnswer
2026-06-16 08:37:15 +08:00

255 lines
8.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Microsoft.Extensions.Logging;
using QYZH.InteractiveMagazine.IService;
using QYZH.InteractiveMagazine.Models.Common;
using QYZH.InteractiveMagazine.Models.Dto;
using QYZH.InteractiveMagazine.Models.Entity;
using QYZH.InteractiveMagazine.Repository;
using SqlSugar;
namespace QYZH.InteractiveMagazine.Service;
/// <summary>
/// AIPrompt配置服务实现
/// </summary>
public class AiBasePromptService(
BaseRepository<AiBasePrompt> promptRepository,
ILogger<AiBasePromptService> logger) : BaseRepository<AiBasePrompt>, IAiBasePromptService
{
/// <summary>
/// 创建Prompt配置
/// </summary>
public async Task<AiBasePromptOutput> CreateAsync(AiBasePromptInput input)
{
logger.LogInformation("正在创建Prompt配置PromptKey: {PromptKey}", input.PromptKey);
if (string.IsNullOrWhiteSpace(input.PromptKey))
{
throw new BusinessException("配置标识不能为空", 400);
}
if (string.IsNullOrWhiteSpace(input.PromptName))
{
throw new BusinessException("配置名称不能为空", 400);
}
if (string.IsNullOrWhiteSpace(input.PromptTemplate))
{
throw new BusinessException("Prompt模板内容不能为空", 400);
}
// 检查PromptKey是否已存在
var exists = await promptRepository.IsAnyAsync(p => p.PromptKey == input.PromptKey.Trim());
if (exists)
{
throw new BusinessException($"配置标识 '{input.PromptKey.Trim()}' 已存在", 400);
}
var entity = new AiBasePrompt
{
PromptKey = input.PromptKey.Trim(),
PromptName = input.PromptName.Trim(),
PromptTemplate = input.PromptTemplate,
Description = input.Description,
Priority = input.Priority,
IsDefault = input.IsDefault,
CreatedBy = "System",
UpdatedBy = "System",
CreatedAt = DateTime.Now,
UpdatedAt = DateTime.Now,
IsDeleted = false
};
var result = await promptRepository.InsertAsync(entity);
if (!result)
{
logger.LogError("Prompt配置创建失败PromptKey: {PromptKey}", input.PromptKey);
throw new BusinessException("创建Prompt配置失败", 500);
}
logger.LogInformation("Prompt配置创建成功PromptKey: {PromptKey}, ID: {Id}", input.PromptKey, entity.Id);
return new AiBasePromptOutput
{
Id = entity.Id,
PromptKey = entity.PromptKey,
PromptName = entity.PromptName,
PromptTemplate = entity.PromptTemplate,
Description = entity.Description,
Priority = entity.Priority,
IsDefault = entity.IsDefault,
CreatedBy = entity.CreatedBy,
CreatedAt = entity.CreatedAt,
UpdatedBy = entity.UpdatedBy,
UpdatedAt = entity.UpdatedAt
};
}
/// <summary>
/// 更新Prompt配置
/// </summary>
public async Task<AiBasePromptOutput> UpdateAsync(long id, AiBasePromptInput input)
{
logger.LogInformation("正在更新Prompt配置ID: {Id}", id);
var entity = await promptRepository.GetByIdAsync(id);
if (entity == null)
{
logger.LogWarning("未找到要更新的Prompt配置ID: {Id}", id);
throw new BusinessException("Prompt配置不存在", 404);
}
if (string.IsNullOrWhiteSpace(input.PromptKey))
{
throw new BusinessException("配置标识不能为空", 400);
}
if (string.IsNullOrWhiteSpace(input.PromptName))
{
throw new BusinessException("配置名称不能为空", 400);
}
if (string.IsNullOrWhiteSpace(input.PromptTemplate))
{
throw new BusinessException("Prompt模板内容不能为空", 400);
}
// 检查PromptKey是否被其他记录占用
var exists = await promptRepository.IsAnyAsync(p => p.PromptKey == input.PromptKey.Trim() && p.Id != id);
if (exists)
{
throw new BusinessException($"配置标识 '{input.PromptKey.Trim()}' 已被其他配置使用", 400);
}
entity.PromptKey = input.PromptKey.Trim();
entity.PromptName = input.PromptName.Trim();
entity.PromptTemplate = input.PromptTemplate;
entity.Description = input.Description;
entity.Priority = input.Priority;
entity.IsDefault = input.IsDefault;
entity.UpdatedBy = "System";
entity.UpdatedAt = DateTime.Now;
var result = await promptRepository.UpdateAsync(entity);
if (!result)
{
logger.LogError("Prompt配置更新失败ID: {Id}", id);
throw new BusinessException("更新Prompt配置失败", 500);
}
logger.LogInformation("Prompt配置更新成功ID: {Id}", id);
return new AiBasePromptOutput
{
Id = entity.Id,
PromptKey = entity.PromptKey,
PromptName = entity.PromptName,
PromptTemplate = entity.PromptTemplate,
Description = entity.Description,
Priority = entity.Priority,
IsDefault = entity.IsDefault,
CreatedBy = entity.CreatedBy,
CreatedAt = entity.CreatedAt,
UpdatedBy = entity.UpdatedBy,
UpdatedAt = entity.UpdatedAt
};
}
/// <summary>
/// 删除Prompt配置软删除
/// </summary>
public async Task DeleteAsync(long id)
{
logger.LogInformation("正在删除Prompt配置ID: {Id}", id);
var entity = await promptRepository.GetByIdAsync(id);
if (entity == null)
{
logger.LogWarning("未找到要删除的Prompt配置ID: {Id}", id);
throw new BusinessException("Prompt配置不存在", 404);
}
var result = await promptRepository.DeleteByIdAsync(id);
if (!result)
{
logger.LogError("Prompt配置删除失败ID: {Id}", id);
throw new BusinessException("删除Prompt配置失败", 500);
}
logger.LogInformation("Prompt配置删除成功ID: {Id}", id);
}
/// <summary>
/// 根据ID获取Prompt配置
/// </summary>
public async Task<AiBasePromptOutput> GetByIdAsync(long id)
{
logger.LogInformation("正在获取Prompt配置信息ID: {Id}", id);
var entity = await promptRepository.GetByIdAsync(id);
if (entity == null)
{
logger.LogWarning("未找到Prompt配置ID: {Id}", id);
throw new BusinessException("Prompt配置不存在", 404);
}
return new AiBasePromptOutput
{
Id = entity.Id,
PromptKey = entity.PromptKey,
PromptName = entity.PromptName,
PromptTemplate = entity.PromptTemplate,
Description = entity.Description,
Priority = entity.Priority,
IsDefault = entity.IsDefault,
CreatedBy = entity.CreatedBy,
CreatedAt = entity.CreatedAt,
UpdatedBy = entity.UpdatedBy,
UpdatedAt = entity.UpdatedAt
};
}
/// <summary>
/// 分页查询Prompt配置列表
/// </summary>
public async Task<PageListModel<AiBasePromptOutput>> GetListAsync(AiBasePromptQueryInput input)
{
logger.LogInformation("正在查询Prompt配置列表页码: {PageIndex}, 每页条数: {PageSize}", input.PageIndex, input.PageSize);
if (input.PageIndex <= 0)
{
throw new BusinessException("页码必须大于0", 400);
}
if (input.PageSize <= 0 || input.PageSize > 100)
{
throw new BusinessException("每页条数必须在1-100之间", 400);
}
RefAsync<int> totalNumber = 0;
var pageResult = await promptRepository.Queryable()
.WhereIF(!string.IsNullOrWhiteSpace(input.PromptKey), p => p.PromptKey == input.PromptKey)
.WhereIF(!string.IsNullOrWhiteSpace(input.PromptName), p => p.PromptName.Contains(input.PromptName))
.OrderBy(p => p.Priority)
.OrderByDescending(p => p.CreatedAt)
.ToPageListAsync(input.PageIndex, input.PageSize, totalNumber);
var result = pageResult.Select(p => new AiBasePromptOutput
{
Id = p.Id,
PromptKey = p.PromptKey,
PromptName = p.PromptName,
PromptTemplate = p.PromptTemplate,
Description = p.Description,
Priority = p.Priority,
IsDefault = p.IsDefault,
CreatedBy = p.CreatedBy,
CreatedAt = p.CreatedAt,
UpdatedBy = p.UpdatedBy,
UpdatedAt = p.UpdatedAt
}).ToList();
return new PageListModel<AiBasePromptOutput>(result, input.PageIndex, input.PageSize, totalNumber);
}
}