2025-09-13 19:08:43 +08:00
|
|
|
using AutoMapper;
|
|
|
|
|
using DMS.Core.Interfaces.Repositories;
|
|
|
|
|
using DMS.Core.Models;
|
|
|
|
|
using DMS.Infrastructure.Data;
|
|
|
|
|
using DMS.Infrastructure.Entities;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace DMS.Infrastructure.Repositories
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 邮件账户仓储实现
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class EmailAccountRepository : IEmailAccountRepository
|
|
|
|
|
{
|
|
|
|
|
private readonly SqlSugarDbContext _dbContext;
|
|
|
|
|
protected readonly ILogger<EmailAccountRepository> _logger;
|
|
|
|
|
private readonly IMapper _mapper;
|
|
|
|
|
|
|
|
|
|
public EmailAccountRepository(IMapper mapper, SqlSugarDbContext dbContext, ILogger<EmailAccountRepository> logger)
|
|
|
|
|
{
|
|
|
|
|
_mapper = mapper;
|
|
|
|
|
_dbContext = dbContext;
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取 SqlSugarClient 实例
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected SqlSugarClient Db
|
|
|
|
|
{
|
|
|
|
|
get { return _dbContext.GetInstance(); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取默认邮件账户
|
|
|
|
|
/// </summary>
|
|
|
|
|
public async Task<EmailAccount> GetDefaultAccountAsync()
|
|
|
|
|
{
|
|
|
|
|
var dbEntity = await Db.Queryable<DbEmailAccount>()
|
|
|
|
|
.Where(e => e.IsDefault && e.IsActive)
|
|
|
|
|
.FirstAsync();
|
|
|
|
|
|
|
|
|
|
return dbEntity != null ? _mapper.Map<EmailAccount>(dbEntity) : null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取所有启用的邮件账户
|
|
|
|
|
/// </summary>
|
|
|
|
|
public async Task<List<EmailAccount>> GetActiveAccountsAsync()
|
|
|
|
|
{
|
|
|
|
|
var dbEntities = await Db.Queryable<DbEmailAccount>()
|
|
|
|
|
.Where(e => e.IsActive)
|
|
|
|
|
.ToListAsync();
|
|
|
|
|
|
|
|
|
|
return _mapper.Map<List<EmailAccount>>(dbEntities);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 异步根据ID获取单个实体。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public async Task<EmailAccount> GetByIdAsync(int id)
|
|
|
|
|
{
|
|
|
|
|
var dbEntity = await Db.Queryable<DbEmailAccount>()
|
|
|
|
|
.In(id)
|
|
|
|
|
.FirstAsync();
|
|
|
|
|
|
|
|
|
|
return dbEntity != null ? _mapper.Map<EmailAccount>(dbEntity) : null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 异步获取所有实体。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public async Task<List<EmailAccount>> GetAllAsync()
|
|
|
|
|
{
|
|
|
|
|
var dbEntities = await Db.Queryable<DbEmailAccount>()
|
|
|
|
|
.ToListAsync();
|
|
|
|
|
|
|
|
|
|
return _mapper.Map<List<EmailAccount>>(dbEntities);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 异步添加一个新实体。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public async Task<EmailAccount> AddAsync(EmailAccount entity)
|
|
|
|
|
{
|
|
|
|
|
var dbEntity = _mapper.Map<DbEmailAccount>(entity);
|
|
|
|
|
var result = await Db.Insertable(dbEntity)
|
|
|
|
|
.ExecuteReturnEntityAsync();
|
|
|
|
|
|
|
|
|
|
return _mapper.Map<EmailAccount>(result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 异步更新一个已存在的实体。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public async Task<int> UpdateAsync(EmailAccount entity)
|
|
|
|
|
{
|
|
|
|
|
var dbEntity = _mapper.Map<DbEmailAccount>(entity);
|
|
|
|
|
return await Db.Updateable(dbEntity)
|
|
|
|
|
.ExecuteCommandAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 异步根据ID删除一个实体。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public async Task<int> DeleteAsync(EmailAccount entity)
|
|
|
|
|
{
|
|
|
|
|
var dbEntity = _mapper.Map<DbEmailAccount>(entity);
|
|
|
|
|
return await Db.Deleteable(dbEntity)
|
|
|
|
|
.ExecuteCommandAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-10-21 13:01:27 +08:00
|
|
|
|
2025-09-13 19:08:43 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 异步批量添加实体。
|
|
|
|
|
/// </summary>
|
2025-09-15 13:12:14 +08:00
|
|
|
public async Task<List<EmailAccount>> AddBatchAsync(List<EmailAccount> entities)
|
2025-09-13 19:08:43 +08:00
|
|
|
{
|
|
|
|
|
var dbEntities = _mapper.Map<List<DbEmailAccount>>(entities);
|
2025-09-15 13:12:14 +08:00
|
|
|
var insertedEntities = new List<DbEmailAccount>();
|
|
|
|
|
|
|
|
|
|
// 使用循环逐个插入实体,这样可以确保返回每个插入的实体
|
|
|
|
|
foreach (var entity in dbEntities)
|
|
|
|
|
{
|
|
|
|
|
var insertedEntity = await Db.Insertable(entity).ExecuteReturnEntityAsync();
|
|
|
|
|
insertedEntities.Add(insertedEntity);
|
|
|
|
|
}
|
2025-09-13 19:08:43 +08:00
|
|
|
|
2025-09-15 13:12:14 +08:00
|
|
|
return _mapper.Map<List<EmailAccount>>(insertedEntities);
|
2025-09-13 19:08:43 +08:00
|
|
|
}
|
2025-10-21 12:27:45 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 异步根据实体列表批量删除实体。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public async Task<int> DeleteAsync(List<EmailAccount> entities)
|
|
|
|
|
{
|
|
|
|
|
var dbEntities = _mapper.Map<List<DbEmailAccount>>(entities);
|
|
|
|
|
return await Db.Deleteable<DbEmailAccount>(dbEntities)
|
|
|
|
|
.ExecuteCommandAsync();
|
|
|
|
|
}
|
2025-09-13 19:08:43 +08:00
|
|
|
}
|
|
|
|
|
}
|