AddresseeRepository.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. return await _repository.DeleteAsync(Q.Where(nameof(Addressee.SourceId), noticeId).Where(nameof(Addressee.SourceType), sourceType)) > 0;
  54. }
  55. public async Task<int> InsertAsync(Addressee noticeAddressee)
  56. {
  57. return await _repository.InsertAsync(noticeAddressee);
  58. }
  59. /// <summary>
  60. /// 插入收件人
  61. /// </summary>
  62. /// <param name="noticeAddressees"></param>
  63. /// <returns></returns>
  64. public async Task<bool> InsertAsync(List<Addressee> noticeAddressees)
  65. {
  66. if (noticeAddressees.Count == 0)
  67. return false;
  68. var sql = "INSERT INTO `tede_addressee`(`Guid`,`CreatedDate`,`LastModifiedDate`,`SourceId`,`SourceType`,`UserId`,`UserName`,`IsRead`,`NoticeAddresseeType`,`IsTop`,`IsAdmin`,`IsDelete`)VALUES";
  69. foreach (var item in noticeAddressees)
  70. {
  71. var guId = Guid.NewGuid().ToString();
  72. var createdDate = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  73. var isRead = item.IsRead == true ? 1 : 0;
  74. var isTop = item.IsTop == true ? 1 : 0;
  75. var isAdmin = item.IsAdmin == true ? 1 : 0;
  76. var isDelete = item.IsDelete == true ? 1 : 0;
  77. sql += $"('{guId}','{createdDate}','{createdDate}',{item.SourceId},{item.SourceType},{item.UserId},'',{isRead},{item.NoticeAddresseeType.GetHashCode()},{isTop},{isAdmin},{isDelete}),";
  78. }
  79. sql = sql.Remove(sql.Length - 1, 1);
  80. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  81. var database = new Database(databaseType, _connectionString);
  82. var connection = database.GetConnection();
  83. var items = await connection.ExecuteAsync(sql);
  84. return items > 0;
  85. }
  86. /// <summary>
  87. /// 查询通知的未读已读
  88. /// </summary>
  89. /// <param name="request"></param>
  90. /// <returns></returns>
  91. public async Task<IEnumerable<NoticeReadListResult>> GetNoticeAddresseeByUserIdIdAsync(NoticeReadListRequest request)
  92. {
  93. var sqlValue = "";
  94. if (request.ReadType == 1)
  95. sqlValue += " and a.IsRead=1";
  96. else if (request.ReadType == 2)
  97. sqlValue += " and a.IsRead=0";
  98. if (!string.IsNullOrWhiteSpace(request.Key))
  99. sqlValue += $" and b.Name like '%{request.Key}%'";
  100. 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";
  101. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  102. var database = new Database(databaseType, _connectionString);
  103. var connection = database.GetConnection();
  104. var items = await connection
  105. .QueryAsync<NoticeReadListResult, User, Department, NoticeReadListResult>(sql,
  106. (noticeReadListResult, user, department) =>
  107. {
  108. noticeReadListResult.Name = user != null ? user.Name : "";
  109. noticeReadListResult.AvatarUrl = user != null ? StringUtils.AddDomainMin(user.AvatarUrl) : "";
  110. noticeReadListResult.DepartmentName = department.Name;
  111. noticeReadListResult.LastModifiedDate = Convert.ToDateTime(noticeReadListResult.LastModifiedDate).ToString("yyyy-MM-dd HH:mm:ss");
  112. return noticeReadListResult;
  113. },
  114. splitOn: "Name,Name");
  115. return items;
  116. }
  117. /// <summary>
  118. /// 获取收件人
  119. /// </summary>
  120. /// <param name="noticeId"></param>
  121. /// <returns></returns>
  122. public async Task<IEnumerable<User>> GetUserByNoticeIdAsync(int noticeId)
  123. {
  124. 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;";
  125. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  126. var database = new Database(databaseType, _connectionString);
  127. var connection = database.GetConnection();
  128. var items = await connection
  129. .QueryAsync<User>(sql);
  130. return items;
  131. }
  132. public async Task<int> CountAsync(Query query)
  133. {
  134. return await _repository.CountAsync(query);
  135. }
  136. public async Task<IEnumerable<Addressee>> GetAllAsync(Query query)
  137. {
  138. return await _repository.GetAllAsync(query);
  139. }
  140. public async Task<bool> UpdateAsync(Query query)
  141. {
  142. return await _repository.UpdateAsync(query) > 0;
  143. }
  144. public async Task<bool> ExistsAsync(Query query)
  145. {
  146. return await _repository.ExistsAsync(query);
  147. }
  148. public Task<IEnumerable<MissiveReadListResult>> GetMissiveReadListAsync(MissiveReadListRequest request)
  149. {
  150. throw new NotImplementedException();
  151. }
  152. }
  153. }