CommentRepository.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Threading.Tasks;
  4. using AutoMapper;
  5. using GxPress.Common.AppOptions;
  6. using GxPress.Common.Exceptions;
  7. using GxPress.Common.Page;
  8. using GxPress.Common.Tools;
  9. using GxPress.Entity;
  10. using GxPress.Entity.Article;
  11. using GxPress.Repository.Interface;
  12. using GxPress.Request.Comment;
  13. using GxPress.Result.Comment;
  14. using Microsoft.Extensions.Options;
  15. using Datory;
  16. using SqlKata;
  17. namespace GxPress.Repository.Implement
  18. {
  19. public class CommentRepository : ICommentRepository
  20. {
  21. private readonly Repository<Comment> _repository;
  22. private readonly Repository<Entity.Analyze.Analyze> _analyzeRepository;
  23. private readonly Repository<Article> _articleRepository;
  24. private readonly Repository<User> _userRepository;
  25. private readonly IMapper _mapper;
  26. public CommentRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
  27. {
  28. var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  29. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  30. _repository = new Repository<Comment>(database);
  31. _articleRepository = new Repository<Article>(database);
  32. _userRepository = new Repository<User>(database);
  33. _analyzeRepository = new Repository<Entity.Analyze.Analyze>(database);
  34. _mapper = mapper;
  35. }
  36. public IDatabase Database => _repository.Database;
  37. public string TableName => _repository.TableName;
  38. public List<TableColumn> TableColumns => _repository.TableColumns;
  39. /// <summary>
  40. /// 添加评论
  41. /// </summary>
  42. /// <param name="request"></param>
  43. /// <returns></returns>
  44. public async Task<int> CommentInAsync(CommentInRequest request)
  45. {
  46. //查询文章是否存在
  47. // var article = _articleRepository.ExistsAsync(Q.Where(nameof(Article.Id), request.ArticleId));
  48. // if (await article == false)
  49. // throw new BusinessException("该文章不存在");
  50. //查询用户
  51. var user = _userRepository.ExistsAsync(Q.Where(nameof(User.Id), request.UserId));
  52. if (await user == false)
  53. throw new BusinessException("该用户不存在");
  54. var comment = new Comment
  55. {
  56. ArticleId = request.ArticleId,
  57. Content = request.Content,
  58. UserId = request.UserId,
  59. Pid = request.Pid,
  60. TypeValue = request.TypeValue
  61. };
  62. //是否被回复
  63. if (request.Pid > 0)
  64. {
  65. //查询他的上级pid=0
  66. var commentEntity = await _repository.GetAsync(request.Pid);
  67. if (commentEntity.Pid > 0)
  68. {
  69. comment.IsUnderstand = true;
  70. }
  71. }
  72. return await _repository.InsertAsync(comment);
  73. }
  74. /// <summary>
  75. /// 分页列表
  76. /// </summary>
  77. /// <param name="request"></param>
  78. /// <returns></returns>
  79. public async Task<PagedList<CommentPageResult>> GetPagedList(CommentSearchPageRequest request)
  80. {
  81. var pagedList = new PagedList<CommentPageResult>
  82. {
  83. Total = await GetCountAsync(request)
  84. };
  85. request.Total = pagedList.Total;
  86. var list = await GetPageListAsync(request);
  87. pagedList.Items = list;
  88. return pagedList;
  89. }
  90. /// <summary>
  91. /// 获取总条数
  92. /// </summary>
  93. /// <param name="articleId"></param>
  94. /// <returns></returns>
  95. public async Task<int> GetCountAsync(CommentSearchPageRequest request)
  96. {
  97. return await _repository.CountAsync(Q.Where(nameof(Comment.ArticleId), request.ArticleId)
  98. .Where(nameof(Comment.Pid), 0).Where(nameof(Comment.TypeValue), request.TypeValue));
  99. }
  100. /// <summary>
  101. /// 获取分页数据
  102. /// </summary>
  103. /// <param name="request"></param>
  104. /// <returns></returns>
  105. public async Task<IEnumerable<CommentPageResult>> GetPageListAsync(CommentSearchPageRequest request)
  106. {
  107. List<CommentPageResult> commentPageResults = new List<CommentPageResult>();
  108. var query = new SqlKata.Query();
  109. query.Where(nameof(Comment.ArticleId), request.ArticleId)
  110. .Where(nameof(Comment.Pid), 0).Where(nameof(Comment.TypeValue), request.TypeValue);
  111. if (string.IsNullOrEmpty(request.Sort))
  112. query.OrderByDesc(nameof(Comment.CreatedDate));
  113. if (!string.IsNullOrEmpty(request.Sort) && request.Sort == "asc")
  114. query.OrderBy(nameof(Comment.CreatedDate));
  115. if (!string.IsNullOrEmpty(request.Sort) && request.Sort == "desc")
  116. query.OrderByDesc(nameof(Comment.CreatedDate));
  117. var commentList = await _repository.GetAllAsync(query.ForPage(request.Page, request.PerPage));
  118. var i = 1;
  119. foreach (var item in commentList)
  120. {
  121. //获取当前用户信息
  122. var user = await _userRepository.GetAsync(item.UserId);
  123. if (user == null)
  124. continue;
  125. CommentPageResult commentPageResult = new CommentPageResult
  126. {
  127. ArticleId = item.ArticleId,
  128. AvatarUrl = StringUtils.AddDomainMin(user.AvatarUrl),
  129. Name = user.Name,
  130. Content = item.Content,
  131. CreatedTime = item.CreatedDate,
  132. LaudCount = await LaudCommentAsync(item.Id),
  133. UserId = item.UserId,
  134. //是否点赞
  135. IsLaud = await IsLaudCommentAsync(item.Id, item.UserId)
  136. };
  137. if (request.Sort == "asc")
  138. commentPageResult.FloorCount = $"第{((request.Page - 1) * request.PerPage) + i}楼";
  139. else
  140. commentPageResult.FloorCount = $"第{((request.Total - (request.Page - 1) * request.PerPage) - (i - 1))}楼";
  141. //计算点赞数量
  142. //计算被回复数据
  143. List<CommentReplyResult> commentReplyResults = new List<CommentReplyResult>();
  144. commentPageResult.CommentReplyResults = await GetCommentReplyResultByPid(item.Id, commentReplyResults);
  145. commentPageResult.Id = item.Id;
  146. commentPageResults.Add(commentPageResult);
  147. i++;
  148. }
  149. return commentPageResults;
  150. }
  151. /// <summary>
  152. /// 当前用户是否点赞该评论
  153. /// </summary>
  154. /// <param name="commentId"></param>
  155. /// <param name="userId"></param>
  156. /// <returns></returns>
  157. public async Task<bool> IsLaudCommentAsync(int commentId, int userId)
  158. {
  159. return await _analyzeRepository.CountAsync(Q.Where(nameof(Entity.Analyze.Analyze.CommentId), commentId)
  160. .Where(nameof(Entity.Analyze.Analyze.UserId), userId).Where(nameof(Entity.Analyze.Analyze.AnalyzeType), 2)) > 0;
  161. }
  162. /// <summary>
  163. /// 当前用户是否点赞该评论
  164. /// </summary>
  165. /// <param name="commentId"></param>
  166. /// <returns></returns>
  167. public async Task<int> LaudCommentAsync(int commentId)
  168. {
  169. return await _analyzeRepository.CountAsync(Q.Where(nameof(Entity.Analyze.Analyze.CommentId), commentId).Where(nameof(Entity.Analyze.Analyze.AnalyzeType), 2));
  170. }
  171. /// <summary>
  172. /// 递归查询父级下面的所有回复
  173. /// </summary>
  174. public async Task<List<CommentReplyResult>> GetCommentReplyResultByPid(int pid,
  175. List<CommentReplyResult> commentReplyResults)
  176. {
  177. var result = _repository.GetAllAsync(Q.Where(nameof(Comment.Pid), pid)).Result.ToList();
  178. if (result.Count == 0)
  179. return commentReplyResults;
  180. foreach (var item in result)
  181. {
  182. CommentReplyResult commentReplyResult = new CommentReplyResult
  183. {
  184. Id = item.Id,
  185. Content = item.Content,
  186. CreatedTime = item.CreatedDate
  187. };
  188. var user = await _userRepository.GetAsync(item.UserId);
  189. if (user == null)
  190. continue;
  191. commentReplyResult.Name = user.Name;
  192. if (item.IsUnderstand)
  193. {
  194. var comment = await _repository.GetAsync(Q.Where(nameof(Comment.Id), item.Pid));
  195. if (comment == null)
  196. continue;
  197. user = _userRepository.GetAsync(comment.UserId).Result;
  198. commentReplyResult.ReplyName = user.Name;
  199. commentReplyResult.ReplyUserId = user.Id;
  200. }
  201. commentReplyResult.IsUnderstand = item.IsUnderstand;
  202. commentReplyResult.UserId = item.UserId;
  203. commentReplyResults.Add(commentReplyResult);
  204. commentReplyResults = await GetCommentReplyResultByPid(item.Id, commentReplyResults);
  205. }
  206. return commentReplyResults;
  207. }
  208. /// <summary>
  209. /// 删除评论
  210. /// </summary>
  211. /// <param name="request"></param>
  212. /// <returns></returns>
  213. public async Task<bool> DeleteCommentAsync(CommentDeleteRequest request)
  214. {
  215. //查询评论数据
  216. var commentEntity = await _repository.GetAsync(Q.Where(nameof(Comment.ArticleId), request.ArticleId)
  217. .Where(nameof(Comment.Id), request.CommentId));
  218. if (commentEntity.Id == 0)
  219. throw new BusinessException("该评论不存在!");
  220. //递归删除
  221. var commentList = new List<Comment> { commentEntity };
  222. commentList = await GetCommentByParentId(commentEntity.Id, commentList);
  223. //删除
  224. foreach (var item in commentList)
  225. {
  226. await _repository.DeleteAsync(item.Id);
  227. }
  228. return true;
  229. }
  230. /// <summary>
  231. /// 递归删除
  232. /// </summary>
  233. /// <param name="id"></param>
  234. /// <param name="lists"></param>
  235. /// <returns></returns>
  236. public async Task<List<Comment>> GetCommentByParentId(int id, List<Comment> lists)
  237. {
  238. var commentList = await _repository.GetAllAsync(Q.Where(nameof(Comment.Pid), id));
  239. if (!commentList.Any())
  240. return lists;
  241. foreach (var comment in commentList)
  242. {
  243. lists.Add(comment);
  244. await GetCommentByParentId(comment.Id, lists);
  245. }
  246. return lists;
  247. }
  248. /// <summary>
  249. /// 获取评论数量
  250. /// </summary>
  251. /// <param name="articleId"></param>
  252. /// <returns></returns>
  253. public async Task<int> GetCommentCountAsync(int articleId)
  254. {
  255. return await _repository.CountAsync(Q.Where(nameof(Comment.ArticleId), articleId));
  256. }
  257. public async Task<Comment> GetAsync(Query query)
  258. {
  259. return await _repository.GetAsync(query);
  260. }
  261. public async Task<bool> UpdateAsync(Comment comment)
  262. {
  263. return await _repository.UpdateAsync(comment);
  264. }
  265. public async Task<int> CountAsync(Query query)
  266. {
  267. return await _repository.CountAsync(query);
  268. }
  269. /// <summary>
  270. /// 修改评论
  271. /// </summary>
  272. /// <param name="request"></param>
  273. /// <returns></returns>
  274. public async Task<bool> UpdateCommentAsync(CommentUpdateRequest request)
  275. {
  276. //判断类容是否为空
  277. if (string.IsNullOrWhiteSpace(request.Content))
  278. throw new Common.Exceptions.BusinessException("评论不能为空!");
  279. //查询评论
  280. var comment = await _repository.GetAsync(request.CommentId);
  281. if (comment == null)
  282. throw new Common.Exceptions.BusinessException("该评论不存在!");
  283. if (comment.UserId != request.UserId)
  284. throw new Common.Exceptions.BusinessException("该评论不属于该用户!");
  285. //修改
  286. comment.Content = request.Content;
  287. return await UpdateAsync(comment);
  288. }
  289. }
  290. }