AddresseeRepository.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using AutoMapper;
  4. using GxPress.Common.AppOptions;
  5. using GxPress.Common.Tools;
  6. using GxPress.Entity;
  7. using Microsoft.Extensions.Options;
  8. using Datory;
  9. using GxPress.Request.Notice;
  10. using SqlKata;
  11. using GxPress.Result.Notice;
  12. using Dapper;
  13. using System;
  14. using GxPress.Repository.Interface;
  15. using GxPress.Result.App.Missive;
  16. using GxPress.Request.App.Missive;
  17. namespace GxPress.Repository.Implement
  18. {
  19. public class NoticeAddresseeRepository : IAddresseeRepository
  20. {
  21. private readonly Repository<Addressee> _repository;
  22. private readonly IMapper _mapper;
  23. private readonly string _connectionString;
  24. private readonly string _databaseTypeStr;
  25. public NoticeAddresseeRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
  26. {
  27. _databaseTypeStr = dbOptionsAccessor.CurrentValue.DatabaseType;
  28. _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
  29. var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  30. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  31. _repository = new Repository<Addressee>(database);
  32. _mapper = mapper;
  33. }
  34. public IDatabase Database => _repository.Database;
  35. public string TableName => _repository.TableName;
  36. public List<TableColumn> TableColumns => _repository.TableColumns;
  37. /// <summary>
  38. /// 根据通知ID获取收件人
  39. /// </summary>
  40. /// <param name="noticeId"></param>
  41. /// <returns></returns>
  42. public async Task<IEnumerable<Addressee>> GetNoticeAddresseeByNoticeIdAsync(int noticeId)
  43. {
  44. return await _repository.GetAllAsync(Q.Where(nameof(Addressee.SourceId), noticeId));
  45. }
  46. public async Task<bool> DeleteAsync(int noticeId, int sourceType, int isAdmin)
  47. {
  48. var query = new SqlKata.Query();
  49. if (isAdmin == 0)
  50. query.Where(nameof(Addressee.IsAdmin), false);
  51. if (isAdmin == 1)
  52. query.Where(nameof(Addressee.IsAdmin), true);
  53. query.Where(nameof(Addressee.SourceId), noticeId);
  54. query.Where(nameof(Addressee.SourceType), sourceType);
  55. return await _repository.DeleteAsync(query) > 0;
  56. }
  57. public async Task<int> InsertAsync(Addressee noticeAddressee)
  58. {
  59. return await _repository.InsertAsync(noticeAddressee);
  60. }
  61. /// <summary>
  62. /// 插入收件人
  63. /// </summary>
  64. /// <param name="noticeAddressees"></param>
  65. /// <returns></returns>
  66. public async Task<bool> InsertAsync(List<Addressee> noticeAddressees)
  67. {
  68. if (noticeAddressees.Count == 0)
  69. return false;
  70. var sql = "INSERT INTO `tede_addressee`(`Guid`,`CreatedDate`,`LastModifiedDate`,`SourceId`,`SourceType`,`UserId`,`UserName`,`IsRead`,`NoticeAddresseeType`,`IsTop`,`IsAdmin`,`IsDelete`)VALUES";
  71. foreach (var item in noticeAddressees)
  72. {
  73. var guId = Guid.NewGuid().ToString();
  74. var createdDate = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  75. var isRead = item.IsRead == true ? 1 : 0;
  76. var isTop = item.IsTop == true ? 1 : 0;
  77. var isAdmin = item.IsAdmin == true ? 1 : 0;
  78. var isDelete = item.IsDelete == true ? 1 : 0;
  79. sql += $"('{guId}','{createdDate}','{createdDate}',{item.SourceId},{item.SourceType},{item.UserId},'',{isRead},{item.NoticeAddresseeType.GetHashCode()},{isTop},{isAdmin},{isDelete}),";
  80. }
  81. sql = sql.Remove(sql.Length - 1, 1);
  82. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  83. var database = new Database(databaseType, _connectionString);
  84. var connection = database.GetConnection();
  85. var items = await connection.ExecuteAsync(sql);
  86. return items > 0;
  87. }
  88. /// <summary>
  89. /// 查询通知的未读已读
  90. /// </summary>
  91. /// <param name="request"></param>
  92. /// <returns></returns>
  93. public async Task<IEnumerable<NoticeReadListResult>> GetNoticeAddresseeByUserIdIdAsync(NoticeReadListRequest request)
  94. {
  95. var sqlValue = "";
  96. if (request.ReadType == 1)
  97. sqlValue += " and a.IsRead=1";
  98. else if (request.ReadType == 2)
  99. sqlValue += " and a.IsRead=0";
  100. if (request.SourceType > 0)
  101. sqlValue += $" and a.SourceType={request.SourceType}";
  102. if (!string.IsNullOrWhiteSpace(request.Key))
  103. sqlValue += $" and b.Name like '%{request.Key}%'";
  104. var sql = $"SELECT a.*,b.Name,b.AvatarUrl,c.Name FROM tede_addressee a inner join tede_user b on a.UserId=b.Id inner join tede_department c on c.Id=b.DepartmentId where a.SourceId={request.NoticeId} {sqlValue} order by a.LastModifiedDate desc";
  105. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  106. var database = new Database(databaseType, _connectionString);
  107. var connection = database.GetConnection();
  108. var items = await connection
  109. .QueryAsync<NoticeReadListResult, User, Department, NoticeReadListResult>(sql,
  110. (noticeReadListResult, user, department) =>
  111. {
  112. noticeReadListResult.Name = user != null ? user.Name : "";
  113. noticeReadListResult.AvatarUrl = user != null ? StringUtils.AddDomainMin(user.AvatarUrl) : "";
  114. noticeReadListResult.DepartmentName = department.Name;
  115. noticeReadListResult.LastModifiedDate = Convert.ToDateTime(noticeReadListResult.LastModifiedDate).ToString("yyyy-MM-dd HH:mm:ss");
  116. return noticeReadListResult;
  117. },
  118. splitOn: "Name,Name");
  119. return items;
  120. }
  121. /// <summary>
  122. /// 获取收件人
  123. /// </summary>
  124. /// <param name="noticeId"></param>
  125. /// <returns></returns>
  126. public async Task<IEnumerable<User>> GetUserByNoticeIdAsync(int noticeId)
  127. {
  128. var sql = $"SELECT b.* FROM tede_addressee a inner join tede_user b on a.UserId=b.Id where a.SourceId={noticeId} and a.IsAdmin=0;";
  129. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  130. var database = new Database(databaseType, _connectionString);
  131. var connection = database.GetConnection();
  132. var items = await connection
  133. .QueryAsync<User>(sql);
  134. return items;
  135. }
  136. public async Task<int> CountAsync(Query query)
  137. {
  138. return await _repository.CountAsync(query);
  139. }
  140. public async Task<IEnumerable<Addressee>> GetAllAsync(Query query)
  141. {
  142. return await _repository.GetAllAsync(query);
  143. }
  144. public async Task<bool> UpdateAsync(Query query)
  145. {
  146. return await _repository.UpdateAsync(query) > 0;
  147. }
  148. public async Task<bool> ExistsAsync(Query query)
  149. {
  150. return await _repository.ExistsAsync(query);
  151. }
  152. public Task<IEnumerable<MissiveReadListResult>> GetMissiveReadListAsync(MissiveReadListRequest request)
  153. {
  154. throw new NotImplementedException();
  155. }
  156. }
  157. }