TopicService.cs 47 KB

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