TopicRepository.cs 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769
  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. using GxPress.EnumConst;
  20. namespace GxPress.Repository.Implement
  21. {
  22. public class TopicRepository : ITopicRepository
  23. {
  24. private readonly Repository<Entity.Topic.Topic> _repository;
  25. private readonly Repository<TopicAddressee> _topicAddresseeRepository;
  26. private readonly Repository<User> _userRepository;
  27. private readonly IMapper _mapper;
  28. private readonly string _connectionString;
  29. private readonly string _databaseTypeStr;
  30. private readonly Repository<GroupUser> _groupUserRepository;
  31. private readonly Repository<Entity.Visit.Visit> _visitRepository;
  32. public TopicRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
  33. {
  34. _databaseTypeStr = dbOptionsAccessor.CurrentValue.DatabaseType;
  35. _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
  36. var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  37. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  38. _repository = new Repository<Entity.Topic.Topic>(database);
  39. _topicAddresseeRepository = new Repository<TopicAddressee>(database);
  40. _userRepository = new Repository<User>(database);
  41. _groupUserRepository = new Repository<GroupUser>(database);
  42. _visitRepository = new Repository<Entity.Visit.Visit>(database);
  43. _mapper = mapper;
  44. }
  45. public TopicRepository()
  46. {
  47. }
  48. public IDatabase Database => _repository.Database;
  49. public string TableName => _repository.TableName;
  50. public List<TableColumn> TableColumns => _repository.TableColumns;
  51. /// <summary>
  52. /// 根据userId获取话题
  53. /// </summary>
  54. /// <param name="request"></param>
  55. /// <returns></returns>
  56. public async Task<PagedList<Entity.Topic.Topic>> GetTopicByUserIdAsync(TopicPageSearchRequest request)
  57. {
  58. var query = Q.NewQuery();
  59. if (request.UserId > 0)
  60. {
  61. query.Where(nameof(Entity.Topic.Topic.UserId), request.UserId);
  62. }
  63. if (!string.IsNullOrEmpty(request.Keyword))
  64. {
  65. var like = $"%{request.Keyword}%";
  66. query.WhereLike(nameof(Entity.Topic.Topic.Title), like);
  67. }
  68. var pagedList = new PagedList<Entity.Topic.Topic>
  69. {
  70. Total = await _repository.CountAsync(query)
  71. };
  72. var list = await _repository.GetAllAsync(query.ForPage(request.Page, request.PerPage));
  73. pagedList.Items = list;
  74. return pagedList;
  75. }
  76. /// <summary>
  77. /// APP列表显示用
  78. /// </summary>
  79. /// <param name="contentJsonDataList"></param>
  80. /// <returns></returns>
  81. public List<ContentJsonData> GetListAsync(List<ContentJsonData> contentJsonDataList)
  82. {
  83. var result = new List<ContentJsonData>();
  84. if (contentJsonDataList.Count > 0)
  85. {
  86. //查询文本
  87. var txtType = contentJsonDataList.FirstOrDefault(n => n.Type == 1);
  88. if (txtType != null)
  89. result.Add(txtType);
  90. //拼接图片
  91. var imgType = contentJsonDataList.FindAll(n => n.Type == 2);
  92. if (imgType.Any())
  93. {
  94. foreach (var item in imgType)
  95. {
  96. //判断图片数量
  97. if (result.Count(n => n.Type == 2) > 8)
  98. break;
  99. result.Add(item);
  100. }
  101. }
  102. }
  103. return result;
  104. }
  105. /// <summary>
  106. /// 根据GroupId获取通知
  107. /// </summary>
  108. /// <param name="request"></param>
  109. /// <returns></returns>
  110. public async Task<PagedList<TopicListPageResult>> FindTopicByGroupIdAsync(TopicDetailListRequest request)
  111. {
  112. var topicConts = GxPress.EnumConst.AllTypeConst.Topic.GetHashCode();
  113. //用户收件人
  114. var resultData = new PagedList<TopicListPageResult>();
  115. var showKey = $@"SELECT a.*,(SELECT
  116. COUNT(1)
  117. FROM
  118. tede_analyze
  119. WHERE
  120. TypeValue ={topicConts}
  121. AND SourceId = a.Id
  122. AND AnalyzeType = 1) AS PraiseCount,
  123. (SELECT
  124. COUNT(1)
  125. FROM
  126. tede_analyze
  127. WHERE
  128. UserId = {request.UserId} AND TypeValue = {topicConts}
  129. AND SourceId = a.Id
  130. AND AnalyzeType = 1
  131. LIMIT 0 , 1) AS IsPraise,
  132. (SELECT
  133. COUNT(1)
  134. FROM
  135. tede_comment
  136. WHERE
  137. ArticleId = a.Id and pid=0
  138. AND TypeValue = 1) AS CommentCount,
  139. (SELECT
  140. COUNT(1)
  141. FROM
  142. tede_analyze
  143. WHERE
  144. UserId = {request.UserId} AND TypeValue = {topicConts}
  145. AND SourceId = a.Id
  146. AND AnalyzeType = 4) AS RetransmissionCount,
  147. (SELECT
  148. COUNT(1)
  149. FROM
  150. tede_analyze
  151. WHERE
  152. UserId = {request.UserId} AND TypeValue = {topicConts}
  153. AND SourceId = a.Id
  154. AND AnalyzeType = 4
  155. LIMIT 0 , 1) AS IsRetransmission,
  156. (SELECT
  157. COUNT(1)
  158. FROM
  159. tede_analyze
  160. WHERE
  161. UserId = {request.UserId} AND TypeValue = {topicConts}
  162. AND SourceId = a.Id
  163. AND AnalyzeType = 4
  164. LIMIT 0 , 1) AS IsCollect,
  165. (SELECT
  166. COUNT(1)
  167. FROM
  168. tede_analyze
  169. WHERE
  170. UserId = {request.UserId} AND TypeValue = {topicConts}
  171. AND SourceId = a.Id
  172. AND AnalyzeType = 4) AS CollectCount,b.Name,b.AvatarUrl,c.Name FROM";
  173. 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}";
  174. var sql =
  175. $"{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}";
  176. var strValue = "";
  177. if (!string.IsNullOrEmpty(request.Key))
  178. strValue += $" and (a.Title like '%{request.Key}%' or a.Content like '%{request.Key}%' or b.Name like '%{request.Key}%')";
  179. sql += $"{strValue} order by a.CreatedDate DESC LIMIT @page , @pageSize";
  180. countSql += $"{strValue}";
  181. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  182. var database = new Database(databaseType, _connectionString);
  183. var connection = database.GetConnection();
  184. var result =
  185. connection
  186. .Query<TopicListPageResult, User, Department, TopicListPageResult>(sql,
  187. (topicListPageResult, user, department) =>
  188. {
  189. topicListPageResult.DepartmentName = department.Name;
  190. topicListPageResult.UserName = user.Name;
  191. topicListPageResult.AvatarUrl = StringUtils.AddDomainMin(user.AvatarUrl);
  192. return topicListPageResult;
  193. }, new { page = (request.Page - 1) * request.PerPage, pageSize = request.PerPage }, splitOn: "Name");
  194. resultData.Total = await connection.ExecuteScalarAsync<int>(countSql);
  195. var topicListPageResults = result as TopicListPageResult[] ?? result.ToArray();
  196. resultData.Items = topicListPageResults;
  197. return resultData;
  198. }
  199. /// <summary>
  200. ///最新 小组话题分页列表
  201. /// </summary>
  202. /// <param name="request"></param>
  203. /// <returns></returns>
  204. public async Task<PagedList<TopicListPageResult>> GetGroupTopicPageAsync(TopicDetailListRequest request)
  205. {
  206. var topicConst = AllTypeConst.Topic.GetHashCode();
  207. var result = new PagedList<TopicListPageResult>();
  208. var sqlStr = "";
  209. if (request.GroupId == 0)
  210. {
  211. sqlStr += $@" AND a.GroupId IN (SELECT
  212. GroupId
  213. FROM
  214. tede_group_user
  215. WHERE
  216. UserId ={request.UserId})";
  217. }
  218. if (request.GroupId > 0)
  219. {
  220. sqlStr += $@" AND a.GroupId IN (SELECT
  221. GroupId
  222. FROM
  223. tede_group_user
  224. WHERE
  225. UserId ={request.UserId} AND GroupId = {request.GroupId} )";
  226. }
  227. if (!string.IsNullOrEmpty(request.Key))
  228. {
  229. sqlStr += $@"AND (a.Title LIKE '%{request.Key}%'
  230. OR a.Content LIKE '%{request.Key}%')";
  231. }
  232. string sql = $@"SELECT
  233. a.Id,
  234. a.Title,
  235. a.UserId,
  236. a.ReadCount,
  237. a.CreatedDate,
  238. a.Content,
  239. a.GroupId,
  240. (SELECT
  241. COUNT(1)
  242. FROM
  243. tede_analyze
  244. WHERE
  245. TypeValue ={topicConst} AND SourceId = a.Id
  246. AND AnalyzeType = 1) AS PraiseCount,
  247. (SELECT
  248. COUNT(1)
  249. FROM
  250. tede_analyze
  251. WHERE
  252. UserId ={request.UserId} AND TypeValue = {topicConst}
  253. AND SourceId = a.Id
  254. AND AnalyzeType = 1
  255. LIMIT 0 , 1) AS IsPraise,
  256. (SELECT
  257. COUNT(1)
  258. FROM
  259. tede_comment
  260. WHERE
  261. ArticleId = a.Id AND pid = 0
  262. AND TypeValue = 1) AS CommentCount,
  263. (SELECT
  264. COUNT(1)
  265. FROM
  266. tede_analyze
  267. WHERE
  268. UserId ={request.UserId} AND TypeValue ={topicConst}
  269. AND SourceId = a.Id
  270. AND AnalyzeType = 4) AS RetransmissionCount,
  271. (SELECT
  272. COUNT(1)
  273. FROM
  274. tede_analyze
  275. WHERE
  276. UserId ={request.UserId} AND TypeValue ={topicConst}
  277. AND SourceId = a.Id
  278. AND AnalyzeType = 4
  279. LIMIT 0 , 1) AS IsRetransmission,
  280. (SELECT
  281. COUNT(1)
  282. FROM
  283. tede_analyze
  284. WHERE
  285. UserId ={request.UserId} AND TypeValue = {topicConst}
  286. AND SourceId = a.Id
  287. AND AnalyzeType = 4
  288. LIMIT 0 , 1) AS IsCollect,
  289. (SELECT
  290. COUNT(1)
  291. FROM
  292. tede_analyze
  293. WHERE
  294. UserId ={request.UserId} AND TypeValue = {topicConst}
  295. AND SourceId = a.Id
  296. AND AnalyzeType = 4) AS CollectCount,
  297. b.Name,
  298. c.Name,
  299. c.AvatarUrl,
  300. d.Id,
  301. d.Name
  302. FROM
  303. tede_topic a
  304. INNER JOIN
  305. tede_group b ON a.GroupId = b.Id
  306. INNER JOIN
  307. tede_user c ON c.Id = a.UserId
  308. INNER JOIN
  309. tede_department d ON d.Id = c.DepartmentId
  310. WHERE
  311. a.GroupId > 0
  312. {sqlStr}
  313. ORDER BY a.CreatedDate DESC";
  314. string countSql = $@"SELECT
  315. count(1)
  316. FROM
  317. tede_topic a
  318. INNER JOIN
  319. tede_group b ON a.GroupId = b.Id
  320. INNER JOIN
  321. tede_user c ON c.Id = a.UserId
  322. WHERE
  323. a.GroupId > 0
  324. {sqlStr}
  325. ORDER BY a.CreatedDate DESC";
  326. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  327. var database = new Database(databaseType, _connectionString);
  328. var connection = database.GetConnection();
  329. result.Items =
  330. await connection
  331. .QueryAsync<TopicListPageResult, Entity.Group, User, Department, TopicListPageResult>(sql,
  332. (topicListPageResult, group, user, department) =>
  333. {
  334. topicListPageResult.GroupName = group != null ? group.Name : "";
  335. topicListPageResult.DepartmentName = department != null ? department.Name : "";
  336. topicListPageResult.DepartmentId = department != null ? department.Id : 0;
  337. topicListPageResult.UserName = user != null ? user.Name : "";
  338. topicListPageResult.AvatarUrl = user != null ? StringUtils.AddDomainMin(user.AvatarUrl) : "";
  339. return topicListPageResult;
  340. }, new { page = (request.Page - 1) * request.PerPage, pageSize = request.PerPage }, splitOn: "Id,Name,Name,Id");
  341. result.Total = await connection.ExecuteScalarAsync<int>(countSql);
  342. return result;
  343. }
  344. /// <summary>
  345. /// 根据小组ID获取话题数量
  346. /// </summary>
  347. /// <param name="groupId"></param>
  348. /// <returns></returns>
  349. public async Task<int> GetGroupTopicCountAsync(int groupId)
  350. {
  351. return await _repository.CountAsync(Q.Where(nameof(Entity.Topic.Topic.GroupId), groupId));
  352. }
  353. /// <summary>
  354. /// 根据ID获取话题
  355. /// </summary>
  356. /// <param name="id"></param>
  357. /// <returns></returns>
  358. public async Task<Entity.Topic.Topic> GetAsync(int id)
  359. {
  360. return await _repository.GetAsync(id);
  361. }
  362. public async Task<int> CountAsync(Query query)
  363. {
  364. return await _repository.CountAsync(query);
  365. }
  366. public async Task<IEnumerable<Entity.Topic.Topic>> GetAllAsync(Query query)
  367. {
  368. return await _repository.GetAllAsync(query);
  369. }
  370. public async Task<int> InsertAsync(Entity.Topic.Topic topic)
  371. {
  372. return await _repository.InsertAsync(topic);
  373. }
  374. public async Task<bool> DeleteAsync(int id)
  375. {
  376. return await _repository.DeleteAsync(id);
  377. }
  378. public async Task<bool> UpdateAsync(Entity.Topic.Topic topic)
  379. {
  380. return await _repository.UpdateAsync(topic);
  381. }
  382. /// <summary>
  383. /// 执行话题
  384. /// </summary>
  385. /// <returns></returns>
  386. public async Task<List<JobTopicResult>> ExecuteTopic()
  387. {
  388. 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";
  389. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  390. var database = new Database(databaseType, _connectionString);
  391. var connection = database.GetConnection();
  392. var result = await connection.QueryAsync<JobTopicResult, TopicAddressee, User, User, JobTopicResult>(sql, (jobTopicResult, topicAddressee, user, userDto) =>
  393. {
  394. jobTopicResult.UserId = topicAddressee.UserId;
  395. jobTopicResult.Name = user.Name;
  396. jobTopicResult.AvatarUrl = userDto.AvatarUrl;
  397. jobTopicResult.TopicAddresseeId = topicAddressee.Id;
  398. return jobTopicResult;
  399. }, splitOn: "UserId,Name,AvatarUrl");
  400. connection.Dispose();
  401. return result.ToList();
  402. }
  403. /// <summary>
  404. /// 新版 获取笔记话题列表
  405. /// </summary>
  406. /// <param name="request"></param>
  407. /// <returns></returns>
  408. public async Task<PagedList<TopicListPageResult>> GetTopicPage(TopicPageSearchRequest request)
  409. {
  410. var result = new PagedList<TopicListPageResult>();
  411. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  412. var database = new Database(databaseType, _connectionString);
  413. var connection = database.GetConnection();
  414. result.Items = await connection.QueryAsync<TopicListPageResult, User, TopicListPageResult>(AssembleSql(request), (topicListPageResult, user) =>
  415. {
  416. topicListPageResult.UserName = user != null ? user.Name : "";
  417. topicListPageResult.AvatarUrl = user != null ? StringUtils.AddDomainMin(user.AvatarUrl) : "";
  418. topicListPageResult.FolderResult.Id = topicListPageResult.FolderId;
  419. topicListPageResult.FolderResult.FolderName = topicListPageResult.FolderName;
  420. return topicListPageResult;
  421. }, splitOn: "Id,Name");
  422. result.Total = await connection.ExecuteScalarAsync<int>(AssembleSqlCount(request));
  423. connection.Dispose();
  424. return result;
  425. }
  426. public async Task<PagedList<TopicListPageResult>> GetTopicByGroupAsync(TopicPageSearchRequest request)
  427. {
  428. var sql = $@"SELECT
  429. a.*,
  430. (SELECT
  431. COUNT(1)
  432. FROM
  433. tede_analyze
  434. WHERE
  435. TypeValue = 3 AND SourceId = a.Id
  436. AND AnalyzeType = 1) AS PraiseCount,
  437. (SELECT
  438. COUNT(1)
  439. FROM
  440. tede_analyze
  441. WHERE
  442. UserId = {request.UserId} AND TypeValue = 3
  443. AND SourceId = a.Id
  444. AND AnalyzeType = 1
  445. LIMIT 0 , 1) AS IsPraise,
  446. (SELECT
  447. COUNT(1)
  448. FROM
  449. tede_comment
  450. WHERE
  451. ArticleId = a.Id AND TypeValue = 3
  452. AND Pid = 0) AS CommentCount,
  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) AS RetransmissionCount,
  461. (SELECT
  462. COUNT(1)
  463. FROM
  464. tede_analyze
  465. WHERE
  466. UserId = {request.UserId} AND TypeValue = 3
  467. AND SourceId = a.Id
  468. AND AnalyzeType = 4
  469. LIMIT 0 , 1) AS IsRetransmission,
  470. (SELECT
  471. COUNT(1)
  472. FROM
  473. tede_analyze
  474. WHERE
  475. UserId = {request.UserId} AND TypeValue = 3
  476. AND SourceId = a.Id
  477. AND AnalyzeType = 3
  478. LIMIT 0 , 1) AS IsCollect,
  479. b.Id as GroupId,
  480. b.Name,
  481. c.Name,
  482. c.AvatarUrl
  483. FROM
  484. tede_topic a
  485. INNER JOIN
  486. tede_group b ON a.GroupId = b.id
  487. INNER JOIN
  488. tede_user c ON a.UserId = c.Id
  489. WHERE 1=1 ";
  490. if (request.TopicGroupIds.Count > 0)
  491. {
  492. var groupStr = "(";
  493. foreach (var item in request.TopicGroupIds)
  494. {
  495. groupStr += $"{item},";
  496. }
  497. groupStr = groupStr.Remove(groupStr.Length - 1, 1);
  498. groupStr += ")";
  499. sql += $@" and a.GroupId IN {groupStr}";
  500. }
  501. else
  502. sql += $@" and a.GroupId > 0";
  503. if (request.IsAdmin)
  504. {
  505. sql += $@" AND a.UserId={request.UserId}";
  506. }
  507. else
  508. {
  509. sql += $@" AND b.Id IN (SELECT
  510. GroupId
  511. FROM
  512. tede_group_user
  513. WHERE
  514. UserId = {request.UserId})";
  515. }
  516. if (!string.IsNullOrWhiteSpace(request.Keyword))
  517. {
  518. sql += $@" AND (c.Name LIKE '%{request.Keyword}%'
  519. OR a.Title LIKE '%{request.Keyword}%'
  520. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  521. }
  522. if (!string.IsNullOrEmpty(request.Sort))
  523. sql += $@" ORDER BY a.ReadCount DESC";
  524. else
  525. sql += $@" ORDER BY a.CreatedDate DESC";
  526. sql += $@" LIMIT {(request.Page - 1) * request.PerPage} , {request.PerPage}";
  527. var result = new PagedList<TopicListPageResult>();
  528. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  529. var database = new Database(databaseType, _connectionString);
  530. var connection = database.GetConnection();
  531. result.Items = await connection.QueryAsync<TopicListPageResult, Entity.Group, User, TopicListPageResult>(sql, (topicListPageResult, group, user) =>
  532. {
  533. topicListPageResult.AvatarUrl = user != null ? StringUtils.AddDomainMin(user.AvatarUrl) : "";
  534. topicListPageResult.GroupName = group != null ? group.Name : "";
  535. topicListPageResult.UserName = user != null ? user.Name : "";
  536. return topicListPageResult;
  537. }, splitOn: "Id,GroupId,Name");
  538. sql = $@"SELECT
  539. count(1)
  540. FROM
  541. tede_topic a
  542. INNER JOIN
  543. tede_group b ON a.GroupId = b.id
  544. INNER JOIN
  545. tede_user c ON a.UserId = c.Id
  546. WHERE 1=1 ";
  547. if (request.TopicGroupIds.Count > 0)
  548. {
  549. var groupStr = "(";
  550. foreach (var item in request.TopicGroupIds)
  551. {
  552. groupStr += $"{item},";
  553. }
  554. groupStr = groupStr.Remove(groupStr.Length - 1, 1);
  555. groupStr += ")";
  556. sql += $@" and a.GroupId IN {groupStr}";
  557. }
  558. else
  559. sql += $@" and a.GroupId > 0";
  560. if (request.IsAdmin)
  561. {
  562. sql += $@" AND a.UserId={request.UserId}";
  563. }
  564. else
  565. {
  566. sql += $@" AND b.Id IN (SELECT
  567. GroupId
  568. FROM
  569. tede_group_user
  570. WHERE
  571. UserId = {request.UserId})";
  572. }
  573. if (!string.IsNullOrWhiteSpace(request.Keyword))
  574. {
  575. sql += $@" AND (c.Name LIKE '%{request.Keyword}%'
  576. OR a.Title LIKE '%{request.Keyword}%'
  577. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  578. }
  579. result.Total = await connection.ExecuteScalarAsync<int>(sql);
  580. return result;
  581. }
  582. public string AssembleSql(TopicPageSearchRequest request)
  583. {
  584. var topicTypeValue = GxPress.EnumConst.AllTypeConst.Note.GetHashCode();
  585. var sql = $@"SELECT
  586. a.*,
  587. (SELECT
  588. FolderName
  589. FROM
  590. tede_middle
  591. WHERE
  592. id = a.FolderId) AS FolderName,
  593. (SELECT
  594. COUNT(1)
  595. FROM
  596. tede_analyze
  597. WHERE
  598. TypeValue = {topicTypeValue}
  599. AND SourceId = a.Id
  600. AND AnalyzeType = 1) AS PraiseCount,
  601. (SELECT
  602. COUNT(1)
  603. FROM
  604. tede_analyze
  605. WHERE
  606. UserId = {request.UserId} AND TypeValue = {topicTypeValue}
  607. AND SourceId = a.Id
  608. AND AnalyzeType = 1
  609. LIMIT 0 , 1) AS IsPraise,
  610. (SELECT
  611. COUNT(1)
  612. FROM
  613. tede_comment
  614. WHERE
  615. ArticleId = a.Id AND TypeValue = {topicTypeValue}
  616. AND Pid = 0) AS CommentCount,
  617. (SELECT
  618. COUNT(1)
  619. FROM
  620. tede_analyze
  621. WHERE
  622. UserId = {request.UserId} AND TypeValue = {topicTypeValue}
  623. AND SourceId = a.Id
  624. AND AnalyzeType = 4) AS RetransmissionCount,
  625. (SELECT
  626. COUNT(1)
  627. FROM
  628. tede_analyze
  629. WHERE
  630. UserId = {request.UserId} AND TypeValue = {topicTypeValue}
  631. AND SourceId = a.Id
  632. AND AnalyzeType = 4
  633. LIMIT 0 , 1) AS IsRetransmission,
  634. (SELECT
  635. COUNT(1)
  636. FROM
  637. tede_analyze
  638. WHERE
  639. UserId = {request.UserId} AND TypeValue = {topicTypeValue}
  640. AND SourceId = a.Id
  641. AND AnalyzeType = 3
  642. LIMIT 0 , 1) AS IsCollect,
  643. b.Name, b.AvatarUrl
  644. FROM
  645. tede_note a
  646. INNER JOIN
  647. tede_user b ON a.UserId = b.Id
  648. INNER JOIN
  649. tede_middle c ON c.MiddleId = a.Id
  650. WHERE
  651. c.FolderType = {topicTypeValue} AND a.IsTopic = 1
  652. AND (a.FolderId IN (SELECT
  653. MiddleId
  654. FROM
  655. tede_folder_user
  656. WHERE
  657. MiddleId = a.FolderId AND UserId = {request.UserId})
  658. OR a.UserId IN (SELECT
  659. Id
  660. FROM
  661. tede_user
  662. WHERE
  663. 1 = (SELECT
  664. RoleId
  665. FROM
  666. tede_middle
  667. WHERE
  668. id = a.FolderId) and Id=a.UserId
  669. ))";
  670. if (request.TopicGroupIds.Count > 0)
  671. {
  672. var topicGroupId = "";
  673. foreach (var item in request.TopicGroupIds)
  674. {
  675. topicGroupId += $"{item},";
  676. }
  677. topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
  678. sql += $@" AND a.UserId IN (SELECT
  679. UserId
  680. FROM
  681. tede_topic_group_user
  682. WHERE
  683. TopicGroupId IN ({topicGroupId}))";
  684. }
  685. if (!string.IsNullOrWhiteSpace(request.Keyword))
  686. {
  687. sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
  688. OR a.Title LIKE '%{request.Keyword}%'
  689. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  690. }
  691. sql += $@" ORDER BY a.CreatedDate DESC
  692. LIMIT {(request.Page - 1) * request.PerPage} , {request.PerPage}";
  693. return sql;
  694. }
  695. public string AssembleSqlCount(TopicPageSearchRequest request)
  696. {
  697. var sql = $@"SELECT count(1) FROM
  698. tede_note a
  699. INNER JOIN
  700. tede_user b ON a.UserId = b.Id
  701. INNER JOIN
  702. tede_middle c ON c.MiddleId = a.Id
  703. WHERE
  704. c.FolderType = 4 AND a.IsTopic = 1
  705. AND (a.FolderId IN (SELECT
  706. MiddleId
  707. FROM
  708. tede_folder_user
  709. WHERE
  710. MiddleId = a.FolderId AND UserId = {request.UserId})
  711. OR a.UserId IN (SELECT
  712. Id
  713. FROM
  714. tede_user
  715. WHERE
  716. 1 = (SELECT
  717. RoleId
  718. FROM
  719. tede_middle
  720. WHERE
  721. id = a.FolderId)
  722. AND id = a.UserId))";
  723. if (request.TopicGroupIds.Count > 0)
  724. {
  725. var topicGroupId = "";
  726. foreach (var item in request.TopicGroupIds)
  727. {
  728. topicGroupId += $"{item},";
  729. }
  730. topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
  731. sql += $@" AND a.UserId IN (SELECT
  732. UserId
  733. FROM
  734. tede_topic_group_user
  735. WHERE
  736. TopicGroupId IN ({topicGroupId}))";
  737. }
  738. if (!string.IsNullOrWhiteSpace(request.Keyword))
  739. {
  740. sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
  741. OR a.Title LIKE '%{request.Keyword}%'
  742. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  743. }
  744. return sql;
  745. }
  746. }
  747. }