NoteService.cs 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660
  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 Datory;
  8. using GxPress.Common.Exceptions;
  9. using GxPress.Common.Page;
  10. using GxPress.Common.Tools;
  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.Visit;
  16. using GxPress.Request.Analyze;
  17. using GxPress.Request.App.Middle;
  18. using GxPress.Request.App.Note;
  19. using GxPress.Result;
  20. using GxPress.Result.App.Note;
  21. using GxPress.Service.Interface.Analyze;
  22. using GxPress.Service.Interface.Middle;
  23. using GxPress.Service.Interface.Note;
  24. using GxPress.Service.Interface.Visit;
  25. using Newtonsoft.Json;
  26. using GxPress.Service.Interface.UserMiddle;
  27. using GxPress.Repository.Interface.RecordFolder;
  28. using GxPress.EnumConst;
  29. using GxPress.Request.App.Analyze;
  30. using GxPress.Result.Web;
  31. using GxPress.Request.Web;
  32. using GxPress.Repository.Interface.Media;
  33. namespace GxPress.Service.Implement.Note
  34. {
  35. public class NoteService : INoteService
  36. {
  37. private readonly IMiddleService _middleService;
  38. private readonly INoteRepository _noteRepository;
  39. private readonly IMiddleRepository _middleRepository;
  40. private readonly IUserRepository _userRepository;
  41. private readonly IMapper _mapper;
  42. private readonly IArticleRepository _articleRepository;
  43. private readonly INoticeRepository _noticeRepository;
  44. private readonly IMissiveRepository _missiveRepository;
  45. private readonly ITopicRepository _topicRepository;
  46. private readonly IGroupRepository _groupRepository;
  47. private readonly ICollectionRepository _collectionRepository;
  48. private readonly ICommentRepository _commentRepository;
  49. private readonly IVisitRepository _visitRepository;
  50. private readonly IVisitService _visitService;
  51. private readonly IFolderUserRepository _folderUserRepository;
  52. private readonly IAnalyzeService _analyzeService;
  53. private readonly IUserMiddleService _userMiddleService;
  54. private readonly IRecordFolderRepository recordFolderRepository;
  55. private readonly IMediaRepository mediaRepository;
  56. public NoteService(IMiddleService middleService, INoteRepository noteRepository,
  57. IMiddleRepository middleRepository, IMapper mapper, IUserRepository userRepository,
  58. IArticleRepository articleRepository, INoticeRepository noticeRepository,
  59. IMissiveRepository missiveRepository, ITopicRepository topicRepository, IGroupRepository groupRepository,
  60. ICollectionRepository collectionRepository, ICommentRepository commentRepository, IVisitRepository visitRepository, IVisitService visitService, IFolderUserRepository folderUserRepository, IAnalyzeService analyzeService, IUserMiddleService userMiddleService, IRecordFolderRepository recordFolderRepository, IMediaRepository mediaRepository)
  61. {
  62. _middleService = middleService;
  63. _noteRepository = noteRepository;
  64. _middleRepository = middleRepository;
  65. _mapper = mapper;
  66. _userRepository = userRepository;
  67. _articleRepository = articleRepository;
  68. _missiveRepository = missiveRepository;
  69. _noteRepository = noteRepository;
  70. _noticeRepository = noticeRepository;
  71. _topicRepository = topicRepository;
  72. _groupRepository = groupRepository;
  73. _collectionRepository = collectionRepository;
  74. _commentRepository = commentRepository;
  75. _visitRepository = visitRepository;
  76. _visitService = visitService;
  77. _folderUserRepository = folderUserRepository;
  78. _analyzeService = analyzeService;
  79. _userMiddleService = userMiddleService;
  80. this.recordFolderRepository = recordFolderRepository;
  81. this.mediaRepository = mediaRepository;
  82. }
  83. /// <summary>
  84. /// 添加个人笔记
  85. /// </summary>
  86. /// <param name="request"></param>
  87. /// <returns></returns>
  88. public async Task<bool> InsertNoteAsync(NoteInRequest request)
  89. {
  90. try
  91. {
  92. using (TransactionScope transactionScope = new TransactionScope())
  93. {
  94. if (string.IsNullOrEmpty(request.Content))
  95. throw new BusinessException("内容未填写");
  96. var noteContent = JsonConvert.DeserializeObject<List<ContentJsonData>>(request.Content);
  97. foreach (var item in noteContent)
  98. item.File = StringUtils.RemoveDomain(item.File);
  99. //获取公开
  100. if (request.FolderId == 0 && request.IsTopic)
  101. request.FolderId = await _middleRepository.GetSytemFolderAsync(request.UserId);
  102. //添加笔记
  103. var note = new Entity.Note.Note
  104. {
  105. Title = request.Title,
  106. Content = JsonConvert.SerializeObject(noteContent),
  107. HtmlContent = request.HtmlContent,
  108. UserId = request.UserId,
  109. IsDelete = false,
  110. IsTopic = request.IsTopic,
  111. FolderId = request.FolderId,
  112. MediaId = request.MediaId,
  113. MediaType = request.MediaType,
  114. CatalogId = request.CatalogId,
  115. ChapterId = request.ChapterId
  116. };
  117. var noteId = await _noteRepository.InsertAsync(note);
  118. //添加中间件
  119. var middleInsertTypes = new MiddleInsertTypeRequest
  120. {
  121. FolderId = request.FolderId,
  122. MiddleId = noteId,
  123. FolderType = request.IsTopic ? AllTypeConst.TopicNote.GetHashCode() : AllTypeConst.Note.GetHashCode(),
  124. UserId = request.UserId,
  125. MiddleSonId = 0,
  126. AttributeValue = 1,
  127. IsAdmin = true
  128. };
  129. await _middleService.InsertAsync(middleInsertTypes);
  130. //修改话题访问量
  131. await _visitService.AddVisit(request.UserId, middleInsertTypes.FolderType, noteId);
  132. //添加默认文件夹
  133. await recordFolderRepository.AddAsync(request.FolderId, request.UserId, request.FolderId);
  134. transactionScope.Complete();
  135. }
  136. }
  137. catch (Exception e)
  138. {
  139. Console.WriteLine(e);
  140. throw;
  141. }
  142. return true;
  143. }
  144. /// <summary>
  145. /// 获取笔记分页
  146. /// </summary>
  147. /// <param name="request"></param>
  148. /// <returns></returns>
  149. public async Task<PagedList<NotePageListRequest>> NotePageListAsync(NoteSearchPageListRequest request)
  150. {
  151. var result = await _noteRepository.NotePageListAsync(request);
  152. if (request.FolderId > 0)
  153. {
  154. var middle = await _middleRepository.GetMiddleAsync(request.FolderId);
  155. result.RoleId = middle != null ? middle.RoleId : 0;
  156. }
  157. //是否收藏和转发数量
  158. if (request.VisitUserId > 0)
  159. {
  160. var user = await _userRepository.GetAsync(request.VisitUserId);
  161. result.Author = user.Name;
  162. var analyzeRequest = new AnalyzeRequest();
  163. analyzeRequest.SourceUserId = request.VisitUserId;
  164. analyzeRequest.AnalyzeType = 3;
  165. analyzeRequest.CommentId = 0;
  166. analyzeRequest.SourceId = request.FolderId;
  167. analyzeRequest.UserId = request.UserId;
  168. analyzeRequest.TypeValue = 13;
  169. result.IsCollect = await _analyzeService.ExistsSourceUserAsync(analyzeRequest);
  170. analyzeRequest.AnalyzeType = 4;
  171. result.RetransmissionCount = await _analyzeService.RetransmissionCountAsync(analyzeRequest);
  172. }
  173. foreach (var item in result.Items)
  174. {
  175. if (!string.IsNullOrEmpty(item.FolderName))
  176. item.FolderId = item.Id;
  177. if (!string.IsNullOrEmpty(item.FolderParentName))
  178. item.FolderName = item.FolderParentName;
  179. //是否摘录
  180. if (item.MediaId > 0)
  181. {
  182. item.IsExtract = true;
  183. var query = Q.NewQuery();
  184. query.Where(nameof(Entity.tede2.Media.Media.Id), item.MediaId);
  185. item.MediaNoteResult = await mediaRepository.GetAsync(query);
  186. if (item.MediaNoteResult != null)
  187. item.MediaNoteResult.ImageUrls = StringUtils.AddDomain(item.MediaNoteResult.ImageUrls);
  188. }
  189. if (string.IsNullOrWhiteSpace(item.Content))
  190. item.Content = "[]";
  191. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  192. foreach (var contentJsonDataItem in contentJsonData)
  193. contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
  194. if (contentJsonData.Count == 0)
  195. item.DataType = 1;
  196. item.Content = "";
  197. if (contentJsonData.Count > 0)
  198. {
  199. var imgData = new List<ContentJsonData>();
  200. var FileData = new List<ContentJsonData>();
  201. var forCount = 1;
  202. var firstContent = string.Empty;
  203. foreach (var jsonData in contentJsonData)
  204. {
  205. if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount == 1)
  206. //文本
  207. firstContent = jsonData.Text;
  208. else if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount > 1)
  209. //文本
  210. continue;
  211. //图片
  212. else if (jsonData.TypeValue == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
  213. {
  214. if (imgData.Count > 9)
  215. break;
  216. imgData.Add(jsonData);
  217. }
  218. //附件
  219. else
  220. {
  221. FileData.Add(jsonData);
  222. break;
  223. }
  224. forCount++;
  225. }
  226. item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
  227. if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
  228. else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
  229. else item.DataType = 1;
  230. var contType = new List<int> { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
  231. item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
  232. }
  233. if (item.Data == null || item.Data.Count == 0)
  234. item.Data = new List<ContentJsonData>();
  235. // //获取共享人员
  236. // if (item.RoleId == 3)
  237. // {
  238. // var sourceId = item.Id;
  239. // if (item.ParentId > 0)
  240. // sourceId = item.MiddleSonId;
  241. // var userMiddles = await _userMiddleService.FindUserMiddlesAsync(item.FolderType, sourceId);
  242. // item.EnjoyUser = StringUtils.ObjectCollectionToString(userMiddles.Select(n => n.SourceName), "、");
  243. // // var folderUsers = await _folderUserRepository.GetAllAsync(Q.Where(nameof(FolderUser.MiddleId), item.Id).OrderByDesc(nameof(FolderUser.CreatedDate)).Take(10));
  244. // // item.EnjoyUser = StringUtils.ObjectCollectionToString(folderUsers.Select(n => n.UserName), "、");
  245. // }
  246. }
  247. return result;
  248. }
  249. /// <summary>
  250. /// 笔记解析
  251. /// </summary>
  252. /// <param name="data"></param>
  253. /// <returns></returns>
  254. public async Task<List<ContentJsonData>> AnalyzeAsync(List<ContentJsonData> data)
  255. {
  256. var result = new List<ContentJsonData>();
  257. var fileCount = data.Count(n => n.Type == 3);
  258. //提取图片
  259. if (data.Any(n => n.Type == 2))
  260. {
  261. var contentJsonData = new ContentJsonData { FileCount = fileCount, Type = 2 };
  262. //获取图片
  263. var imgList = data.Where(n => n.Type == 2);
  264. contentJsonData.ArticleImgUrl = imgList.Select(n => StringUtils.AddDomain(n.File)).ToList();
  265. result.Add(contentJsonData);
  266. return result;
  267. }
  268. //获取
  269. foreach (var item in data.Where(n => n.Type != 1 && n.Type != 3))
  270. {
  271. return await StructNoteData(item.Id, item.Type);
  272. }
  273. return result;
  274. }
  275. /// <summary>
  276. /// 类型1 txt文字 2 img:图片 3 file:文件 4 Article:文章 5 notice通知 6 topic话题 7 note笔记 8 collection收藏 9站内信 10小组
  277. /// </summary>
  278. /// <param name="collectionDataId"></param>
  279. /// <param name="collectionType"></param>
  280. /// <returns></returns>
  281. public async Task<List<ContentJsonData>> StructNoteData(int collectionDataId, int collectionType)
  282. {
  283. var list = new List<ContentJsonData>();
  284. //文章类型
  285. if (collectionType == 4)
  286. {
  287. var article = await _articleRepository.GetArticleAsync(collectionDataId);
  288. if (article == null)
  289. return new List<ContentJsonData>();
  290. var imageUrls = StringUtils.StringCollectionToStringList(article.ImageUrls).ToList();
  291. var articleImgUrl = new List<string>();
  292. foreach (var t in imageUrls)
  293. articleImgUrl.Add(StringUtils.AddDomain(t));
  294. list.Add(new ContentJsonData
  295. {
  296. Author = article.Source,
  297. Title = article.Title,
  298. CreatedData = article.CreatedDate,
  299. Type = 4,
  300. Id = article.Id,
  301. ArticleImgUrl = articleImgUrl,
  302. ReadCount = article.ReadCount
  303. });
  304. }
  305. //话题类型
  306. if (collectionType == 6)
  307. {
  308. var topic = await _topicRepository.GetAsync(collectionDataId);
  309. if (topic == null)
  310. return list;
  311. //查询ID
  312. var user = await _userRepository.GetAsync(topic.UserId);
  313. list.Add(new ContentJsonData
  314. {
  315. Author = user.Name,
  316. Title = topic.Title,
  317. CreatedData = topic.CreatedDate,
  318. Type = 6,
  319. Id = topic.Id,
  320. File = StringUtils.AddDomain(user.AvatarUrl),
  321. ReadCount = topic.ReadCount
  322. });
  323. }
  324. //收藏
  325. if (collectionType == 8)
  326. {
  327. var collection = await GetCollectionRecursion(collectionDataId);
  328. if (collection == null)
  329. return new List<ContentJsonData>();
  330. //1文章 2话题 3 收藏 4笔记 5通知 6站内信 7小组 8会议
  331. if (collection.CollectionType == 1)
  332. //4 Article:文章 5 notice通知 6 topic话题 7 note笔记 8 collection收藏 9站内信 10小组 11会议
  333. collection.CollectionType = 4;
  334. else if (collection.CollectionType == 2)
  335. collection.CollectionType = 6;
  336. else if (collection.CollectionType == 4)
  337. collection.CollectionType = 7;
  338. else if (collection.CollectionType == 6)
  339. collection.CollectionType = 9;
  340. else if (collection.CollectionType == 7)
  341. collection.CollectionType = 10;
  342. else if (collection.CollectionType == 8)
  343. collection.CollectionType = 11;
  344. list = await StructNoteData(collection.CollectionDataId, collection.CollectionType);
  345. // foreach (var item in list)
  346. // {
  347. // item.Type = 8;
  348. // }
  349. }
  350. //笔记
  351. if (collectionType == 7)
  352. {
  353. var note = await _noteRepository.GetAsync(collectionDataId);
  354. if (note == null)
  355. return list;
  356. var user = await _userRepository.GetAsync(note.UserId);
  357. list.Add(new ContentJsonData
  358. {
  359. Author = user.Name,
  360. NickName = user.Nick,
  361. Title = note.Title,
  362. CreatedData = note.CreatedDate,
  363. Type = 7,
  364. Id = note.Id,
  365. File = ""
  366. });
  367. }
  368. //通知
  369. if (collectionType == 5)
  370. {
  371. var notice = await _noticeRepository.GetAsync(collectionDataId);
  372. if (notice == null)
  373. return new List<ContentJsonData>();
  374. var user = await _userRepository.GetAsync(notice.UserId);
  375. list.Add(new ContentJsonData
  376. {
  377. Author = user.Name,
  378. Title = notice.Title,
  379. CreatedData = notice.CreatedDate,
  380. Type = 5,
  381. Id = notice.Id,
  382. File = ""
  383. });
  384. }
  385. //站内信
  386. if (collectionType == 9)
  387. {
  388. var missive = await _missiveRepository.GetAsync(collectionDataId);
  389. if (missive == null)
  390. return new List<ContentJsonData>();
  391. var user = await _userRepository.GetAsync(missive.UserId);
  392. list.Add(new ContentJsonData
  393. {
  394. Author = user.Name,
  395. Title = missive.Title,
  396. CreatedData = missive.CreatedDate,
  397. Type = 6,
  398. Id = missive.Id,
  399. File = ""
  400. });
  401. }
  402. //小组
  403. if (collectionType == 10)
  404. {
  405. if (collectionDataId == 0)
  406. return new List<ContentJsonData>();
  407. var group = await _groupRepository.GetAsync(collectionDataId);
  408. var user = await _userRepository.GetAsync(group.UserId);
  409. list.Add(new ContentJsonData
  410. {
  411. Author = user.Name,
  412. Title = group.Name,
  413. CreatedData = group.CreatedDate,
  414. Type = 7,
  415. Id = group.Id,
  416. File = StringUtils.AddDomain(group.AvatarUrl)
  417. });
  418. }
  419. return list;
  420. }
  421. /// <summary>
  422. /// 递归获取不是收藏的数据
  423. /// </summary>
  424. /// <param name="middleId"></param>
  425. /// <returns></returns>
  426. public async Task<Entity.Collection> GetCollectionRecursion(int middleId)
  427. {
  428. //var middle = await _middleRepository.GetMiddleAsync(middleId);
  429. var collection = await _collectionRepository.GetAsync(middleId);
  430. if (collection == null)
  431. return new Entity.Collection();
  432. if (collection.CollectionType == 3)
  433. await GetCollectionRecursion(collection.CollectionType);
  434. return collection;
  435. }
  436. /// <summary>
  437. /// 获取笔记详情
  438. /// </summary>
  439. /// <param name="id"></param>
  440. /// <param name="userId"></param>
  441. /// <returns></returns>
  442. public async Task<NoteDetailResult> GetNoteDetailAsync(int id, int userId)
  443. {
  444. var note = await _noteRepository.GetAsync(id);
  445. if (note == null || note.IsDelete)
  446. throw new BusinessException("已删除!");
  447. var result = _mapper.Map<NoteDetailResult>(note);
  448. var user = await _userRepository.GetAsync(result.UserId);
  449. result.Name = user.Name;
  450. result.AvatarUrl = StringUtils.AddDomainMin(user.AvatarUrl);
  451. var list = JsonConvert.DeserializeObject<List<ContentJsonData>>(note.Content);
  452. foreach (var item in list)
  453. item.File = StringUtils.AddDomain(item.File);
  454. if (userId == 0)
  455. return result;
  456. //获取共享文件夹名称
  457. if (result.FolderId > 0)
  458. {
  459. var middle = await _middleRepository.GetMiddleAsync(result.FolderId);
  460. result.FolderName = middle != null ? middle.FolderName : "";
  461. }
  462. var analyzeRequest = new Request.App.Analyze.AnalyzeRequest();
  463. analyzeRequest.TypeValue = note.IsTopic ? AllTypeConst.TopicNote.GetHashCode() : AllTypeConst.Note.GetHashCode();
  464. analyzeRequest.AnalyzeType = 1;
  465. analyzeRequest.SourceId = id;
  466. analyzeRequest.UserId = userId;
  467. //点赞数量
  468. result.PraiseCount = await _analyzeService.CountAsync(analyzeRequest);
  469. //是否点赞
  470. result.IsPraise = await _analyzeService.ExistsAsync(analyzeRequest);
  471. //获取话题的评论数量
  472. var commentCount =
  473. await _commentRepository.CountAsync(Q.Where(nameof(Entity.Comment.ArticleId), id).Where(nameof(Entity.Comment.TypeValue), analyzeRequest.TypeValue).Where(nameof(Entity.Comment.Pid), 0));
  474. result.CommentCount = commentCount;
  475. //获取话题的转发数量
  476. analyzeRequest.AnalyzeType = 4;
  477. var retransmissionCount = await _analyzeService.CountAsync(analyzeRequest);
  478. result.RetransmissionCount = retransmissionCount;
  479. result.IsRetransmission = await _analyzeService.ExistsAsync(analyzeRequest);
  480. //获取话题的收藏数量
  481. analyzeRequest.AnalyzeType = 3;
  482. var collectCount = await _analyzeService.CountAsync(analyzeRequest);
  483. result.CollectCount = collectCount;
  484. //是否收藏
  485. result.IsCollect = await _analyzeService.ExistsAsync(analyzeRequest);
  486. result.Data = list;
  487. //修改访问量
  488. await _visitService.AddVisit(userId, 4, id);
  489. //是否自建
  490. result.IsAdmin = note.UserId == userId;
  491. var praisePageSearchRequest = new PraisePageSearchRequest { SourceId = id, TypeValue = analyzeRequest.TypeValue, Page = 1, PerPage = 3 };
  492. result.NotePraisePagedList = await _analyzeService.GetPraisePageAsync(praisePageSearchRequest);
  493. return result;
  494. }
  495. /// <summary>
  496. /// 修改笔记
  497. /// </summary>
  498. /// <param name="note"></param>
  499. /// <returns></returns>
  500. public async Task<bool> UpdateNoteAsync(Entity.Note.Note note)
  501. {
  502. var entity = await _noteRepository.GetAsync(note.Id);
  503. if (string.IsNullOrWhiteSpace(note.Content) && string.IsNullOrWhiteSpace(note.Title))
  504. throw new BusinessException("标题和内容至少一项必填!");
  505. if (!string.IsNullOrWhiteSpace(note.Content))
  506. {
  507. var json = JsonConvert.DeserializeObject<List<ContentJsonData>>(note.Content);
  508. foreach (var item in json)
  509. item.File = StringUtils.RemoveDomain(item.File);
  510. entity.Content = JsonConvert.SerializeObject(json);
  511. entity.HtmlContent = note.HtmlContent;
  512. }
  513. else
  514. entity.Content = "";
  515. if (note.FolderId > 0)
  516. {
  517. entity.FolderId = note.FolderId;
  518. //获取middle
  519. var middle = await _middleRepository.GetMiddleAsync(Q.Where(nameof(Entity.Middle.Middle.MiddleId), note.Id).Where(nameof(Entity.Middle.Middle.FolderType), 4).Where(nameof(Entity.Middle.Middle.UserId), entity.UserId));
  520. if (middle != null)
  521. {
  522. //修改middle
  523. middle.ParentId = note.FolderId;
  524. await _middleRepository.UpdateAsync(middle);
  525. }
  526. }
  527. //if (!string.IsNullOrWhiteSpace(note.Title))
  528. entity.Title = note.Title;
  529. return await _noteRepository.UpdateAsync(entity);
  530. }
  531. public async Task<bool> DeleteAsync(int id, int userId)
  532. {
  533. //获取笔记
  534. var note = await _noteRepository.GetAsync(id);
  535. if (note == null || note.UserId != userId)
  536. throw new BusinessException("不满足删除条件!");
  537. try
  538. {
  539. using (var transactionScope = new TransactionScope())
  540. {
  541. //修改笔记
  542. note.IsDelete = true;
  543. await _noteRepository.DeleteAsync(id);
  544. //获取middle修改middle
  545. var middle = await _middleRepository.GetMiddleAsync(Q.Where(nameof(Entity.Middle.Middle.MiddleId), id).Where(nameof(Entity.Middle.Middle.UserId), userId));
  546. await _middleRepository.DeleteAsync(Q.Where(nameof(Entity.Middle.Middle.Id), middle.Id));
  547. transactionScope.Complete();
  548. }
  549. }
  550. catch (System.Exception ex)
  551. {
  552. throw new BusinessException(ex.Message);
  553. }
  554. return true;
  555. }
  556. /// <summary>
  557. /// 查询个人摘录
  558. /// </summary>
  559. /// <param name="request"></param>
  560. /// <returns></returns>
  561. public async Task<PagedList<NoteUserExtractResult>> GetAllByUserId(NoteUserRequest request)
  562. {
  563. var result = await _noteRepository.GetAllByUserId(request);
  564. foreach (var item in result.Items)
  565. {
  566. item.AvatarUrl = StringUtils.AddDomain(item.AvatarUrl);
  567. }
  568. return result;
  569. }
  570. /// <summary>
  571. /// 笔记没有文件夹分页
  572. /// </summary>
  573. /// <param name="request"></param>
  574. /// <returns></returns>
  575. public async Task<PagedList<NoteNotFolderPageResult>> GetNoteNotFolderPageResult(NoteSearchPageListRequest request)
  576. {
  577. var result = await _noteRepository.GetNoteNotFolderPageResult(request);
  578. foreach (var item in result.Items)
  579. {
  580. if (string.IsNullOrEmpty(item.FolderName))
  581. item.FolderName = "根目录";
  582. // item.MiddleId = item.Id;
  583. //是否摘录
  584. if (item.MediaId > 0)
  585. {
  586. item.IsExtract = true;
  587. var query = Q.NewQuery();
  588. query.Where(nameof(Entity.tede2.Media.Media.Id), item.MediaId);
  589. item.MediaNoteResult = await mediaRepository.GetAsync(query);
  590. if (item.MediaNoteResult != null)
  591. item.MediaNoteResult.ImageUrls = StringUtils.AddDomain(item.MediaNoteResult.ImageUrls);
  592. }
  593. if (string.IsNullOrWhiteSpace(item.Content))
  594. item.Content = "[]";
  595. var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(item.Content);
  596. foreach (var contentJsonDataItem in contentJsonData)
  597. contentJsonDataItem.File = StringUtils.AddDomain(contentJsonDataItem.File);
  598. if (contentJsonData.Count == 0)
  599. item.DataType = 1;
  600. item.Content = "";
  601. if (contentJsonData.Count > 0)
  602. {
  603. var imgData = new List<ContentJsonData>();
  604. var FileData = new List<ContentJsonData>();
  605. var forCount = 1;
  606. var firstContent = string.Empty;
  607. foreach (var jsonData in contentJsonData)
  608. {
  609. if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount == 1)
  610. //文本
  611. firstContent = jsonData.Text;
  612. else if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount > 1)
  613. //文本
  614. continue;
  615. //图片
  616. else if (jsonData.TypeValue == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
  617. {
  618. if (imgData.Count > 9)
  619. break;
  620. imgData.Add(jsonData);
  621. }
  622. //附件
  623. else
  624. {
  625. FileData.Add(jsonData);
  626. break;
  627. }
  628. forCount++;
  629. }
  630. item.Content = string.IsNullOrWhiteSpace(firstContent) ? "" : firstContent;
  631. if (imgData.Count > 0) { item.DataType = 2; item.Data = imgData; }
  632. else if (FileData.Count > 0) { item.DataType = 3; item.Data = FileData; }
  633. else item.DataType = 1;
  634. var contType = new List<int> { AllTypeConst.Text.GetHashCode(), AllTypeConst.Image.GetHashCode() };
  635. item.FileCount = contentJsonData.Count(n => !contType.Contains(n.Type));
  636. }
  637. if (item.Data == null || item.Data.Count == 0)
  638. item.Data = new List<ContentJsonData>();
  639. }
  640. return result;
  641. }
  642. }
  643. }