TopicService.cs 39 KB

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