TopicService.cs 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using System.Transactions;
  6. using AutoMapper;
  7. using GxPress.Common.Tools;
  8. using GxPress.Entity.Topic;
  9. using GxPress.Repository.Interface;
  10. using GxPress.Request.App.Topic;
  11. using GxPress.Service.Interface.Topic;
  12. using Datory;
  13. using GxPress.Common.Exceptions;
  14. using GxPress.Common.Page;
  15. using GxPress.Repository.Interface.Topic;
  16. using GxPress.Result;
  17. using GxPress.Result.App.Topic;
  18. using GxPress.Service.Interface.Note;
  19. using Newtonsoft.Json;
  20. using GxPress.Repository.Interface.Visit;
  21. using GxPress.Service.Interface.Visit;
  22. using GxPress.Service.Interface.Analyze;
  23. using GxPress.Repository.Interface.DepartmentUser;
  24. using GxPress.EnumConst;
  25. using GxPress.Repository.Interface.Note;
  26. using GxPress.Result.Department;
  27. namespace GxPress.Service.Implement.Topic
  28. {
  29. public partial class TopicService : ITopicService
  30. {
  31. private readonly ITopicRepository _topicRepository;
  32. private readonly IUserRepository _userRepository;
  33. private readonly IDepartmentUserRepository departmentUserRepository;
  34. private readonly ITopicAddresseeRepository _topicAddresseeRepository;
  35. private readonly IDepartmentRepository _departmentRepository;
  36. private readonly ITopicGroupRepository _topicGroupRepository;
  37. private readonly ITopicGroupUserRepository _topicGroupUserRepository;
  38. private readonly IAnalyzeService _analyzeService;
  39. private readonly ICommentRepository _commentRepository;
  40. private readonly IMapper _mapper;
  41. private readonly IGroupUserRepository _groupUserRepository;
  42. private readonly IFolderUserRepository _folderUserRepository;
  43. private readonly INoteService _noteService;
  44. private readonly IMiddleRepository _middleRepository;
  45. private readonly IVisitRepository _visitRepository;
  46. private readonly IVisitService _visitService;
  47. private readonly INoteRepository noteRepository;
  48. private readonly IGroupRepository groupRepository;
  49. public TopicService(ITopicRepository topicRepository, IUserRepository userRepository,
  50. ITopicAddresseeRepository topicAddresseeRepository,
  51. ITopicGroupRepository topicGroupRepository,
  52. ITopicGroupUserRepository topicGroupUserRepository, IAnalyzeService analyzeService,
  53. ICommentRepository commentRepository, IMapper mapper, IDepartmentRepository departmentRepository,
  54. IGroupUserRepository groupUserRepository, IFolderUserRepository folderUserRepository,
  55. INoteService noteService, IMiddleRepository middleRepository,
  56. IVisitRepository visitRepository, IVisitService visitService,
  57. IDepartmentUserRepository departmentUserRepository,
  58. INoteRepository noteRepository,
  59. IGroupRepository groupRepository)
  60. {
  61. _topicRepository = topicRepository;
  62. _userRepository = userRepository;
  63. _topicAddresseeRepository = topicAddresseeRepository;
  64. _topicGroupRepository = topicGroupRepository;
  65. _topicGroupUserRepository = topicGroupUserRepository;
  66. _analyzeService = analyzeService;
  67. _commentRepository = commentRepository;
  68. _departmentRepository = departmentRepository;
  69. _mapper = mapper;
  70. _groupUserRepository = groupUserRepository;
  71. _folderUserRepository = folderUserRepository;
  72. _noteService = noteService;
  73. _middleRepository = middleRepository;
  74. _visitRepository = visitRepository;
  75. _visitService = visitService;
  76. this.departmentUserRepository = departmentUserRepository;
  77. this.noteRepository = noteRepository;
  78. this.groupRepository = groupRepository;
  79. }
  80. /// <summary>
  81. /// 根据GroupId删除
  82. /// </summary>
  83. /// <param name="ids"></param>
  84. /// <returns></returns>
  85. public async Task<bool> DeleteTopicGroupAsync(List<int> ids)
  86. {
  87. try
  88. {
  89. using (TransactionScope transactionScope = new TransactionScope())
  90. {
  91. await _topicGroupRepository.DeleteAsync(ids);
  92. await _topicGroupUserRepository.DeleteGroupIdAsync(ids);
  93. transactionScope.Complete();
  94. }
  95. }
  96. catch (Exception e)
  97. {
  98. Console.WriteLine(e);
  99. throw;
  100. }
  101. return false;
  102. }
  103. /// <summary>
  104. ///最新 小组话题分页列表
  105. /// </summary>
  106. /// <param name="request"></param>
  107. /// <returns></returns>
  108. public async Task<PagedList<TopicListPageResult>> GetGroupTopicPageAsync(TopicDetailListRequest request)
  109. {
  110. var result = new PagedList<TopicListPageResult>();
  111. if (request.UserId <= 0)
  112. result = await _topicRepository.GetAnonymousGroupTopicPageAsync(request);
  113. else
  114. result = await _topicRepository.GetGroupTopicPageAsync(request);
  115. //获取数量
  116. // result.Total = 10;
  117. foreach (var item in result.Items)
  118. {
  119. if (string.IsNullOrEmpty(item.Title))
  120. item.Title = string.Empty;
  121. if (string.IsNullOrWhiteSpace(item.UserName))
  122. {
  123. item.Content = "[]";
  124. item.Data = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  125. item.Content = "";
  126. continue;
  127. }
  128. if (string.IsNullOrWhiteSpace(item.Content))
  129. item.Content = "[]";
  130. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  131. foreach (var contentJsonDataItem in contentJsonData)
  132. contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
  133. if (contentJsonData.Count == 0)
  134. item.DataType = 1;
  135. item.Content = "";
  136. if (contentJsonData.Count > 0)
  137. {
  138. var imgData = new List<ContentJsonData>();
  139. var FileData = new List<ContentJsonData>();
  140. var forCount = 1;
  141. var firstContent = string.Empty;
  142. foreach (var jsonData in contentJsonData)
  143. {
  144. if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount == 1)
  145. //文本
  146. firstContent = jsonData.Text;
  147. else if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount > 1)
  148. //文本
  149. continue;
  150. //图片
  151. else if (jsonData.Type == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
  152. {
  153. if (imgData.Count >= 9)
  154. break;
  155. imgData.Add(jsonData);
  156. }
  157. //附件
  158. else
  159. {
  160. FileData.Add(jsonData);
  161. break;
  162. }
  163. forCount++;
  164. }
  165. item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
  166. if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
  167. else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
  168. else item.DataType = 1;
  169. var contType = new List<int> { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
  170. item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
  171. }
  172. if (item.Data == null || item.Data.Count == 0)
  173. item.Data = new List<ContentJsonData>();
  174. }
  175. return result;
  176. }
  177. /// <summary>
  178. ///最新 小组话题分页列表 匿名用户
  179. /// </summary>
  180. /// <param name="request"></param>
  181. /// <returns></returns>
  182. public async Task<PagedList<TopicListPageResult>> GetAnonymousGroupTopicPageAsync(TopicDetailListRequest request)
  183. {
  184. var result = await _topicRepository.GetAnonymousGroupTopicPageAsync(request);
  185. //获取数量
  186. // result.Total = 10;
  187. foreach (var item in result.Items)
  188. {
  189. if (string.IsNullOrEmpty(item.Title))
  190. item.Title = string.Empty;
  191. if (string.IsNullOrWhiteSpace(item.UserName))
  192. {
  193. item.Content = "[]";
  194. item.Data = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  195. item.Content = "";
  196. continue;
  197. }
  198. if (string.IsNullOrWhiteSpace(item.Content))
  199. item.Content = "[]";
  200. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  201. foreach (var contentJsonDataItem in contentJsonData)
  202. contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
  203. if (contentJsonData.Count == 0)
  204. item.DataType = 1;
  205. item.Content = "";
  206. if (contentJsonData.Count > 0)
  207. {
  208. var imgData = new List<ContentJsonData>();
  209. var FileData = new List<ContentJsonData>();
  210. var forCount = 1;
  211. var firstContent = string.Empty;
  212. foreach (var jsonData in contentJsonData)
  213. {
  214. if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount == 1)
  215. //文本
  216. firstContent = jsonData.Text;
  217. else if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount > 1)
  218. //文本
  219. continue;
  220. //图片
  221. else if (jsonData.Type == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
  222. {
  223. if (imgData.Count >= 9)
  224. break;
  225. imgData.Add(jsonData);
  226. }
  227. //附件
  228. else
  229. {
  230. FileData.Add(jsonData);
  231. break;
  232. }
  233. forCount++;
  234. }
  235. item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
  236. if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
  237. else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
  238. else item.DataType = 1;
  239. var contType = new List<int> { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
  240. item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
  241. }
  242. if (item.Data == null || item.Data.Count == 0)
  243. item.Data = new List<ContentJsonData>();
  244. }
  245. return result;
  246. }
  247. public async Task<PagedList<TopicListPageResult>> GetTopicByGroupAsync(TopicPageSearchRequest request)
  248. {
  249. var result = await _topicRepository.GetTopicByGroupAsync(request);
  250. //获取数量
  251. // result.Total = 10;
  252. foreach (var item in result.Items)
  253. {
  254. if (string.IsNullOrWhiteSpace(item.UserName))
  255. {
  256. item.Content = "[]";
  257. item.Data = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  258. item.Content = "";
  259. continue;
  260. }
  261. if (string.IsNullOrWhiteSpace(item.Content))
  262. item.Content = "[]";
  263. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  264. foreach (var contentJsonDataItem in contentJsonData)
  265. contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
  266. if (contentJsonData.Count == 0)
  267. item.DataType = 1;
  268. item.Content = "";
  269. if (contentJsonData.Count > 0)
  270. {
  271. var imgData = new List<ContentJsonData>();
  272. var FileData = new List<ContentJsonData>();
  273. var forCount = 1;
  274. var firstContent = string.Empty;
  275. foreach (var jsonData in contentJsonData)
  276. {
  277. if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount == 1)
  278. //文本
  279. firstContent = jsonData.Text;
  280. else if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount > 1)
  281. //文本
  282. continue;
  283. //图片
  284. else if (jsonData.Type == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
  285. {
  286. if (imgData.Count > 9)
  287. break;
  288. imgData.Add(jsonData);
  289. }
  290. //附件
  291. else
  292. {
  293. FileData.Add(jsonData);
  294. break;
  295. }
  296. forCount++;
  297. }
  298. item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
  299. if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
  300. else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
  301. else item.DataType = 1;
  302. var contType = new List<int> { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
  303. item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
  304. }
  305. if (item.Data == null || item.Data.Count == 0)
  306. item.Data = new List<ContentJsonData>();
  307. }
  308. return result;
  309. }
  310. public async Task<string> GetTopicPageSqlAsync(TopicPageSearchRequest request)
  311. {
  312. var topicTypeValue = GxPress.EnumConst.AllTypeConst.TopicNote.GetHashCode();
  313. var sql = $@"SELECT
  314. a.Id,a.Title,a.UserId,a.Content,a.CreatedDate,a.IsTopic,a.ReadCount,c.ParentId,
  315. (SELECT
  316. FolderName
  317. FROM
  318. tede_middle
  319. WHERE
  320. id = c.ParentId and IsDelete=0) AS FolderName,
  321. (SELECT
  322. COUNT(1)
  323. FROM
  324. tede_analyze
  325. WHERE
  326. TypeValue = {topicTypeValue}
  327. AND SourceId = a.Id
  328. AND AnalyzeType = 1) AS PraiseCount,
  329. (SELECT
  330. COUNT(1)
  331. FROM
  332. tede_analyze
  333. WHERE
  334. UserId = {request.UserId} AND TypeValue = {topicTypeValue}
  335. AND SourceId = a.Id
  336. AND AnalyzeType = 1
  337. LIMIT 0 , 1) AS IsPraise,
  338. (SELECT
  339. COUNT(1)
  340. FROM
  341. tede_comment
  342. WHERE
  343. ArticleId = a.Id AND TypeValue = {topicTypeValue}
  344. AND Pid = 0) AS CommentCount,
  345. (SELECT
  346. COUNT(1)
  347. FROM
  348. tede_analyze
  349. WHERE
  350. UserId = {request.UserId} AND TypeValue = {topicTypeValue}
  351. AND SourceId = a.Id
  352. AND AnalyzeType = 4) AS RetransmissionCount,
  353. (SELECT
  354. COUNT(1)
  355. FROM
  356. tede_analyze
  357. WHERE
  358. UserId = {request.UserId} AND TypeValue = {topicTypeValue}
  359. AND SourceId = a.Id
  360. AND AnalyzeType = 4
  361. LIMIT 0 , 1) AS IsRetransmission,
  362. (SELECT
  363. COUNT(1)
  364. FROM
  365. tede_analyze
  366. WHERE
  367. UserId = {request.UserId} AND TypeValue = {topicTypeValue}
  368. AND SourceId = a.Id
  369. AND AnalyzeType = 3
  370. LIMIT 0 , 1) AS IsCollect,
  371. b.Name as UserName, b.AvatarUrl
  372. FROM
  373. tede_note a
  374. INNER JOIN
  375. tede_user b ON a.UserId = b.Id
  376. INNER JOIN
  377. tede_middle c ON c.MiddleId = a.Id
  378. WHERE
  379. c.FolderType = {topicTypeValue} AND a.IsTopic = 1 and c.IsDelete=0 and a.IsDraft=0
  380. ";
  381. if (request.UserId <= 0)
  382. {
  383. sql += $@" AND c.ParentId IN (SELECT
  384. id
  385. FROM
  386. tede_middle
  387. WHERE
  388. FolderType = {topicTypeValue} AND AttributeValue = 2
  389. AND RoleId = 1)";
  390. }
  391. else
  392. {
  393. sql += $@" AND (a.userId={request.UserId} or c.ParentId IN (SELECT
  394. MiddleId
  395. FROM
  396. tede_folder_user
  397. WHERE
  398. MiddleId = c.ParentId AND UserId = {request.UserId})
  399. OR a.UserId IN (SELECT
  400. Id
  401. FROM
  402. tede_user
  403. WHERE
  404. 1 = (SELECT
  405. RoleId
  406. FROM
  407. tede_middle
  408. WHERE
  409. id = c.ParentId) and Id=a.UserId
  410. ))";
  411. }
  412. if (request.TopicGroupIds.Count > 0)
  413. {
  414. var topicGroupId = "";
  415. foreach (var item in request.TopicGroupIds)
  416. {
  417. if (item <= 0)
  418. continue;
  419. topicGroupId += $"{item},";
  420. }
  421. if (!string.IsNullOrEmpty(topicGroupId))
  422. {
  423. topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
  424. sql += $@" AND a.UserId IN (SELECT
  425. UserId
  426. FROM
  427. tede_topic_group_user
  428. WHERE
  429. TopicGroupId IN ({topicGroupId}))";
  430. }
  431. }
  432. if (request.TopicGroupIds.Count > 0)
  433. {
  434. //我的
  435. if (request.TopicGroupIds.Contains(TopicNotoGropConst.My.GetHashCode()))
  436. {
  437. sql += $" and a.UserId={request.UserId} ";
  438. }
  439. //同单位
  440. if (request.TopicGroupIds.Contains(TopicNotoGropConst.Work.GetHashCode()))
  441. {
  442. if (request.UserId > 0)
  443. {
  444. var departmentIds = await departmentUserRepository.GetDepartmentIdsAsync(request.UserId);
  445. var departments = new List<DepartmentResult>();
  446. foreach (var departmentId in departmentIds)
  447. {
  448. await _departmentRepository.GetDepartmentById(departmentId, departments);
  449. }
  450. if (departments.Count > 0)
  451. {
  452. var userIds = await departmentUserRepository.GetUserIdsByDepartmentIdsAsync(departments.Select(n => n.Id));
  453. if (userIds.Count() > 0)
  454. {
  455. var str = "";
  456. foreach (var item in userIds)
  457. str += $"{item},";
  458. str = str.Remove(str.Length - 1, 1);
  459. sql += $" and a.UserId in({str})";
  460. }
  461. }
  462. }
  463. }
  464. }
  465. if (!string.IsNullOrWhiteSpace(request.Keyword))
  466. {
  467. sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
  468. OR a.Title LIKE '%{request.Keyword}%'
  469. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  470. }
  471. sql += $@" ORDER BY a.CreatedDate DESC
  472. LIMIT {(request.Page - 1) * request.PerPage} , {request.PerPage}";
  473. return sql;
  474. }
  475. public async Task<string> AssembleSqlCount(TopicPageSearchRequest request)
  476. {
  477. var topicTypeValue = GxPress.EnumConst.AllTypeConst.TopicNote.GetHashCode();
  478. var sql = $@"SELECT count(1) FROM
  479. tede_note a
  480. INNER JOIN
  481. tede_user b ON a.UserId = b.Id
  482. INNER JOIN
  483. tede_middle c ON c.MiddleId = a.Id
  484. WHERE
  485. c.FolderType = {topicTypeValue} AND a.IsTopic = 1 and c.IsDelete=0 and a.IsDraft=0";
  486. if (request.UserId <= 0)
  487. {
  488. sql += $@" AND c.ParentId IN (SELECT
  489. id
  490. FROM
  491. tede_middle
  492. WHERE
  493. FolderType = {topicTypeValue} AND AttributeValue = 2
  494. AND RoleId = 1)";
  495. }
  496. else
  497. {
  498. sql += $@" AND (a.userId={request.UserId} or c.ParentId IN (SELECT
  499. MiddleId
  500. FROM
  501. tede_folder_user
  502. WHERE
  503. MiddleId = c.ParentId AND UserId = {request.UserId})
  504. OR a.UserId IN (SELECT
  505. Id
  506. FROM
  507. tede_user
  508. WHERE
  509. 1 = (SELECT
  510. RoleId
  511. FROM
  512. tede_middle
  513. WHERE
  514. id = c.ParentId) and Id=a.UserId
  515. ))";
  516. }
  517. if (request.TopicGroupIds.Count > 0)
  518. {
  519. var topicGroupId = "";
  520. foreach (var item in request.TopicGroupIds)
  521. {
  522. if (item <= 0)
  523. continue;
  524. topicGroupId += $"{item},";
  525. }
  526. if (!string.IsNullOrEmpty(topicGroupId))
  527. {
  528. topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
  529. sql += $@" AND a.UserId IN (SELECT
  530. UserId
  531. FROM
  532. tede_topic_group_user
  533. WHERE
  534. TopicGroupId IN ({topicGroupId}))";
  535. }
  536. }
  537. if (request.TopicGroupIds.Count > 0)
  538. {
  539. //我的
  540. if (request.TopicGroupIds.Contains(TopicNotoGropConst.My.GetHashCode()))
  541. {
  542. sql += $" and a.UserId={request.UserId} ";
  543. }
  544. //同单位
  545. if (request.TopicGroupIds.Contains(TopicNotoGropConst.Work.GetHashCode()))
  546. {
  547. if (request.UserId > 0)
  548. {
  549. var departmentIds = await departmentUserRepository.GetDepartmentIdsAsync(request.UserId);
  550. var departments = new List<DepartmentResult>();
  551. foreach (var departmentId in departmentIds)
  552. {
  553. await _departmentRepository.GetDepartmentById(departmentId, departments);
  554. }
  555. if (departments.Count > 0)
  556. {
  557. var userIds = await departmentUserRepository.GetUserIdsByDepartmentIdsAsync(departments.Select(n => n.Id));
  558. if (userIds.Count() > 0)
  559. {
  560. var str = "";
  561. foreach (var item in userIds)
  562. str += $"{item},";
  563. str = str.Remove(str.Length - 1, 1);
  564. sql += $" and a.UserId in({str})";
  565. }
  566. }
  567. }
  568. }
  569. }
  570. if (!string.IsNullOrWhiteSpace(request.Keyword))
  571. {
  572. sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
  573. OR a.Title LIKE '%{request.Keyword}%'
  574. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  575. }
  576. return sql;
  577. }
  578. /// <summary>
  579. /// 新版 获取笔记话题列表
  580. /// </summary>
  581. /// <param name="request"></param>
  582. /// <returns></returns>
  583. public async Task<PagedList<TopicListPageResult>> GetTopicPageAsync(TopicPageSearchRequest request)
  584. {
  585. var result = await _topicRepository.GetTopicPage(request, await GetTopicPageSqlAsync(request), await AssembleSqlCount(request));
  586. if (request.ParentId > 0)
  587. {
  588. var middle = await _middleRepository.GetMiddleAsync(request.ParentId);
  589. result.RoleId = middle != null ? middle.RoleId : 0;
  590. result.ParentId = middle.ParentId;
  591. }
  592. //获取数量
  593. // result.Total = 10;
  594. foreach (var item in result.Items)
  595. {
  596. // if (string.IsNullOrEmpty(item.FolderName))
  597. // item.FolderName = "根目录";
  598. if (string.IsNullOrWhiteSpace(item.UserName))
  599. {
  600. item.Content = "[]";
  601. item.Data = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  602. item.Content = "";
  603. continue;
  604. }
  605. if (string.IsNullOrWhiteSpace(item.Content))
  606. item.Content = "[]";
  607. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  608. foreach (var contentJsonDataItem in contentJsonData)
  609. contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
  610. if (contentJsonData.Count == 0)
  611. item.DataType = 1;
  612. item.Content = "";
  613. if (contentJsonData.Count > 0)
  614. {
  615. var imgData = new List<ContentJsonData>();
  616. var FileData = new List<ContentJsonData>();
  617. var forCount = 1;
  618. var firstContent = string.Empty;
  619. foreach (var jsonData in contentJsonData)
  620. {
  621. if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount == 1)
  622. //文本
  623. firstContent = jsonData.Text;
  624. else if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && firstContent.Length < 50)
  625. //文本
  626. firstContent += jsonData.Text;
  627. //图片
  628. else if (jsonData.TypeValue == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
  629. {
  630. if (imgData.Count > 9)
  631. break;
  632. imgData.Add(jsonData);
  633. }
  634. else if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode())
  635. continue;
  636. //附件
  637. else
  638. {
  639. FileData.Add(jsonData);
  640. break;
  641. }
  642. forCount++;
  643. }
  644. item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
  645. if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
  646. else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
  647. else item.DataType = 1;
  648. var contType = new List<int> { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
  649. item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
  650. }
  651. if (item.Data == null || item.Data.Count == 0)
  652. item.Data = new List<ContentJsonData>();
  653. if (item.Title == null)
  654. item.Title = string.Empty;
  655. }
  656. //查询系统默认的公开文件夹是否存在
  657. var query = Q.NewQuery();
  658. query.Where(nameof(Entity.Middle.Middle.UserId), request.UserId);
  659. query.Where(nameof(Entity.Middle.Middle.AttributeValue), 2);
  660. query.Where(nameof(Entity.Middle.Middle.FolderType), AllTypeConst.TopicNote.GetHashCode());
  661. query.Where(nameof(Entity.Middle.Middle.IsSystemDefault), true);
  662. var isExists = await _middleRepository.ExistsAsync(query);
  663. if (!isExists)
  664. {
  665. //生成系统默认的公开文件夹
  666. await _middleRepository.InsertAsync(new Entity.Middle.Middle
  667. {
  668. Id = 0,
  669. FolderName = "公开",
  670. AttributeValue = 2,
  671. UserId = request.UserId,
  672. FolderType = AllTypeConst.TopicNote.GetHashCode(),
  673. RoleId = 1,
  674. IsSystemDefault = true
  675. });
  676. }
  677. result.IsDraft = await noteRepository.IsExistsDraftAsync(request.UserId, true);
  678. result.DraftId = await noteRepository.GetNoteIdByDraftAsync(request.UserId, true);
  679. return result;
  680. }
  681. /// <summary>
  682. /// APP列表显示用
  683. /// </summary>
  684. /// <param name="contentJsonDataList"></param>
  685. /// <returns></returns>
  686. public List<ContentJsonData> GetListAsync(List<ContentJsonData> contentJsonDataList)
  687. {
  688. var result = new List<ContentJsonData>();
  689. if (contentJsonDataList.Count > 0)
  690. {
  691. //查询文本
  692. var txtType = contentJsonDataList.FirstOrDefault(n => n.Type == 1);
  693. if (txtType != null)
  694. result.Add(txtType);
  695. //拼接图片
  696. var imgType = contentJsonDataList.FindAll(n => n.Type == 2);
  697. if (imgType.Any())
  698. {
  699. foreach (var item in imgType)
  700. {
  701. //判断图片数量
  702. if (result.Count(n => n.Type == 2) > 8)
  703. break;
  704. result.Add(item);
  705. }
  706. }
  707. else
  708. {
  709. var values = new List<int> { 1, 2 };
  710. var list = contentJsonDataList.FindAll(n => !values.Contains(n.Type));
  711. if (list.Any())
  712. result.Add(list.FirstOrDefault());
  713. }
  714. }
  715. return result;
  716. }
  717. /// <summary>
  718. /// 添加话题分组成员
  719. /// </summary>
  720. /// <param name="userIds"></param>
  721. /// <param name="topicGroupId"></param>
  722. /// <returns></returns>
  723. public async Task<bool> InsertTopicGroupUserAsync(List<int> userIds, int topicGroupId)
  724. {
  725. try
  726. {
  727. using (TransactionScope transactionScope = new TransactionScope())
  728. {
  729. //获取话题小组成员
  730. var topicGroupUsers =
  731. await _topicGroupUserRepository.GetAllAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
  732. topicGroupId));
  733. var groupUsers = topicGroupUsers as TopicGroupUser[] ?? topicGroupUsers.ToArray();
  734. foreach (var userId in userIds)
  735. {
  736. if (groupUsers.Any(n => n.UserId == userId))
  737. continue;
  738. var topicGroupUser = new TopicGroupUser { TopicGroupId = topicGroupId, UserId = userId };
  739. await _topicGroupUserRepository.InsertAsync(topicGroupUser);
  740. }
  741. //获取人数
  742. var includeCount =
  743. await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
  744. topicGroupId));
  745. //修改人数
  746. await _topicGroupRepository.UpdateAsync(Q.Where(nameof(TopicGroup.Id), topicGroupId)
  747. .Set(nameof(TopicGroup.IncludeCount), includeCount));
  748. transactionScope.Complete();
  749. return true;
  750. }
  751. }
  752. catch (Exception e)
  753. {
  754. Console.WriteLine(e);
  755. throw;
  756. }
  757. }
  758. /// <summary>
  759. /// 根据ID删除换题分组成员
  760. /// </summary>
  761. /// <param name="ids"></param>
  762. /// <returns></returns>
  763. public async Task<bool> DeleteTopicGroupUserAsync(List<int> ids)
  764. {
  765. if (ids.Count == 0)
  766. throw new BusinessException("删除的话题分组成员不存在");
  767. try
  768. {
  769. using (TransactionScope transactionScope = new TransactionScope())
  770. {
  771. //查询分组
  772. var topicGroupUser = await _topicGroupUserRepository.GetAsync(ids[0]);
  773. await _topicGroupUserRepository.DeleteAsync(Q.WhereIn(nameof(TopicGroupUser.Id), ids));
  774. var count = await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
  775. topicGroupUser.TopicGroupId));
  776. //修改数量
  777. await _topicGroupRepository.UpdateAsync(Q.Set(nameof(TopicGroup.IncludeCount), count)
  778. .Where(nameof(TopicGroup.Id), topicGroupUser.TopicGroupId));
  779. transactionScope.Complete();
  780. }
  781. }
  782. catch (Exception e)
  783. {
  784. Console.WriteLine(e);
  785. throw;
  786. }
  787. return true;
  788. }
  789. /// <summary>
  790. /// 话题分组移动成员到
  791. /// </summary>
  792. /// <param name="request"></param>
  793. /// <returns></returns>
  794. public async Task<bool> MoveToGroupAsync(MoveToGroupRequest request)
  795. {
  796. using (TransactionScope transactionScope = new TransactionScope())
  797. {
  798. //获取源小组ID
  799. var topicGroupUser = await _topicGroupUserRepository.GetAsync(request.Ids[0]);
  800. //
  801. await _topicGroupUserRepository.UpdateAsync(Q
  802. .Set(nameof(TopicGroupUser.TopicGroupId), request.TopicGroupId)
  803. .WhereIn(nameof(TopicGroupUser.Id), request.Ids));
  804. //原始修改数量
  805. var originalCount = await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
  806. topicGroupUser.TopicGroupId));
  807. await _topicGroupRepository.UpdateAsync(Q.Set(nameof(TopicGroup.IncludeCount), originalCount)
  808. .Where(nameof(TopicGroup.Id), topicGroupUser.TopicGroupId));
  809. //修改数量
  810. var count = await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
  811. request.TopicGroupId));
  812. await _topicGroupRepository.UpdateAsync(Q.Set(nameof(TopicGroup.IncludeCount), count)
  813. .Where(nameof(TopicGroup.Id), request.TopicGroupId));
  814. transactionScope.Complete();
  815. }
  816. return true;
  817. }
  818. /// <summary>
  819. /// 根据GroupId获取通知
  820. /// </summary>
  821. /// <param name="request"></param>
  822. /// <returns></returns>
  823. public async Task<PagedList<TopicListPageResult>> FindTopicByGroupIdAsync(TopicDetailListRequest request)
  824. {
  825. //根据groupID查询话题
  826. var topics = await _topicRepository.GetAllAsync(Q.Where(nameof(Entity.Topic.Topic.GroupId), request.GroupId));
  827. //根据话题ID修改用户的阅读
  828. await _topicAddresseeRepository.UpdateAsync(Q.WhereIn(nameof(Entity.Topic.TopicAddressee.TopicId), topics.Select(n => n.Id).ToList()).Where(nameof(Entity.Topic.TopicAddressee.UserId), request.UserId).Set(nameof(Entity.Topic.TopicAddressee.IsRead), true));
  829. var topicListPageResults = await _topicRepository.FindTopicByGroupIdAsync(request);
  830. foreach (var item in topicListPageResults.Items)
  831. {
  832. // var analyzeRequest = new Request.App.Analyze.AnalyzeRequest();
  833. // analyzeRequest.TypeValue = 1;
  834. // analyzeRequest.AnalyzeType = 1;
  835. // analyzeRequest.SourceId = item.Id;
  836. // analyzeRequest.UserId = request.UserId;
  837. // //点赞数量
  838. // item.PraiseCount = await _analyzeService.CountAsync(analyzeRequest);
  839. // //获取话题的评论数量
  840. // var commentCount =
  841. // await _commentRepository.CountAsync(Q.Where(nameof(Entity.Comment.ArticleId), item.Id).Where(nameof(Entity.Comment.TypeValue), 1));
  842. // item.CommentCount = commentCount;
  843. // //获取话题的转发数量
  844. // analyzeRequest.AnalyzeType = 4;
  845. // var retransmissionCount = await _analyzeService.CountAsync(analyzeRequest);
  846. // item.RetransmissionCount = retransmissionCount;
  847. // item.IsRetransmission = await _analyzeService.ExistsAsync(analyzeRequest);
  848. // //获取话题的收藏数量
  849. // analyzeRequest.AnalyzeType = 3;
  850. // var collectCount = await _analyzeService.CountAsync(analyzeRequest);
  851. // item.CollectCount = collectCount;
  852. // //是否收藏
  853. // item.IsCollect = await _analyzeService.ExistsAsync(analyzeRequest);
  854. // //获取话题的点赞数量
  855. // analyzeRequest.AnalyzeType = 1;
  856. // var praiseCount = await _analyzeService.CountAsync(analyzeRequest);
  857. // item.PraiseCount = praiseCount;
  858. // //是否点赞
  859. // item.IsPraise = await _analyzeService.ExistsAsync(analyzeRequest);
  860. if (string.IsNullOrWhiteSpace(item.Content))
  861. item.Content = "[]";
  862. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  863. foreach (var contentJsonDataItem in contentJsonData)
  864. contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
  865. if (contentJsonData.Count == 0)
  866. item.DataType = 1;
  867. item.Content = "";
  868. if (contentJsonData.Count > 0)
  869. {
  870. var imgData = new List<ContentJsonData>();
  871. var FileData = new List<ContentJsonData>();
  872. var forCount = 1;
  873. var firstContent = string.Empty;
  874. foreach (var jsonData in contentJsonData)
  875. {
  876. if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount == 1)
  877. //文本
  878. firstContent = jsonData.Text;
  879. else if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount > 1)
  880. //文本
  881. continue;
  882. //图片
  883. else if (jsonData.TypeValue == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
  884. {
  885. if (imgData.Count > 9)
  886. break;
  887. imgData.Add(jsonData);
  888. }
  889. //附件
  890. else
  891. {
  892. FileData.Add(jsonData);
  893. break;
  894. }
  895. forCount++;
  896. }
  897. item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
  898. if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
  899. else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
  900. else item.DataType = 1;
  901. var contType = new List<int> { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
  902. item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
  903. }
  904. if (item.Data == null || item.Data.Count == 0)
  905. item.Data = new List<ContentJsonData>();
  906. //item.AvatarUrl = StringUtils.AddDomainMin(item.AvatarUrl);
  907. }
  908. return topicListPageResults;
  909. }
  910. }
  911. }