CollectionService.cs 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Threading.Tasks;
  4. using AutoMapper;
  5. using Datory;
  6. using GxPress.Common.Exceptions;
  7. using GxPress.Common.Page;
  8. using GxPress.Common.Tools;
  9. using GxPress.Entity.WorkMeeting;
  10. using GxPress.EnumConst;
  11. using GxPress.Repository.Interface;
  12. using GxPress.Repository.Interface.Collection;
  13. using GxPress.Repository.Interface.Missive;
  14. using GxPress.Repository.Interface.Note;
  15. using GxPress.Repository.Interface.WorkMeeting;
  16. using GxPress.Request.App.Analyze;
  17. using GxPress.Request.App.Collection;
  18. using GxPress.Request.App.Middle;
  19. using GxPress.Result;
  20. using GxPress.Result.App.Collection;
  21. using GxPress.Service.Interface.Analyze;
  22. using GxPress.Service.Interface.Article;
  23. using GxPress.Service.Interface.Collection;
  24. using GxPress.Service.Interface.Middle;
  25. using GxPress.Service.Interface.UserMiddle;
  26. using Newtonsoft.Json;
  27. namespace GxPress.Service.Implement.Collection
  28. {
  29. public class CollectionService : ICollectionService
  30. {
  31. private readonly ICollectionRepository _collectionRepository;
  32. private readonly IMiddleService _middleService;
  33. private readonly IArticleRepository _articleRepository;
  34. private readonly ITopicRepository _topicRepository;
  35. private readonly IMiddleRepository _middleRepository;
  36. private readonly INoteRepository _noteRepository;
  37. private readonly IUserRepository _userRepository;
  38. private readonly IArticleService _articleService;
  39. private readonly INoticeRepository _noticeRepository;
  40. private readonly IMissiveRepository _missiveRepository;
  41. private readonly IGroupRepository _groupRepository;
  42. private readonly IMeetingSummaryRepository _meetingSummaryRepository;
  43. private readonly IMapper _mapper;
  44. private readonly IFolderUserRepository _folderUserRepository;
  45. private readonly IAnalyzeService _analyzeService;
  46. private readonly IFileLibraryRepository fileLibraryRepository;
  47. private readonly IUserMiddleService _userMiddleService;
  48. public CollectionService(ICollectionRepository collectionRepository, IMiddleService middleService,
  49. IArticleRepository articleRepository, ITopicRepository topicRepository, IMiddleRepository middleRepository,
  50. INoteRepository noteRepository, IUserRepository userRepository, IArticleService articleService, INoticeRepository noticeRepository,
  51. IMissiveRepository missiveRepository, IMapper mapper,
  52. IGroupRepository groupRepository, IMeetingSummaryRepository meetingSummaryRepository, IFolderUserRepository folderUserRepository, IAnalyzeService analyzeService, IFileLibraryRepository fileLibraryRepository, IUserMiddleService userMiddleService)
  53. {
  54. _collectionRepository = collectionRepository;
  55. _middleService = middleService;
  56. _articleRepository = articleRepository;
  57. _topicRepository = topicRepository;
  58. _middleRepository = middleRepository;
  59. _noteRepository = noteRepository;
  60. _userRepository = userRepository;
  61. _articleService = articleService;
  62. _noticeRepository = noticeRepository;
  63. _missiveRepository = missiveRepository;
  64. _mapper = mapper;
  65. _groupRepository = groupRepository;
  66. _meetingSummaryRepository = meetingSummaryRepository;
  67. _folderUserRepository = folderUserRepository;
  68. _analyzeService = analyzeService;
  69. this.fileLibraryRepository = fileLibraryRepository;
  70. _userMiddleService = userMiddleService;
  71. }
  72. /// <summary>
  73. /// 插入
  74. /// </summary>
  75. /// <param name="request"></param>
  76. /// <returns></returns>
  77. public async Task<bool> Insert(CollectionInRequest request)
  78. {
  79. var collection = new Entity.Collection
  80. {
  81. CollectionDataId = request.CollectionDataId,
  82. CollectionType = request.CollectionType,
  83. UserId = request.UserId,
  84. SourceUserId = request.SourceUserId,
  85. EndCollectionDataId = request.CollectionDataId,
  86. EndCollectionType = request.CollectionType
  87. };
  88. var query = new SqlKata.Query();
  89. query.Where(nameof(Entity.Collection.UserId), request.UserId)
  90. .Where(nameof(Entity.Collection.CollectionType), request.CollectionType)
  91. .Where(nameof(Entity.Collection.CollectionDataId), request.CollectionDataId);
  92. if (request.SourceUserId > 0)
  93. query.Where(nameof(Entity.Collection.SourceUserId), request.SourceUserId);
  94. //查询是否存在
  95. var findCollection = await _collectionRepository.GetAsync(query);
  96. var analyzeRequest = new AnalyzeRequest
  97. {
  98. UserId = request.UserId,
  99. AnalyzeType = 3,
  100. SourceId = request.CollectionDataId,
  101. TypeValue = request.CollectionType,// 10 会议纪要 0 文章 1 话题 2 通知 3 笔记 4站内信 12 收藏文件夹 13 笔记文件夹
  102. SourceUserId = request.SourceUserId
  103. };
  104. if (findCollection != null)
  105. {
  106. await _collectionRepository.DeleteAsync(findCollection.Id);
  107. await _middleRepository.DeleteAsync(Q.Where(nameof(Entity.Middle.Middle.FolderType), 3).Where(nameof(Entity.Middle.Middle.MiddleId), findCollection.Id).Where(nameof(Entity.Middle.Middle.UserId), request.UserId));
  108. var analyze = await _analyzeService.GetAnalyzeAsync(analyzeRequest);
  109. if (analyze != null)
  110. await _analyzeService.DeleteAsync(analyze.Id);
  111. return true;
  112. }
  113. //收藏文章
  114. if (request.CollectionType == AllTypeConst.Article.GetHashCode())
  115. {
  116. var article = await _articleRepository.GetArticleAsync(request.CollectionDataId);
  117. collection.Title = article.Title;
  118. analyzeRequest.TypeValue = request.CollectionType;
  119. await _analyzeService.SetAnalyzeAsync(analyzeRequest);
  120. }
  121. //话题
  122. else if (request.CollectionType == AllTypeConst.Notice.GetHashCode())
  123. {
  124. var topic = await _topicRepository.GetAsync(request.CollectionDataId);
  125. collection.Title = topic.Title;
  126. //收藏
  127. analyzeRequest.TypeValue = request.CollectionType;
  128. await _analyzeService.SetAnalyzeAsync(analyzeRequest);
  129. }
  130. //收藏收藏
  131. else if (request.CollectionType == AllTypeConst.Collect.GetHashCode())
  132. {
  133. //获取
  134. var collectionEntity = await _collectionRepository.GetAsync(request.CollectionDataId);
  135. collection.EndCollectionDataId = collectionEntity.EndCollectionDataId;
  136. collection.EndCollectionType = collectionEntity.EndCollectionType;
  137. }
  138. //笔记
  139. else if (request.CollectionType == AllTypeConst.Note.GetHashCode() || request.CollectionType == 21)
  140. {
  141. //收藏
  142. analyzeRequest.TypeValue = request.CollectionType;
  143. await _analyzeService.SetAnalyzeAsync(analyzeRequest);
  144. var note = await _noteRepository.GetAsync(request.CollectionDataId);
  145. collection.Title = note.Title;
  146. }
  147. //通知
  148. else if (request.CollectionType == AllTypeConst.Notice.GetHashCode())
  149. {
  150. //通知
  151. analyzeRequest.TypeValue = request.CollectionType;
  152. await _analyzeService.SetAnalyzeAsync(analyzeRequest);
  153. var notice = await _noticeRepository.GetAsync(request.CollectionDataId);
  154. collection.Title = notice.Title;
  155. }
  156. //站内信
  157. else if (request.CollectionType == AllTypeConst.Missive.GetHashCode())
  158. {
  159. var missive = await _missiveRepository.GetAsync(request.CollectionDataId);
  160. collection.Title = missive.Title;
  161. //站内信
  162. analyzeRequest.TypeValue = request.CollectionType;
  163. await _analyzeService.SetAnalyzeAsync(analyzeRequest);
  164. }
  165. //收藏会议
  166. if (request.CollectionType == AllTypeConst.Meeting.GetHashCode())
  167. {
  168. var meetingSummary = await _meetingSummaryRepository.GetAsync(Q.Where(nameof(MeetingSummary.MeetingId), request.CollectionDataId));
  169. if (meetingSummary == null)
  170. throw new BusinessException("会议无效");
  171. collection.Title = meetingSummary.Title;
  172. //收藏会议
  173. analyzeRequest.TypeValue = request.CollectionType;
  174. await _analyzeService.SetAnalyzeAsync(analyzeRequest);
  175. }
  176. //文件
  177. if (request.CollectionType == AllTypeConst.File.GetHashCode())
  178. {
  179. //获取文件信息
  180. var fileLibrary = await fileLibraryRepository.GetFileLibraryByIdAsync(collection.CollectionDataId);
  181. if (fileLibrary == null)
  182. throw new BusinessException("文件不存在");
  183. collection.Title = fileLibrary.FileName;
  184. }
  185. //会议纪要
  186. if (request.CollectionType == AllTypeConst.MeetingSummary.GetHashCode())
  187. {
  188. var meetingSummary = await _meetingSummaryRepository.GetAsync(Q.Where(nameof(MeetingSummary.Id), request.CollectionDataId));
  189. if (meetingSummary == null)
  190. throw new BusinessException("会议无效");
  191. collection.Title = meetingSummary.Title;
  192. //会议纪要
  193. analyzeRequest.TypeValue = request.CollectionType;
  194. await _analyzeService.SetAnalyzeAsync(analyzeRequest);
  195. }
  196. //收藏、笔记文件
  197. if (request.CollectionType == AllTypeConst.NoteFolder.GetHashCode() || request.CollectionType == AllTypeConst.CollectFolder.GetHashCode())
  198. {
  199. if (request.CollectionDataId > 0)
  200. {
  201. var middle = await _middleRepository.GetMiddleAsync(request.CollectionDataId);
  202. if (middle == null)
  203. throw new BusinessException("文件夹无效");
  204. collection.Title = middle.FolderName;
  205. }
  206. else
  207. {
  208. var user = await _userRepository.GetAsync(request.SourceUserId);
  209. if (user == null)
  210. throw new BusinessException("用户不存在!");
  211. collection.Title = $"{user.Name}的";
  212. collection.Title += request.CollectionType == AllTypeConst.CollectFolder.GetHashCode() ? "收藏" : "笔记";
  213. }
  214. //笔记文件
  215. analyzeRequest.TypeValue = request.CollectionType;
  216. await _analyzeService.SetAnalyzeAsync(analyzeRequest);
  217. }
  218. var collectionId = await _collectionRepository.InsertAsync(collection);
  219. //添加收藏信息
  220. var middleInsertTypeRequest = new MiddleInsertTypeRequest
  221. {
  222. AttributeValue = 1,
  223. FolderId = request.FolderId,
  224. FolderType = AllTypeConst.Collect.GetHashCode(),
  225. MiddleId = collectionId,
  226. MiddleSonId = 0,
  227. UserId = request.UserId
  228. };
  229. return await _middleService.AddOrUpdateAsync(middleInsertTypeRequest);
  230. }
  231. /// <summary>
  232. /// 收藏无文件夹分页列表
  233. /// </summary>
  234. /// <param name="request"></param>
  235. /// <returns></returns>
  236. public async Task<PagedList<CollectionNoFolderResult>> GetCollectionNoFolderPageListAsync(CollectionPageSearchRequest request)
  237. {
  238. var result = await _collectionRepository.GetCollectionNoFolderPageListAsync(request);
  239. if (result == null || result.Items == null)
  240. return new PagedList<CollectionNoFolderResult>();
  241. foreach (var item in result.Items)
  242. {
  243. item.Data = await StructCollectionData(item.CollectionDataId, item.CollectionType, item.SourceUserId);
  244. if (string.IsNullOrWhiteSpace(item.Title))
  245. {
  246. item.Title = "";
  247. if (item.Data.Type == AllTypeConst.Text.GetHashCode())
  248. item.Title = item.Data.Title;
  249. else if (item.Data.Type == AllTypeConst.MeetingSummary.GetHashCode())
  250. item.Title = item.Data.Title;
  251. else
  252. {
  253. if (item.Data.Data != null)
  254. {
  255. if (item.Data.Type == AllTypeConst.Text.GetHashCode())
  256. item.Title = item.Data.Text;
  257. else if (item.Data.Data.Type == AllTypeConst.Text.GetHashCode())
  258. item.Title = item.Data.Data.Text;
  259. else if (item.Data.Data.Type == AllTypeConst.Image.GetHashCode())
  260. item.Title = "[图片]";
  261. else
  262. item.Title = "[附件]";
  263. }
  264. }
  265. }
  266. }
  267. return result;
  268. }
  269. /// <summary>
  270. /// 查询结果
  271. /// </summary>
  272. /// <param name="request"></param>
  273. /// <returns></returns>
  274. public async Task<PagedList<CollectionListPageResult>> PageListAsync(CollectionPageSearchRequest request)
  275. {
  276. var result = await _collectionRepository.PageListAsync(request);
  277. if (request.FolderId > 0)
  278. {
  279. var middle = await _middleRepository.GetMiddleAsync(request.FolderId);
  280. result.RoleId = middle != null ? middle.RoleId : 0;
  281. }
  282. //是否收藏和转发数量
  283. if (request.VisitUserId > 0)
  284. {
  285. var user = await _userRepository.GetAsync(request.VisitUserId);
  286. result.Author = user.Name;
  287. var analyzeRequest = new AnalyzeRequest();
  288. analyzeRequest.SourceUserId = request.VisitUserId;
  289. analyzeRequest.AnalyzeType = 3;
  290. analyzeRequest.CommentId = 0;
  291. analyzeRequest.SourceId = request.FolderId;
  292. analyzeRequest.UserId = request.UserId;
  293. analyzeRequest.TypeValue = AllTypeConst.CollectFolder.GetHashCode();
  294. result.IsCollect = await _analyzeService.ExistsSourceUserAsync(analyzeRequest);
  295. analyzeRequest.AnalyzeType = 4;
  296. result.RetransmissionCount = await _analyzeService.RetransmissionCountAsync(analyzeRequest);
  297. }
  298. foreach (var item in result.Items)
  299. {
  300. item.Data = await StructCollectionData(item.CollectionDataId, item.CollectionType, item.SourceUserId);
  301. if (string.IsNullOrWhiteSpace(item.Title))
  302. {
  303. item.Title = "";
  304. if (item.Data.Type == AllTypeConst.Text.GetHashCode())
  305. item.Title = item.Data.Title;
  306. else if (item.Data.Type == AllTypeConst.MeetingSummary.GetHashCode())
  307. item.Title = item.Data.Title;
  308. else
  309. {
  310. if (item.Data.Data != null)
  311. {
  312. if (item.Data.Type == AllTypeConst.Text.GetHashCode())
  313. item.Title = item.Data.Text;
  314. else if (item.Data.Data.Type == AllTypeConst.Text.GetHashCode())
  315. item.Title = item.Data.Data.Text;
  316. else if (item.Data.Data.Type == AllTypeConst.Image.GetHashCode())
  317. item.Title = "[图片]";
  318. else
  319. item.Title = "[附件]";
  320. }
  321. }
  322. }
  323. }
  324. return result;
  325. }
  326. /// <summary>
  327. /// 递归获取不是收藏的数据
  328. /// </summary>
  329. /// <param name="middleId"></param>
  330. /// <returns></returns>
  331. public async Task<Entity.Collection> GetCollectionRecursion(int middleId)
  332. {
  333. //var middle = await _middleRepository.GetMiddleAsync(middleId);
  334. var collection = await _collectionRepository.GetAsync(middleId);
  335. if (collection.CollectionType == AllTypeConst.Collect.GetHashCode())
  336. await GetCollectionRecursion(collection.CollectionType);
  337. return collection;
  338. }
  339. /// <summary>
  340. /// 笔记解析
  341. /// </summary>
  342. /// <param name="data"></param>
  343. /// <returns></returns>
  344. public async Task<CollectionContentJsonData> AnalyzeAsync(List<CollectionContentJsonData> data)
  345. {
  346. var result = new CollectionContentJsonData();
  347. var fileCount = data.Count(n => n.Type == AllTypeConst.File.GetHashCode());
  348. //提取图片
  349. if (data.Any(n => n.Type == AllTypeConst.Image.GetHashCode()))
  350. {
  351. var contentJsonData = new CollectionContentJsonData { FileCount = fileCount, Type = AllTypeConst.Image.GetHashCode() };
  352. //获取图片
  353. var imgList = data.Where(n => n.Type == AllTypeConst.Image.GetHashCode());
  354. contentJsonData.ArticleImgUrl = imgList.Select(n => StringUtils.AddDomain(n.File)).ToList();
  355. result = (contentJsonData);
  356. return result;
  357. }
  358. //提取文字
  359. if (data.Any(n => n.Type == AllTypeConst.Text.GetHashCode()))
  360. {
  361. var contentJsonData = new CollectionContentJsonData { FileCount = fileCount, Type = AllTypeConst.Text.GetHashCode() };
  362. //获取图片
  363. var textList = data.Where(n => n.Type == AllTypeConst.Text.GetHashCode());
  364. contentJsonData.Text = textList.FirstOrDefault().Text;
  365. result = (contentJsonData);
  366. return result;
  367. }
  368. //获取
  369. foreach (var item in data.Where(n => n.Type != AllTypeConst.Text.GetHashCode() && n.Type != AllTypeConst.File.GetHashCode()))
  370. {
  371. return await StructCollectionData(item.Id, item.Type, 0);
  372. }
  373. return result;
  374. }
  375. /// <summary>
  376. /// 构造收藏Data 收藏类型 1文章 2话题 3 收藏 4笔记 5通知 6站内信 7小组 8会议
  377. /// </summary>
  378. /// <param name="collectionDataId"></param>
  379. /// <param name="collectionType"></param>
  380. /// <param name="isReturn"></param>
  381. /// <returns></returns>
  382. public async Task<CollectionContentJsonData> StructCollectionData(int collectionDataId, int collectionType, int sourceUserId, bool isReturn = false)
  383. {
  384. var list = new CollectionContentJsonData();
  385. //1文章 2话题 3 收藏 4笔记 5通知 6站内信 7小组 8会议 14工作流审核 300 文件 400会议纪要
  386. //文章类型
  387. if (collectionType == GxPress.EnumConst.AllTypeConst.Article.GetHashCode())
  388. {
  389. var articleResult = await _articleService.GetAsync(collectionDataId, 0);
  390. if (articleResult == null)
  391. return new CollectionContentJsonData();
  392. var articleImgUrl = new List<string>();
  393. if (articleResult.ImageUrls != null)
  394. foreach (var block in articleResult.ImageUrls)
  395. articleImgUrl.Add(StringUtils.AddDomain(block));
  396. list = new CollectionContentJsonData
  397. {
  398. Author = articleResult.Author,
  399. Title = articleResult.Title,
  400. CreatedData = articleResult.AddDate,
  401. Type = collectionType,
  402. Id = articleResult.Id,
  403. ArticleImgUrl = articleImgUrl,
  404. ReadCount = articleResult.ReadCount
  405. };
  406. }
  407. //话题类型
  408. if (collectionType == GxPress.EnumConst.AllTypeConst.Notice.GetHashCode())
  409. {
  410. var topic = await _topicRepository.GetAsync(collectionDataId);
  411. if (topic == null)
  412. return new CollectionContentJsonData();
  413. //获取是否存在小组
  414. var group = new Entity.Group();
  415. if (topic.GroupId > 0)
  416. {
  417. group = await _groupRepository.GetAsync(topic.GroupId);
  418. if (group == null)
  419. return new CollectionContentJsonData();
  420. }
  421. //查询ID
  422. var user = await _userRepository.GetAsync(topic.UserId);
  423. if (user == null)
  424. return new CollectionContentJsonData();
  425. list = new CollectionContentJsonData
  426. {
  427. Author = user.Name,
  428. Title = topic.Title,
  429. CreatedData = topic.CreatedDate,
  430. Type = collectionType,
  431. Id = topic.Id,
  432. File = StringUtils.AddDomain(user.AvatarUrl),
  433. ReadCount = topic.ReadCount,
  434. Name = user.Name,
  435. AvatarUrl = StringUtils.AddDomain(user.AvatarUrl),
  436. Data = await GetCollectionContentJsonData(topic.Content),
  437. NickName = user.Nick,
  438. IsGroup = group.Id > 0,
  439. GroupId = group.Id > 0 ? group.Id : 0,
  440. GroupName = group.Id > 0 ? group.Name : ""
  441. };
  442. }
  443. //收藏
  444. if (collectionType == GxPress.EnumConst.AllTypeConst.Collect.GetHashCode())
  445. {
  446. var collection = await GetCollectionRecursion(collectionDataId);
  447. list = await StructCollectionData(collection.EndCollectionDataId, collection.EndCollectionType, collection.SourceUserId);
  448. //list.Type = 8;
  449. }
  450. //笔记
  451. if (collectionType == GxPress.EnumConst.AllTypeConst.Notice.GetHashCode() || collectionType == 21)
  452. {
  453. var note = await _noteRepository.GetAsync(collectionDataId);
  454. if (note != null)
  455. {
  456. var user = await _userRepository.GetAsync(note.UserId);
  457. if (user == null)
  458. return new CollectionContentJsonData();
  459. list = (new CollectionContentJsonData
  460. {
  461. Author = user.Name,
  462. NickName = user.Nick,
  463. Name = user.Name,
  464. Title = note.Title,
  465. CreatedData = note.CreatedDate,
  466. Type = collectionType,
  467. Id = note.Id,
  468. File = "",
  469. AvatarUrl = StringUtils.AddDomain(user.AvatarUrl),
  470. Data = await GetCollectionContentJsonData(note.Content)
  471. });
  472. }
  473. }
  474. //通知
  475. if (collectionType == GxPress.EnumConst.AllTypeConst.Notice.GetHashCode())
  476. {
  477. var notice = await _noticeRepository.GetAsync(collectionDataId);
  478. if (notice == null)
  479. return new CollectionContentJsonData();
  480. var user = await _userRepository.GetAsync(notice.UserId);
  481. if (user == null)
  482. return new CollectionContentJsonData();
  483. list = (new CollectionContentJsonData
  484. {
  485. Author = user.Name,
  486. Title = notice.Title,
  487. CreatedData = notice.CreatedDate,
  488. Type = collectionType,
  489. Id = notice.Id,
  490. File = "",
  491. AvatarUrl = StringUtils.AddDomain(user.AvatarUrl),
  492. Name = user.Name,
  493. Data = await GetCollectionContentJsonData(notice.Content),
  494. NickName = user.Nick
  495. });
  496. }
  497. //站内信
  498. if (collectionType == GxPress.EnumConst.AllTypeConst.Missive.GetHashCode())
  499. {
  500. var missive = await _missiveRepository.GetAsync(collectionDataId);
  501. if (missive == null)
  502. return new CollectionContentJsonData();
  503. var user = await _userRepository.GetAsync(missive.UserId);
  504. if (user == null)
  505. return new CollectionContentJsonData();
  506. list = new CollectionContentJsonData
  507. {
  508. Author = user.Name,
  509. Title = missive.Title,
  510. CreatedData = missive.CreatedDate,
  511. Type = collectionType,
  512. Id = missive.Id,
  513. File = "",
  514. AvatarUrl = StringUtils.AddDomain(user.AvatarUrl),
  515. Name = user.Name,
  516. Data = await GetCollectionContentJsonData(missive.Content),
  517. NickName = user.Nick,
  518. MissiveType = missive.MissiveType
  519. };
  520. }
  521. //小组
  522. if (collectionType == GxPress.EnumConst.AllTypeConst.Group.GetHashCode())
  523. {
  524. var group = await _groupRepository.GetAsync(collectionDataId);
  525. var user = await _userRepository.GetAsync(group.UserId);
  526. if (user == null)
  527. return new CollectionContentJsonData();
  528. list = new CollectionContentJsonData
  529. {
  530. Author = user.Name,
  531. Title = group.Name,
  532. CreatedData = group.CreatedDate,
  533. Type = collectionType,
  534. Id = group.Id,
  535. File = StringUtils.AddDomain(group.AvatarUrl),
  536. Name = user.Name,
  537. NickName = user.Nick
  538. };
  539. }
  540. //会议
  541. if (collectionType == GxPress.EnumConst.AllTypeConst.Meeting.GetHashCode())
  542. {
  543. var meetingSummary = await _meetingSummaryRepository.GetAsync(Q.Where(nameof(MeetingSummary.MeetingId), collectionDataId));
  544. if (meetingSummary == null)
  545. return new CollectionContentJsonData();
  546. var user = await _userRepository.GetAsync(meetingSummary.UserId);
  547. if (user == null)
  548. return new CollectionContentJsonData();
  549. list = new CollectionContentJsonData
  550. {
  551. Author = "",
  552. Title = meetingSummary.Title,
  553. CreatedData = meetingSummary.CreatedDate,
  554. Type = collectionType,
  555. Id = meetingSummary.Id,
  556. File = "",
  557. Name = user.Name,
  558. NickName = user.Nick
  559. };
  560. }
  561. //工作流
  562. //300 文件
  563. if (collectionType == GxPress.EnumConst.AllTypeConst.Flow.GetHashCode())
  564. {
  565. var fileLibrary = await fileLibraryRepository.GetFileLibraryByIdAsync(collectionDataId);
  566. if (fileLibrary == null)
  567. return new CollectionContentJsonData();
  568. // var user = await _userRepository.GetAsync(fileLibrary.UserId);
  569. list = new CollectionContentJsonData
  570. {
  571. Author = "",
  572. Title = fileLibrary.FileName,
  573. CreatedData = fileLibrary.CreatedData,
  574. Type = collectionType,
  575. Id = fileLibrary.Id,
  576. File = StringUtils.AddDomain(fileLibrary.FileUrl),
  577. MinFile = fileLibrary.FileType == "image" ? StringUtils.AddDomainMin(fileLibrary.FileUrl) : "",
  578. AvatarUrl = "",
  579. FileName = fileLibrary.FileName,
  580. Name = "",
  581. Data = new CollectionContentJsonData(),
  582. NickName = "",
  583. FileSize = fileLibrary.Size
  584. };
  585. }
  586. //400 会议纪要
  587. if (collectionType == GxPress.EnumConst.AllTypeConst.MeetingSummary.GetHashCode())
  588. {
  589. var meetingSummary = await _meetingSummaryRepository.GetAsync(collectionDataId);
  590. if (meetingSummary == null)
  591. return new CollectionContentJsonData();
  592. var user = await _userRepository.GetAsync(meetingSummary.UserId);
  593. if (user == null)
  594. return new CollectionContentJsonData();
  595. list = new CollectionContentJsonData
  596. {
  597. Author = user.Name,
  598. Title = meetingSummary.Title,
  599. CreatedData = meetingSummary.CreatedDate,
  600. Type = collectionType,
  601. Id = meetingSummary.Id,
  602. File = "",
  603. MinFile = "",
  604. AvatarUrl = "",
  605. FileName = "",
  606. Name = "",
  607. Data = new CollectionContentJsonData(),
  608. NickName = user.Nick,
  609. FileSize = 0
  610. };
  611. }
  612. //收藏笔记文件夹
  613. if (collectionType == GxPress.EnumConst.AllTypeConst.NoteFolder.GetHashCode() || collectionType == GxPress.EnumConst.AllTypeConst.CollectFolder.GetHashCode())
  614. {
  615. if (sourceUserId == 0)
  616. return new CollectionContentJsonData();
  617. var user = await _userRepository.GetAsync(sourceUserId);
  618. if (user == null)
  619. return new CollectionContentJsonData();
  620. list = new CollectionContentJsonData
  621. {
  622. Author = user.Name,
  623. Title = "",
  624. Type = collectionType,
  625. Id = 0,
  626. File = "",
  627. MinFile = "",
  628. AvatarUrl = "",
  629. FileName = "",
  630. Name = "",
  631. Data = new CollectionContentJsonData(),
  632. NickName = user.Nick,
  633. FileSize = 0
  634. };
  635. }
  636. return list;
  637. }
  638. /// <summary>
  639. /// 获取收藏详情
  640. /// </summary>
  641. /// <param name="id"></param>
  642. /// <returns></returns>
  643. public async Task<CollectionResult> GetCollectionDetailAsync(int id)
  644. {
  645. var collection = await _collectionRepository.GetAsync(id);
  646. if (collection == null)
  647. throw new BusinessException("收藏不存在");
  648. var result = _mapper.Map<CollectionResult>(collection);
  649. result.Data = await StructCollectionData(result.CollectionDataId, result.CollectionType, 0);
  650. return result;
  651. }
  652. public async Task<CollectionContentJsonData> GetCollectionContentJsonData(string json)
  653. {
  654. var data = JsonConvert.DeserializeObject<List<CollectionContentJsonData>>(json);
  655. return await AnalyzeAsync(data);
  656. }
  657. }
  658. }