using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Datory; using GxPress.Common.AppOptions; using GxPress.Common.Tools; using GxPress.Repository.Interface.DepartmentUser; using Microsoft.Extensions.Caching.Distributed; using Microsoft.Extensions.Options; using System.Transactions; using GxPress.Request.Department; namespace GxPress.Repository.Implement.DepartmentUser { public class DepartmentUserRepository : IDepartmentUserRepository { private readonly Repository _repository; private readonly IMapper _mapper; private readonly IDistributedCache _cache; private readonly string _connectionString; private readonly string _databaseTypeStr; public DepartmentUserRepository(IOptionsMonitor dbOptionsAccessor, IMapper mapper, IDistributedCache cache) { _databaseTypeStr = dbOptionsAccessor.CurrentValue.DatabaseType; _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString; var databaseType = StringUtils.ToEnum(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql); var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString); _repository = new Repository(database); _mapper = mapper; _cache = cache; } public IDatabase Database => _repository.Database; public string TableName => _repository.TableName; public List TableColumns => _repository.TableColumns; /// /// 根据部门ID获取用户 /// /// /// public async Task> GetUserIdsAsync(int departmentId) { return await _repository.GetAllAsync(Q.Where(nameof(Entity.DepartmentUser.DepartmentId), departmentId).Select(nameof(Entity.DepartmentUser.UserId))); } /// /// 根据用户ID获取部门下面的用户 /// /// /// public async Task> GetUserIdsByUserIdAsync(int userId) { var departmentIds = await _repository.GetAllAsync(Q.Where(nameof(Entity.DepartmentUser.UserId), userId).Select(nameof(Entity.DepartmentUser.DepartmentId))); return await _repository.GetAllAsync(Q.WhereIn(nameof(Entity.DepartmentUser.DepartmentId), departmentIds).Select(nameof(Entity.DepartmentUser.UserId))); } /// /// 根据部门ID集合获取用户 /// /// /// public async Task> GetUserIdsAsync(IEnumerable departmentIds) { return await _repository.GetAllAsync(Q.WhereIn(nameof(Entity.DepartmentUser.DepartmentId), departmentIds).Select(nameof(Entity.DepartmentUser.UserId))); } /// /// 获取部门下面的所有用户 /// /// /// public async Task> GetUserIdsAsync() { return await _repository.GetAllAsync(Q.Select(nameof(Entity.DepartmentUser.UserId)).GroupBy(nameof(Entity.DepartmentUser.UserId))); } /// /// 根据部门ID获取部门下面的所有用户 /// /// /// public async Task> GetUserIdsByDepartmentIdsAsync(IEnumerable departmentIds) { return await _repository.GetAllAsync(Q.Select(nameof(Entity.DepartmentUser.UserId)).WhereIn(nameof(Entity.DepartmentUser.DepartmentId), departmentIds).GroupBy(nameof(Entity.DepartmentUser.UserId))); } /// /// 判断是否有部门 /// /// /// public async Task IsExistsAsync(int userId) { return await _repository.ExistsAsync(Q.Where(nameof(Entity.DepartmentUser.UserId), userId)); } /// /// 根据用户D获取部门ID /// /// /// public async Task> GetDepartmentIdsAsync(int userId) { return await _repository.GetAllAsync(Q.Where(nameof(Entity.DepartmentUser.UserId), userId).Select(nameof(Entity.DepartmentUser.DepartmentId))); } /// /// 添加部门成员 /// /// /// public async Task AddDepartmentUserAsync(DepartmentUserInRequest request) { try { using (var transactionScope = new TransactionScope()) { //删除 await _repository.DeleteAsync(Q.Where(nameof(Entity.DepartmentUser.DepartmentId), request.DepartmentId)); foreach (var item in request.UserIds) { var entity = new Entity.DepartmentUser() { DepartmentId = request.DepartmentId, UserId = item }; await _repository.InsertAsync(entity); } transactionScope.Complete(); } } catch { return false; } return true; } /// /// 添加部门成员 /// /// /// public async Task AddDepartmentUserAsync(IEnumerable departmentIds, int userId) { try { using (var transactionScope = new TransactionScope()) { //删除 await _repository.DeleteAsync(Q.Where(nameof(Entity.DepartmentUser.UserId), userId)); foreach (var item in departmentIds) { var entity = new Entity.DepartmentUser() { DepartmentId = item, UserId = userId }; await _repository.InsertAsync(entity); } transactionScope.Complete(); } } catch { return false; } return true; } /// /// 根据用户id获取所在部门 /// /// /// public async Task> GetDepartmentUsersByUserIdsAsync(IEnumerable userIds) { return await _repository.GetAllAsync(Q.WhereIn(nameof(Entity.DepartmentUser.UserId), userIds)); } } }