TopicService.cs 47 KB

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