TopicService.cs 41 KB

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