TopicService.cs 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831
  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.TopicNote.GetHashCode();
  227. var sql = $@"SELECT
  228. a.Id,a.Title,a.UserId,a.Content,a.CreatedDate,a.IsTopic,c.ParentId,
  229. (SELECT
  230. FolderName
  231. FROM
  232. tede_middle
  233. WHERE
  234. id = c.ParentId and IsDelete=0) 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 as UserName, 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 and c.IsDelete=0
  294. ";
  295. if (request.UserId <= 0)
  296. {
  297. sql += $@" AND c.ParentId IN (SELECT
  298. id
  299. FROM
  300. tede_middle
  301. WHERE
  302. FolderType = {topicTypeValue} AND AttributeValue = 2
  303. AND RoleId = 1)";
  304. }
  305. else
  306. {
  307. sql += $@" AND (a.userId={request.UserId} or c.ParentId IN (SELECT
  308. MiddleId
  309. FROM
  310. tede_folder_user
  311. WHERE
  312. MiddleId = c.ParentId AND UserId = {request.UserId})
  313. OR a.UserId IN (SELECT
  314. Id
  315. FROM
  316. tede_user
  317. WHERE
  318. 1 = (SELECT
  319. RoleId
  320. FROM
  321. tede_middle
  322. WHERE
  323. id = c.ParentId) and Id=a.UserId
  324. ))";
  325. }
  326. if (request.TopicGroupIds.Count > 0)
  327. {
  328. var topicGroupId = "";
  329. foreach (var item in request.TopicGroupIds)
  330. {
  331. if (item <= 0)
  332. continue;
  333. topicGroupId += $"{item},";
  334. }
  335. if (!string.IsNullOrEmpty(topicGroupId))
  336. {
  337. topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
  338. sql += $@" AND a.UserId IN (SELECT
  339. UserId
  340. FROM
  341. tede_topic_group_user
  342. WHERE
  343. TopicGroupId IN ({topicGroupId}))";
  344. }
  345. }
  346. if (request.TopicGroupIds.Count > 0)
  347. {
  348. //我的
  349. if (request.TopicGroupIds.Contains(TopicNotoGropConst.My.GetHashCode()))
  350. {
  351. sql += $" and a.UserId={request.UserId} ";
  352. }
  353. //同单位
  354. if (request.TopicGroupIds.Contains(TopicNotoGropConst.Work.GetHashCode()))
  355. {
  356. if (request.UserId > 0)
  357. {
  358. var departmentIds = await departmentUserRepository.GetDepartmentIdsAsync(request.UserId);
  359. var departments = new List<Entity.Department>();
  360. foreach (var departmentId in departmentIds)
  361. {
  362. await _departmentRepository.GetDepartmentById(departmentId, departments);
  363. }
  364. if (departments.Count > 0)
  365. {
  366. var userIds = await departmentUserRepository.GetUserIdsByDepartmentIdsAsync(departments.Select(n => n.Id));
  367. if (userIds.Count() > 0)
  368. {
  369. var str = "";
  370. foreach (var item in userIds)
  371. str += $"{item},";
  372. str = str.Remove(str.Length - 1, 1);
  373. sql += $" and a.UserId in({str})";
  374. }
  375. }
  376. }
  377. }
  378. }
  379. if (!string.IsNullOrWhiteSpace(request.Keyword))
  380. {
  381. sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
  382. OR a.Title LIKE '%{request.Keyword}%'
  383. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  384. }
  385. sql += $@" ORDER BY a.CreatedDate DESC
  386. LIMIT {(request.Page - 1) * request.PerPage} , {request.PerPage}";
  387. return sql;
  388. }
  389. public async Task<string> AssembleSqlCount(TopicPageSearchRequest request)
  390. {
  391. var sql = $@"SELECT count(1) FROM
  392. tede_note a
  393. INNER JOIN
  394. tede_user b ON a.UserId = b.Id
  395. INNER JOIN
  396. tede_middle c ON c.MiddleId = a.Id
  397. WHERE
  398. c.FolderType = 4 AND a.IsTopic = 1 and c.IsDelete=0";
  399. if (request.UserId <= 0)
  400. {
  401. sql += $@" AND c.ParentId IN (SELECT
  402. id
  403. FROM
  404. tede_middle
  405. WHERE
  406. FolderType = 4 AND AttributeValue = 2
  407. AND RoleId = 1)";
  408. }
  409. else
  410. {
  411. sql += $@" AND (a.userId={request.UserId} or c.ParentId IN (SELECT
  412. MiddleId
  413. FROM
  414. tede_folder_user
  415. WHERE
  416. MiddleId = c.ParentId AND UserId = {request.UserId})
  417. OR a.UserId IN (SELECT
  418. Id
  419. FROM
  420. tede_user
  421. WHERE
  422. 1 = (SELECT
  423. RoleId
  424. FROM
  425. tede_middle
  426. WHERE
  427. id = c.ParentId) and Id=a.UserId
  428. ))";
  429. }
  430. if (request.TopicGroupIds.Count > 0)
  431. {
  432. var topicGroupId = "";
  433. foreach (var item in request.TopicGroupIds)
  434. {
  435. if (item <= 0)
  436. continue;
  437. topicGroupId += $"{item},";
  438. }
  439. if (!string.IsNullOrEmpty(topicGroupId))
  440. {
  441. topicGroupId = topicGroupId.Remove(topicGroupId.Length - 1, 1);
  442. sql += $@" AND a.UserId IN (SELECT
  443. UserId
  444. FROM
  445. tede_topic_group_user
  446. WHERE
  447. TopicGroupId IN ({topicGroupId}))";
  448. }
  449. }
  450. if (request.TopicGroupIds.Count > 0)
  451. {
  452. //我的
  453. if (request.TopicGroupIds.Contains(TopicNotoGropConst.My.GetHashCode()))
  454. {
  455. sql += $" and a.UserId={request.UserId} ";
  456. }
  457. //同单位
  458. if (request.TopicGroupIds.Contains(TopicNotoGropConst.Work.GetHashCode()))
  459. {
  460. if (request.UserId > 0)
  461. {
  462. var departmentIds = await departmentUserRepository.GetDepartmentIdsAsync(request.UserId);
  463. var departments = new List<Entity.Department>();
  464. foreach (var departmentId in departmentIds)
  465. {
  466. await _departmentRepository.GetDepartmentById(departmentId, departments);
  467. }
  468. if (departments.Count > 0)
  469. {
  470. var userIds = await departmentUserRepository.GetUserIdsByDepartmentIdsAsync(departments.Select(n => n.Id));
  471. if (userIds.Count() > 0)
  472. {
  473. var str = "";
  474. foreach (var item in userIds)
  475. str += $"{item},";
  476. str = str.Remove(str.Length - 1, 1);
  477. sql += $" and a.UserId in({str})";
  478. }
  479. }
  480. }
  481. }
  482. }
  483. if (!string.IsNullOrWhiteSpace(request.Keyword))
  484. {
  485. sql += $@" AND (b.Name LIKE '%{request.Keyword}%'
  486. OR a.Title LIKE '%{request.Keyword}%'
  487. OR a.HtmlContent LIKE '%{request.Keyword}%')";
  488. }
  489. return sql;
  490. }
  491. /// <summary>
  492. /// 新版 获取笔记话题列表
  493. /// </summary>
  494. /// <param name="request"></param>
  495. /// <returns></returns>
  496. public async Task<PagedList<TopicListPageResult>> GetTopicPageAsync(TopicPageSearchRequest request)
  497. {
  498. var result = await _topicRepository.GetTopicPage(request, await GetTopicPageSqlAsync(request), await AssembleSqlCount(request));
  499. //获取数量
  500. // result.Total = 10;
  501. foreach (var item in result.Items)
  502. {
  503. // if (string.IsNullOrEmpty(item.FolderName))
  504. // item.FolderName = "根目录";
  505. if (string.IsNullOrWhiteSpace(item.UserName))
  506. {
  507. item.Content = "[]";
  508. item.Data = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  509. item.Content = "";
  510. continue;
  511. }
  512. if (string.IsNullOrWhiteSpace(item.Content))
  513. item.Content = "[]";
  514. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  515. foreach (var contentJsonDataItem in contentJsonData)
  516. contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
  517. if (contentJsonData.Count == 0)
  518. item.DataType = 1;
  519. item.Content = "";
  520. if (contentJsonData.Count > 0)
  521. {
  522. var imgData = new List<ContentJsonData>();
  523. var FileData = new List<ContentJsonData>();
  524. var forCount = 1;
  525. var firstContent = string.Empty;
  526. foreach (var jsonData in contentJsonData)
  527. {
  528. if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount == 1)
  529. //文本
  530. firstContent = jsonData.Text;
  531. else if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount > 1)
  532. //文本
  533. continue;
  534. //图片
  535. else if (jsonData.TypeValue == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
  536. {
  537. if (imgData.Count > 9)
  538. break;
  539. imgData.Add(jsonData);
  540. }
  541. //附件
  542. else
  543. {
  544. FileData.Add(jsonData);
  545. break;
  546. }
  547. forCount++;
  548. }
  549. item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
  550. if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
  551. else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
  552. else item.DataType = 1;
  553. var contType = new List<int> { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
  554. item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
  555. }
  556. if (item.Data == null || item.Data.Count == 0)
  557. item.Data = new List<ContentJsonData>();
  558. if (item.Title == null)
  559. item.Title = string.Empty;
  560. }
  561. //查询系统默认的公开文件夹是否存在
  562. var query = Q.NewQuery();
  563. query.Where(nameof(Entity.Middle.Middle.UserId), request.UserId);
  564. query.Where(nameof(Entity.Middle.Middle.AttributeValue), 2);
  565. query.Where(nameof(Entity.Middle.Middle.FolderType), AllTypeConst.TopicNote.GetHashCode());
  566. query.Where(nameof(Entity.Middle.Middle.IsSystemDefault), true);
  567. var isExists = await _middleRepository.ExistsAsync(query);
  568. if (!isExists)
  569. {
  570. //生成系统默认的公开文件夹
  571. await _middleRepository.InsertAsync(new Entity.Middle.Middle
  572. {
  573. Id = 0,
  574. FolderName = "公开",
  575. AttributeValue = 2,
  576. UserId = request.UserId,
  577. FolderType = AllTypeConst.TopicNote.GetHashCode(),
  578. RoleId = 1,
  579. IsSystemDefault = true
  580. });
  581. }
  582. return result;
  583. }
  584. /// <summary>
  585. /// APP列表显示用
  586. /// </summary>
  587. /// <param name="contentJsonDataList"></param>
  588. /// <returns></returns>
  589. public List<ContentJsonData> GetListAsync(List<ContentJsonData> contentJsonDataList)
  590. {
  591. var result = new List<ContentJsonData>();
  592. if (contentJsonDataList.Count > 0)
  593. {
  594. //查询文本
  595. var txtType = contentJsonDataList.FirstOrDefault(n => n.Type == 1);
  596. if (txtType != null)
  597. result.Add(txtType);
  598. //拼接图片
  599. var imgType = contentJsonDataList.FindAll(n => n.Type == 2);
  600. if (imgType.Any())
  601. {
  602. foreach (var item in imgType)
  603. {
  604. //判断图片数量
  605. if (result.Count(n => n.Type == 2) > 8)
  606. break;
  607. result.Add(item);
  608. }
  609. }
  610. else
  611. {
  612. var values = new List<int> { 1, 2 };
  613. var list = contentJsonDataList.FindAll(n => !values.Contains(n.Type));
  614. if (list.Any())
  615. result.Add(list.FirstOrDefault());
  616. }
  617. }
  618. return result;
  619. }
  620. /// <summary>
  621. /// 添加话题分组成员
  622. /// </summary>
  623. /// <param name="userIds"></param>
  624. /// <param name="topicGroupId"></param>
  625. /// <returns></returns>
  626. public async Task<bool> InsertTopicGroupUserAsync(List<int> userIds, int topicGroupId)
  627. {
  628. try
  629. {
  630. using (TransactionScope transactionScope = new TransactionScope())
  631. {
  632. //获取话题小组成员
  633. var topicGroupUsers =
  634. await _topicGroupUserRepository.GetAllAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
  635. topicGroupId));
  636. var groupUsers = topicGroupUsers as TopicGroupUser[] ?? topicGroupUsers.ToArray();
  637. foreach (var userId in userIds)
  638. {
  639. if (groupUsers.Any(n => n.UserId == userId))
  640. continue;
  641. var topicGroupUser = new TopicGroupUser { TopicGroupId = topicGroupId, UserId = userId };
  642. await _topicGroupUserRepository.InsertAsync(topicGroupUser);
  643. }
  644. //获取人数
  645. var includeCount =
  646. await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
  647. topicGroupId));
  648. //修改人数
  649. await _topicGroupRepository.UpdateAsync(Q.Where(nameof(TopicGroup.Id), topicGroupId)
  650. .Set(nameof(TopicGroup.IncludeCount), includeCount));
  651. transactionScope.Complete();
  652. return true;
  653. }
  654. }
  655. catch (Exception e)
  656. {
  657. Console.WriteLine(e);
  658. throw;
  659. }
  660. }
  661. /// <summary>
  662. /// 根据ID删除换题分组成员
  663. /// </summary>
  664. /// <param name="ids"></param>
  665. /// <returns></returns>
  666. public async Task<bool> DeleteTopicGroupUserAsync(List<int> ids)
  667. {
  668. if (ids.Count == 0)
  669. throw new BusinessException("删除的话题分组成员不存在");
  670. try
  671. {
  672. using (TransactionScope transactionScope = new TransactionScope())
  673. {
  674. //查询分组
  675. var topicGroupUser = await _topicGroupUserRepository.GetAsync(ids[0]);
  676. await _topicGroupUserRepository.DeleteAsync(Q.WhereIn(nameof(TopicGroupUser.Id), ids));
  677. var count = await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
  678. topicGroupUser.TopicGroupId));
  679. //修改数量
  680. await _topicGroupRepository.UpdateAsync(Q.Set(nameof(TopicGroup.IncludeCount), count)
  681. .Where(nameof(TopicGroup.Id), topicGroupUser.TopicGroupId));
  682. transactionScope.Complete();
  683. }
  684. }
  685. catch (Exception e)
  686. {
  687. Console.WriteLine(e);
  688. throw;
  689. }
  690. return true;
  691. }
  692. /// <summary>
  693. /// 话题分组移动成员到
  694. /// </summary>
  695. /// <param name="request"></param>
  696. /// <returns></returns>
  697. public async Task<bool> MoveToGroupAsync(MoveToGroupRequest request)
  698. {
  699. using (TransactionScope transactionScope = new TransactionScope())
  700. {
  701. //获取源小组ID
  702. var topicGroupUser = await _topicGroupUserRepository.GetAsync(request.Ids[0]);
  703. //
  704. await _topicGroupUserRepository.UpdateAsync(Q
  705. .Set(nameof(TopicGroupUser.TopicGroupId), request.TopicGroupId)
  706. .WhereIn(nameof(TopicGroupUser.Id), request.Ids));
  707. //原始修改数量
  708. var originalCount = await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
  709. topicGroupUser.TopicGroupId));
  710. await _topicGroupRepository.UpdateAsync(Q.Set(nameof(TopicGroup.IncludeCount), originalCount)
  711. .Where(nameof(TopicGroup.Id), topicGroupUser.TopicGroupId));
  712. //修改数量
  713. var count = await _topicGroupUserRepository.CountAsync(Q.Where(nameof(TopicGroupUser.TopicGroupId),
  714. request.TopicGroupId));
  715. await _topicGroupRepository.UpdateAsync(Q.Set(nameof(TopicGroup.IncludeCount), count)
  716. .Where(nameof(TopicGroup.Id), request.TopicGroupId));
  717. transactionScope.Complete();
  718. }
  719. return true;
  720. }
  721. /// <summary>
  722. /// 根据GroupId获取通知
  723. /// </summary>
  724. /// <param name="request"></param>
  725. /// <returns></returns>
  726. public async Task<PagedList<TopicListPageResult>> FindTopicByGroupIdAsync(TopicDetailListRequest request)
  727. {
  728. //根据groupID查询话题
  729. var topics = await _topicRepository.GetAllAsync(Q.Where(nameof(Entity.Topic.Topic.GroupId), request.GroupId));
  730. //根据话题ID修改用户的阅读
  731. 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));
  732. var topicListPageResults = await _topicRepository.FindTopicByGroupIdAsync(request);
  733. foreach (var item in topicListPageResults.Items)
  734. {
  735. // var analyzeRequest = new Request.App.Analyze.AnalyzeRequest();
  736. // analyzeRequest.TypeValue = 1;
  737. // analyzeRequest.AnalyzeType = 1;
  738. // analyzeRequest.SourceId = item.Id;
  739. // analyzeRequest.UserId = request.UserId;
  740. // //点赞数量
  741. // item.PraiseCount = await _analyzeService.CountAsync(analyzeRequest);
  742. // //获取话题的评论数量
  743. // var commentCount =
  744. // await _commentRepository.CountAsync(Q.Where(nameof(Entity.Comment.ArticleId), item.Id).Where(nameof(Entity.Comment.TypeValue), 1));
  745. // item.CommentCount = commentCount;
  746. // //获取话题的转发数量
  747. // analyzeRequest.AnalyzeType = 4;
  748. // var retransmissionCount = await _analyzeService.CountAsync(analyzeRequest);
  749. // item.RetransmissionCount = retransmissionCount;
  750. // item.IsRetransmission = await _analyzeService.ExistsAsync(analyzeRequest);
  751. // //获取话题的收藏数量
  752. // analyzeRequest.AnalyzeType = 3;
  753. // var collectCount = await _analyzeService.CountAsync(analyzeRequest);
  754. // item.CollectCount = collectCount;
  755. // //是否收藏
  756. // item.IsCollect = await _analyzeService.ExistsAsync(analyzeRequest);
  757. // //获取话题的点赞数量
  758. // analyzeRequest.AnalyzeType = 1;
  759. // var praiseCount = await _analyzeService.CountAsync(analyzeRequest);
  760. // item.PraiseCount = praiseCount;
  761. // //是否点赞
  762. // item.IsPraise = await _analyzeService.ExistsAsync(analyzeRequest);
  763. if (string.IsNullOrWhiteSpace(item.Content))
  764. item.Content = "[]";
  765. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  766. foreach (var contentJsonDataItem in contentJsonData)
  767. contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
  768. if (contentJsonData.Count == 0)
  769. item.DataType = 1;
  770. item.Content = "";
  771. if (contentJsonData.Count > 0)
  772. {
  773. var imgData = new List<ContentJsonData>();
  774. var FileData = new List<ContentJsonData>();
  775. var forCount = 1;
  776. var firstContent = string.Empty;
  777. foreach (var jsonData in contentJsonData)
  778. {
  779. if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount == 1)
  780. //文本
  781. firstContent = jsonData.Text;
  782. else if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount > 1)
  783. //文本
  784. continue;
  785. //图片
  786. else if (jsonData.TypeValue == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
  787. {
  788. if (imgData.Count > 9)
  789. break;
  790. imgData.Add(jsonData);
  791. }
  792. //附件
  793. else
  794. {
  795. FileData.Add(jsonData);
  796. break;
  797. }
  798. forCount++;
  799. }
  800. item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
  801. if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
  802. else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
  803. else item.DataType = 1;
  804. var contType = new List<int> { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
  805. item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
  806. }
  807. if (item.Data == null || item.Data.Count == 0)
  808. item.Data = new List<ContentJsonData>();
  809. //item.AvatarUrl = StringUtils.AddDomainMin(item.AvatarUrl);
  810. }
  811. return topicListPageResults;
  812. }
  813. }
  814. }