83 lines
2.5 KiB
C#
83 lines
2.5 KiB
C#
using Mapster;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Volo.Abp.Application.Services;
|
|
using Volo.Abp.Domain.Repositories;
|
|
using Volo.Abp.Users;
|
|
using Yi.Framework.AiHub.Application.Contracts.Dtos;
|
|
using Yi.Framework.AiHub.Domain.Entities;
|
|
using Yi.Framework.SqlSugarCore.Abstractions;
|
|
|
|
namespace Yi.Framework.AiHub.Application.Services;
|
|
|
|
public class SessionService : CrudAppService<SessionAggregateRoot, SessionDto, Guid, SessionGetListInput>
|
|
{
|
|
private readonly ISqlSugarRepository<SessionAggregateRoot, Guid> _repository;
|
|
public readonly ISqlSugarRepository<MessageAggregateRoot, Guid> _messageRepository;
|
|
public SessionService(ISqlSugarRepository<SessionAggregateRoot, Guid> repository, ISqlSugarRepository<MessageAggregateRoot, Guid> messageRepository) : base(repository)
|
|
{
|
|
_repository = repository;
|
|
_messageRepository = messageRepository;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 创建会话
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
[Authorize]
|
|
public override async Task<SessionDto> CreateAsync(SessionDto input)
|
|
{
|
|
var entity = await MapToEntityAsync(input);
|
|
entity.UserId = CurrentUser.GetId();
|
|
await _repository.InsertAsync(entity);
|
|
return entity.Adapt<SessionDto>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 详情会话
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
[Authorize]
|
|
public override Task<SessionDto> GetAsync(Guid id)
|
|
{
|
|
return base.GetAsync(id);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 编辑会话
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
[Authorize]
|
|
public override Task<SessionDto> UpdateAsync(Guid id, SessionDto input)
|
|
{
|
|
return base.UpdateAsync(id, input);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 删除会话
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
[Authorize]
|
|
public override async Task DeleteAsync(Guid id)
|
|
{
|
|
await base.DeleteAsync(id);
|
|
//对应的消息一起删除
|
|
await _messageRepository.DeleteAsync(x => x.SessionId == id);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 查询会话
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
[Authorize]
|
|
public override Task<PagedResultDto<SessionDto>> GetListAsync(SessionGetListInput input)
|
|
{
|
|
return base.GetListAsync(input);
|
|
}
|
|
} |