WebNoteController.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. using System.Threading.Tasks;
  2. using GxPress.Auth;
  3. using GxPress.Common.Page;
  4. using GxPress.Repository.Interface.Note;
  5. using GxPress.Request.App.Note;
  6. using GxPress.Request.Web;
  7. using GxPress.Result.App.Note;
  8. using GxPress.Result.Web;
  9. using GxPress.Service.Interface.Note;
  10. using Microsoft.AspNetCore.Authorization;
  11. using Microsoft.AspNetCore.Mvc;
  12. using Microsoft.Extensions.Logging;
  13. namespace GxPress.Api.WebControllers
  14. {
  15. /// <summary>
  16. /// 网页笔记
  17. /// </summary>
  18. [Route("api/web/note")]
  19. [ApiController]
  20. [Authorize]
  21. public class WebNoteController : Controller
  22. {
  23. private readonly ILogger<WebNoteController> _logger;
  24. private readonly INoteService _noteService;
  25. private readonly INoteRepository noteRepository;
  26. private readonly ILoginContext _loginContext;
  27. public WebNoteController(ILogger<WebNoteController> logger, INoteService noteService, ILoginContext loginContext, INoteRepository noteRepository)
  28. {
  29. _logger = logger;
  30. _noteService = noteService;
  31. _loginContext = loginContext;
  32. this.noteRepository = noteRepository;
  33. }
  34. /// <summary>
  35. /// 添加笔记
  36. /// </summary>
  37. /// <param name="request"></param>
  38. /// <returns></returns>
  39. [HttpPut("add")]
  40. public async Task<bool> InsertNote(NoteInRequest request)
  41. {
  42. // request.HtmlContent = StringUtils.RemoveEmoji(request.HtmlContent);
  43. // request.Content = StringUtils.RemoveEmoji(request.Content);
  44. request.UserId = _loginContext.AccountId;
  45. return await _noteService.InsertNoteAsync(request);
  46. }
  47. /// <summary>
  48. /// 获取笔记分页
  49. /// </summary>
  50. /// <param name="request"></param>
  51. /// <returns></returns>
  52. [HttpPost("search")]
  53. public async Task<PagedList<NotePageListRequest>> NotePageList(NoteSearchPageListRequest request)
  54. {
  55. request.UserId = _loginContext.AccountId;
  56. return await _noteService.NotePageListAsync(request);
  57. }
  58. /// <summary>
  59. /// 获取笔记详情
  60. /// </summary>
  61. /// <param name="id"></param>
  62. /// <returns></returns>
  63. [HttpGet("{id}")]
  64. public async Task<NoteDetailResult> GetNoteDetail(int id)
  65. {
  66. var note = await _noteService.GetNoteDetailAsync(id, _loginContext.AccountId);
  67. return note;
  68. }
  69. /// <summary>
  70. /// 获取笔记详情
  71. /// </summary>
  72. /// <param name="id"></param>
  73. /// <returns></returns>
  74. [HttpGet("web/{id}")]
  75. [AllowAnonymous]
  76. public async Task<NoteDetailResult> GetWebNoteDetail(int id)
  77. {
  78. var note = await _noteService.GetNoteDetailAsync(id, 0);
  79. return note;
  80. }
  81. /// <summary>
  82. /// 修改笔记
  83. /// </summary>
  84. /// <param name="note"></param>
  85. /// <returns></returns>
  86. [HttpPut("update")]
  87. public async Task<bool> UpdateNote(Entity.Note.Note note)
  88. {
  89. // note.HtmlContent = StringUtils.RemoveEmoji(note.HtmlContent);
  90. // note.Content = StringUtils.RemoveEmoji(note.Content);
  91. // note.Title = StringUtils.RemoveEmoji(note.Title);
  92. return await _noteService.UpdateNoteAsync(note);
  93. }
  94. /// <summary>
  95. /// 删除笔记
  96. /// </summary>
  97. /// <param name="id"></param>
  98. /// <returns></returns>
  99. [HttpDelete("{id}")]
  100. public async Task<bool> DeleteAsync(int id) => await _noteService.DeleteAsync(id, _loginContext.AccountId);
  101. /// <summary>
  102. ///查询个人摘录
  103. /// </summary>
  104. /// <param name="request"></param>
  105. /// <returns></returns>
  106. [HttpPost("extract")]
  107. public async Task<PagedList<NoteUserExtractResult>> GetAllByUserId(NoteUserRequest request)
  108. {
  109. request.UserId = _loginContext.AccountId;
  110. return await _noteService.GetAllByUserId(request);
  111. }
  112. /// <summary>
  113. /// web页面查询话题
  114. /// </summary>
  115. /// <param name="request"></param>
  116. /// <returns></returns>
  117. [HttpPost("topic")]
  118. public async Task<PagedList<NoteTopicResult>> GetTopicNoteAsync(NoteSearchPageListRequest request)
  119. {
  120. request.UserId = _loginContext.AccountId;
  121. return await noteRepository.GetTopicNoteAsync(request);
  122. }
  123. /// <summary>
  124. /// 笔记没有文件夹分页
  125. /// </summary>
  126. /// <param name="request"></param>
  127. /// <returns></returns>
  128. [HttpPost("list")]
  129. public async Task<PagedList<NoteNotFolderPageResult>> GetNoteNotFolderPageResult(NoteSearchPageListRequest request)
  130. {
  131. request.UserId = _loginContext.AccountId;
  132. return await _noteService.GetNoteNotFolderPageResult(request);
  133. }
  134. /// <summary>
  135. /// 笔记设置置顶
  136. /// </summary>
  137. /// <param name="id"></param>
  138. /// <returns></returns>
  139. [HttpPut("{id}")]
  140. public async Task<bool> SetIsTopAsync(int id)
  141. {
  142. return await noteRepository.SetIsTopAsync(id);
  143. }
  144. /// <summary>
  145. /// 获取笔记/话题草稿分页
  146. /// </summary>
  147. /// <param name="request"></param>
  148. /// <returns></returns>
  149. [HttpPost("draft-list")]
  150. public async Task<PagedList<NoteNotFolderPageResult>> NoteTopicDraftPageListAsync(NoteSearchPageListRequest request)
  151. {
  152. request.UserId = _loginContext.AccountId;
  153. return await _noteService.NoteTopicDraftPageListAsync(request);
  154. }
  155. }
  156. }