TopicRepository.cs 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Threading.Tasks;
  4. using AutoMapper;
  5. using Dapper;
  6. using GxPress.Common.AppOptions;
  7. using GxPress.Common.Page;
  8. using GxPress.Common.Tools;
  9. using GxPress.Entity;
  10. using GxPress.Repository.Interface;
  11. using GxPress.Request.App.Topic;
  12. using GxPress.Result.App.Topic;
  13. using Microsoft.Extensions.Options;
  14. using Datory;
  15. using GxPress.Entity.Topic;
  16. using GxPress.Result;
  17. using SqlKata;
  18. using GxPress.Result.Job;
  19. namespace GxPress.Repository.Implement
  20. {
  21. public class TopicRepository : ITopicRepository
  22. {
  23. private readonly Repository<Entity.Topic.Topic> _repository;
  24. private readonly Repository<TopicAddressee> _topicAddresseeRepository;
  25. private readonly Repository<User> _userRepository;
  26. private readonly IMapper _mapper;
  27. private readonly string _connectionString;
  28. private readonly string _databaseTypeStr;
  29. private readonly Repository<GroupUser> _groupUserRepository;
  30. private readonly Repository<Entity.Visit.Visit> _visitRepository;
  31. public TopicRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
  32. {
  33. _databaseTypeStr = dbOptionsAccessor.CurrentValue.DatabaseType;
  34. _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
  35. var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  36. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  37. _repository = new Repository<Entity.Topic.Topic>(database);
  38. _topicAddresseeRepository = new Repository<TopicAddressee>(database);
  39. _userRepository = new Repository<User>(database);
  40. _groupUserRepository = new Repository<GroupUser>(database);
  41. _visitRepository = new Repository<Entity.Visit.Visit>(database);
  42. _mapper = mapper;
  43. }
  44. public TopicRepository()
  45. {
  46. }
  47. public IDatabase Database => _repository.Database;
  48. public string TableName => _repository.TableName;
  49. public List<TableColumn> TableColumns => _repository.TableColumns;
  50. /// <summary>
  51. /// 根据userId获取话题
  52. /// </summary>
  53. /// <param name="request"></param>
  54. /// <returns></returns>
  55. public async Task<PagedList<Entity.Topic.Topic>> GetTopicByUserIdAsync(TopicPageSearchRequest request)
  56. {
  57. var query = Q.NewQuery();
  58. if (request.UserId > 0)
  59. {
  60. query.Where(nameof(Entity.Topic.Topic.UserId), request.UserId);
  61. }
  62. if (!string.IsNullOrEmpty(request.Keyword))
  63. {
  64. var like = $"%{request.Keyword}%";
  65. query.WhereLike(nameof(Entity.Topic.Topic.Title), like);
  66. }
  67. var pagedList = new PagedList<Entity.Topic.Topic>
  68. {
  69. Total = await _repository.CountAsync(query)
  70. };
  71. var list = await _repository.GetAllAsync(query.ForPage(request.Page, request.PerPage));
  72. pagedList.Items = list;
  73. return pagedList;
  74. }
  75. /// <summary>
  76. /// APP列表显示用
  77. /// </summary>
  78. /// <param name="contentJsonDataList"></param>
  79. /// <returns></returns>
  80. public List<ContentJsonData> GetListAsync(List<ContentJsonData> contentJsonDataList)
  81. {
  82. var result = new List<ContentJsonData>();
  83. if (contentJsonDataList.Count > 0)
  84. {
  85. //查询文本
  86. var txtType = contentJsonDataList.FirstOrDefault(n => n.Type == 1);
  87. if (txtType != null)
  88. result.Add(txtType);
  89. //拼接图片
  90. var imgType = contentJsonDataList.FindAll(n => n.Type == 2);
  91. if (imgType.Any())
  92. {
  93. foreach (var item in imgType)
  94. {
  95. //判断图片数量
  96. if (result.Count(n => n.Type == 2) > 8)
  97. break;
  98. result.Add(item);
  99. }
  100. }
  101. }
  102. return result;
  103. }
  104. /// <summary>
  105. /// 根据GroupId获取通知
  106. /// </summary>
  107. /// <param name="request"></param>
  108. /// <returns></returns>
  109. public async Task<PagedList<TopicListPageResult>> FindTopicByGroupIdAsync(TopicDetailListRequest request)
  110. {
  111. //用户收件人
  112. var resultData = new PagedList<TopicListPageResult>();
  113. var showKey = $@"SELECT a.*,(SELECT
  114. COUNT(1)
  115. FROM
  116. tede_analyze
  117. WHERE
  118. TypeValue =1
  119. AND SourceId = a.Id
  120. AND AnalyzeType = 1) AS PraiseCount,
  121. (SELECT
  122. COUNT(1)
  123. FROM
  124. tede_analyze
  125. WHERE
  126. UserId = {request.UserId} AND TypeValue = 1
  127. AND SourceId = a.Id
  128. AND AnalyzeType = 1
  129. LIMIT 0 , 1) AS IsPraise,
  130. (SELECT
  131. COUNT(1)
  132. FROM
  133. tede_comment
  134. WHERE
  135. ArticleId = a.Id and pid=0
  136. AND TypeValue = 1) AS CommentCount,
  137. (SELECT
  138. COUNT(1)
  139. FROM
  140. tede_analyze
  141. WHERE
  142. UserId = {request.UserId} AND TypeValue = 1
  143. AND SourceId = a.Id
  144. AND AnalyzeType = 4) AS RetransmissionCount,
  145. (SELECT
  146. COUNT(1)
  147. FROM
  148. tede_analyze
  149. WHERE
  150. UserId = {request.UserId} AND TypeValue = 1
  151. AND SourceId = a.Id
  152. AND AnalyzeType = 4
  153. LIMIT 0 , 1) AS IsRetransmission,
  154. (SELECT
  155. COUNT(1)
  156. FROM
  157. tede_analyze
  158. WHERE
  159. UserId = {request.UserId} AND TypeValue = 1
  160. AND SourceId = a.Id
  161. AND AnalyzeType = 4
  162. LIMIT 0 , 1) AS IsCollect,
  163. (SELECT
  164. COUNT(1)
  165. FROM
  166. tede_analyze
  167. WHERE
  168. UserId = {request.UserId} AND TypeValue = 1
  169. AND SourceId = a.Id
  170. AND AnalyzeType = 4) AS CollectCount,b.Name,b.AvatarUrl,c.Name FROM";
  171. var countSql = $"SELECT count(1) FROM tede_topic a inner join tede_user b on a.UserId=b.Id inner join tede_Department c on c.Id=b.DepartmentId where a.GroupId={request.GroupId}";
  172. var sql =
  173. $"{showKey} tede_topic a inner join tede_user b on a.UserId=b.Id inner join tede_Department c on c.Id=b.DepartmentId where a.GroupId={request.GroupId}";
  174. var strValue = "";
  175. if (!string.IsNullOrEmpty(request.Key))
  176. strValue += $" and (a.Title like '%{request.Key}%' or a.Content like '%{request.Key}%' or b.Name like '%{request.Key}%')";
  177. sql += $"{strValue} order by a.CreatedDate DESC LIMIT @page , @pageSize";
  178. countSql += $"{strValue}";
  179. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  180. var database = new Database(databaseType, _connectionString);
  181. var connection = database.GetConnection();
  182. var result =
  183. connection
  184. .Query<TopicListPageResult, User, Department, TopicListPageResult>(sql,
  185. (topicListPageResult, user, department) =>
  186. {
  187. topicListPageResult.DepartmentName = department.Name;
  188. topicListPageResult.UserName = user.Name;
  189. topicListPageResult.AvatarUrl = StringUtils.AddDomainMin(user.AvatarUrl);
  190. return topicListPageResult;
  191. }, new { page = (request.Page - 1) * request.PerPage, pageSize = request.PerPage }, splitOn: "Name");
  192. resultData.Total = await connection.ExecuteScalarAsync<int>(countSql);
  193. var topicListPageResults = result as TopicListPageResult[] ?? result.ToArray();
  194. resultData.Items = topicListPageResults;
  195. return resultData;
  196. }
  197. /// <summary>
  198. /// 根据小组ID获取话题数量
  199. /// </summary>
  200. /// <param name="groupId"></param>
  201. /// <returns></returns>
  202. public async Task<int> GetGroupTopicCountAsync(int groupId)
  203. {
  204. return await _repository.CountAsync(Q.Where(nameof(Entity.Topic.Topic.GroupId), groupId));
  205. }
  206. /// <summary>
  207. /// 根据ID获取话题
  208. /// </summary>
  209. /// <param name="id"></param>
  210. /// <returns></returns>
  211. public async Task<Entity.Topic.Topic> GetAsync(int id)
  212. {
  213. return await _repository.GetAsync(id);
  214. }
  215. public async Task<int> CountAsync(Query query)
  216. {
  217. return await _repository.CountAsync(query);
  218. }
  219. public async Task<IEnumerable<Entity.Topic.Topic>> GetAllAsync(Query query)
  220. {
  221. return await _repository.GetAllAsync(query);
  222. }
  223. public async Task<int> InsertAsync(Entity.Topic.Topic topic)
  224. {
  225. return await _repository.InsertAsync(topic);
  226. }
  227. public async Task<bool> DeleteAsync(int id)
  228. {
  229. return await _repository.DeleteAsync(id);
  230. }
  231. public async Task<bool> UpdateAsync(Entity.Topic.Topic topic)
  232. {
  233. return await _repository.UpdateAsync(topic);
  234. }
  235. /// <summary>
  236. /// 执行话题
  237. /// </summary>
  238. /// <returns></returns>
  239. public async Task<List<JobTopicResult>> ExecuteTopic()
  240. {
  241. string sql = "select a.*,b.UserId,b.Id,c.Name,d.AvatarUrl from tede_topic a inner join tede_topic_addressee b on a.Id=b.TopicId inner join tede_user c on c.Id=b.UserId inner join tede_user d on d.Id=a.UserId where b.IsUpload=0 order by a.CreatedDate desc limit 0,100";
  242. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  243. var database = new Database(databaseType, _connectionString);
  244. var connection = database.GetConnection();
  245. var result = await connection.QueryAsync<JobTopicResult, TopicAddressee, User, User, JobTopicResult>(sql, (jobTopicResult, topicAddressee, user, userDto) =>
  246. {
  247. jobTopicResult.UserId = topicAddressee.UserId;
  248. jobTopicResult.Name = user.Name;
  249. jobTopicResult.AvatarUrl = userDto.AvatarUrl;
  250. jobTopicResult.TopicAddresseeId = topicAddressee.Id;
  251. return jobTopicResult;
  252. }, splitOn: "UserId,Name,AvatarUrl");
  253. connection.Dispose();
  254. return result.ToList();
  255. }
  256. /// <summary>
  257. /// 新版 获取换题列表
  258. /// </summary>
  259. /// <param name="request"></param>
  260. /// <returns></returns>
  261. public async Task<PagedList<TopicListPageResult>> GetTopicPage(TopicPageSearchRequest request)
  262. {
  263. var result = new PagedList<TopicListPageResult>();
  264. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  265. var database = new Database(databaseType, _connectionString);
  266. var connection = database.GetConnection();
  267. result.Items = await connection.QueryAsync<TopicListPageResult, User, TopicListPageResult>(AssembleSql(request), (topicListPageResult, user) =>
  268. {
  269. topicListPageResult.UserName = user != null ? user.Name : "";
  270. topicListPageResult.AvatarUrl = user != null ? StringUtils.AddDomainMin(user.AvatarUrl) : "";
  271. topicListPageResult.FolderResult.Id = topicListPageResult.FolderId;
  272. topicListPageResult.FolderResult.FolderName = topicListPageResult.FolderName;
  273. return topicListPageResult;
  274. }, splitOn: "Id,Name");
  275. result.Total = await connection.ExecuteScalarAsync<int>(AssembleSqlCount(request));
  276. connection.Dispose();
  277. return result;
  278. }
  279. public async Task<PagedList<TopicListPageResult>> GetTopicByGroupAsync(TopicPageSearchRequest request)
  280. {
  281. var sql = $@"SELECT
  282. a.*,
  283. (SELECT
  284. COUNT(1)
  285. FROM
  286. tede_analyze
  287. WHERE
  288. TypeValue = 3 AND SourceId = a.Id
  289. AND AnalyzeType = 1) AS PraiseCount,
  290. (SELECT
  291. COUNT(1)
  292. FROM
  293. tede_analyze
  294. WHERE
  295. UserId = {request.UserId} AND TypeValue = 3
  296. AND SourceId = a.Id
  297. AND AnalyzeType = 1
  298. LIMIT 0 , 1) AS IsPraise,
  299. (SELECT
  300. COUNT(1)
  301. FROM
  302. tede_comment
  303. WHERE
  304. ArticleId = a.Id AND TypeValue = 3
  305. AND Pid = 0) AS CommentCount,
  306. (SELECT
  307. COUNT(1)
  308. FROM
  309. tede_analyze
  310. WHERE
  311. UserId = {request.UserId} AND TypeValue = 3
  312. AND SourceId = a.Id
  313. AND AnalyzeType = 4) AS RetransmissionCount,
  314. (SELECT
  315. COUNT(1)
  316. FROM
  317. tede_analyze
  318. WHERE
  319. UserId = {request.UserId} AND TypeValue = 3
  320. AND SourceId = a.Id
  321. AND AnalyzeType = 4
  322. LIMIT 0 , 1) AS IsRetransmission,
  323. (SELECT
  324. COUNT(1)
  325. FROM
  326. tede_analyze
  327. WHERE
  328. UserId = {request.UserId} AND TypeValue = 3
  329. AND SourceId = a.Id
  330. AND AnalyzeType = 3
  331. LIMIT 0 , 1) AS IsCollect,
  332. b.Id as GroupId,
  333. b.Name,
  334. c.Name,
  335. c.AvatarUrl
  336. FROM
  337. tede_topic a
  338. INNER JOIN
  339. tede_group b ON a.GroupId = b.id
  340. INNER JOIN
  341. tede_user c ON a.UserId = c.Id
  342. WHERE
  343. a.GroupId > 0";
  344. if (request.IsAdmin)
  345. {
  346. sql += $@" AND a.UserId={request.UserId}";
  347. }
  348. else
  349. {
  350. sql += $@" AND b.Id IN (SELECT
  351. GroupId
  352. FROM
  353. tede_group_user
  354. WHERE
  355. UserId = {request.UserId})";
  356. }
  357. if (!string.IsNullOrWhiteSpace(request.Keyword))
  358. {
  359. sql += $@" AND (c.Name LIKE '%{request.Keyword}%'
  360. OR a.Title LIKE '%{request.Keyword}%'
  361. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  362. }
  363. if (!string.IsNullOrEmpty(request.Sort))
  364. sql += $@" ORDER BY a.ReadCount DESC";
  365. else
  366. sql += $@" ORDER BY a.CreatedDate DESC";
  367. sql += $@" LIMIT {(request.Page - 1) * request.PerPage} , {request.PerPage}";
  368. var result = new PagedList<TopicListPageResult>();
  369. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  370. var database = new Database(databaseType, _connectionString);
  371. var connection = database.GetConnection();
  372. result.Items = await connection.QueryAsync<TopicListPageResult, Entity.Group, User, TopicListPageResult>(sql, (topicListPageResult, group, user) =>
  373. {
  374. topicListPageResult.AvatarUrl = user != null ? StringUtils.AddDomainMin(user.AvatarUrl) : "";
  375. topicListPageResult.GroupName = group != null ? group.Name : "";
  376. topicListPageResult.UserName = user != null ? user.Name : "";
  377. return topicListPageResult;
  378. }, splitOn: "Id,GroupId,Name");
  379. sql = $@"SELECT
  380. count(1)
  381. FROM
  382. tede_topic a
  383. INNER JOIN
  384. tede_group b ON a.GroupId = b.id
  385. INNER JOIN
  386. tede_user c ON a.UserId = c.Id
  387. WHERE
  388. a.GroupId > 0";
  389. if (request.IsAdmin)
  390. {
  391. sql += $@" AND a.UserId={request.UserId}";
  392. }
  393. else
  394. {
  395. sql += $@" AND b.Id IN (SELECT
  396. GroupId
  397. FROM
  398. tede_group_user
  399. WHERE
  400. UserId = {request.UserId})";
  401. }
  402. if (!string.IsNullOrWhiteSpace(request.Keyword))
  403. {
  404. sql += $@" AND (c.Name LIKE '%{request.Keyword}%'
  405. OR a.Title LIKE '%{request.Keyword}%'
  406. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  407. }
  408. result.Total = await connection.ExecuteScalarAsync<int>(sql);
  409. return result;
  410. }
  411. public string AssembleSql(TopicPageSearchRequest request)
  412. {
  413. var sql = $@"SELECT
  414. a.*,
  415. (SELECT
  416. FolderName
  417. FROM
  418. tede_middle
  419. WHERE
  420. id = a.FolderId) AS FolderName,
  421. (SELECT
  422. COUNT(1)
  423. FROM
  424. tede_analyze
  425. WHERE
  426. TypeValue = 3
  427. AND SourceId = a.Id
  428. AND AnalyzeType = 1) AS PraiseCount,
  429. (SELECT
  430. COUNT(1)
  431. FROM
  432. tede_analyze
  433. WHERE
  434. UserId = {request.UserId} AND TypeValue = 3
  435. AND SourceId = a.Id
  436. AND AnalyzeType = 1
  437. LIMIT 0 , 1) AS IsPraise,
  438. (SELECT
  439. COUNT(1)
  440. FROM
  441. tede_comment
  442. WHERE
  443. ArticleId = a.Id AND TypeValue = 3
  444. AND Pid = 0) AS CommentCount,
  445. (SELECT
  446. COUNT(1)
  447. FROM
  448. tede_analyze
  449. WHERE
  450. UserId = {request.UserId} AND TypeValue = 3
  451. AND SourceId = a.Id
  452. AND AnalyzeType = 4) AS RetransmissionCount,
  453. (SELECT
  454. COUNT(1)
  455. FROM
  456. tede_analyze
  457. WHERE
  458. UserId = {request.UserId} AND TypeValue = 3
  459. AND SourceId = a.Id
  460. AND AnalyzeType = 4
  461. LIMIT 0 , 1) AS IsRetransmission,
  462. (SELECT
  463. COUNT(1)
  464. FROM
  465. tede_analyze
  466. WHERE
  467. UserId = {request.UserId} AND TypeValue = 3
  468. AND SourceId = a.Id
  469. AND AnalyzeType = 3
  470. LIMIT 0 , 1) AS IsCollect,
  471. b.Name, b.AvatarUrl
  472. FROM
  473. tede_note a
  474. INNER JOIN
  475. tede_user b ON a.UserId = b.Id
  476. INNER JOIN
  477. tede_middle c ON c.MiddleId = a.Id
  478. WHERE
  479. c.FolderType = 4 AND a.IsTopic = 1
  480. AND (a.FolderId IN (SELECT
  481. MiddleId
  482. FROM
  483. tede_folder_user
  484. WHERE
  485. MiddleId = a.FolderId AND UserId = {request.UserId})
  486. OR a.UserId IN (SELECT
  487. Id
  488. FROM
  489. tede_user
  490. WHERE
  491. 1 = (SELECT
  492. RoleId
  493. FROM
  494. tede_middle
  495. WHERE
  496. id = a.FolderId)
  497. AND id = {request.UserId}))";
  498. if (request.TopicGroupIds.Count > 0)
  499. {
  500. var topicGroupId = "";
  501. foreach (var item in request.TopicGroupIds)
  502. {
  503. topicGroupId += $"{item},";
  504. }
  505. topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
  506. sql += $@" AND a.UserId IN (SELECT
  507. UserId
  508. FROM
  509. tede_topic_group_user
  510. WHERE
  511. TopicGroupId IN ({topicGroupId}))";
  512. }
  513. if (!string.IsNullOrWhiteSpace(request.Keyword))
  514. {
  515. sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
  516. OR a.Title LIKE '%{request.Keyword}%'
  517. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  518. }
  519. sql += $@" ORDER BY a.CreatedDate DESC
  520. LIMIT {(request.Page - 1) * request.PerPage} , {request.PerPage}";
  521. return sql;
  522. }
  523. public string AssembleSqlCount(TopicPageSearchRequest request)
  524. {
  525. var sql = $@"SELECT count(1) FROM
  526. tede_note a
  527. INNER JOIN
  528. tede_user b ON a.UserId = b.Id
  529. INNER JOIN
  530. tede_middle c ON c.MiddleId = a.Id
  531. WHERE
  532. c.FolderType = 4 AND a.IsTopic = 1
  533. AND (a.FolderId IN (SELECT
  534. MiddleId
  535. FROM
  536. tede_folder_user
  537. WHERE
  538. MiddleId = a.FolderId AND UserId = {request.UserId})
  539. OR a.UserId IN (SELECT
  540. Id
  541. FROM
  542. tede_user
  543. WHERE
  544. 1 = (SELECT
  545. RoleId
  546. FROM
  547. tede_middle
  548. WHERE
  549. id = a.FolderId)
  550. AND id = {request.UserId}))";
  551. if (request.TopicGroupIds.Count > 0)
  552. {
  553. var topicGroupId = "";
  554. foreach (var item in request.TopicGroupIds)
  555. {
  556. topicGroupId += $"{item},";
  557. }
  558. topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
  559. sql += $@" AND a.UserId IN (SELECT
  560. UserId
  561. FROM
  562. tede_topic_group_user
  563. WHERE
  564. TopicGroupId IN ({topicGroupId}))";
  565. }
  566. if (!string.IsNullOrWhiteSpace(request.Keyword))
  567. {
  568. sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
  569. OR a.Title LIKE '%{request.Keyword}%'
  570. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  571. }
  572. return sql;
  573. }
  574. }
  575. }