WebCommentController.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using System.Threading.Tasks;
  2. using GxPress.Auth;
  3. using GxPress.Common.Page;
  4. using GxPress.Repository.Interface;
  5. using GxPress.Request.Comment;
  6. using GxPress.Result.Comment;
  7. using Microsoft.AspNetCore.Mvc;
  8. using GxPress.Common.Exceptions;
  9. using Microsoft.AspNetCore.Authorization;
  10. namespace GxPress.Api.WebControllers
  11. {
  12. /// <summary>
  13. /// 评论
  14. /// </summary>
  15. [Route("api/web/comment")]
  16. [ApiController]
  17. [Authorize]
  18. public class WebCommentController : Controller
  19. {
  20. private readonly ICommentRepository _commentRepository;
  21. private readonly ILoginContext _loginContext;
  22. public WebCommentController(ICommentRepository commentRepository, ILoginContext loginContext)
  23. {
  24. _commentRepository = commentRepository;
  25. _loginContext = loginContext;
  26. }
  27. /// <summary>
  28. /// 添加评论
  29. /// </summary>
  30. /// <param name="request"></param>
  31. /// <returns></returns>
  32. [HttpPost("add")]
  33. public async Task<bool> Add([FromBody] CommentInRequest request)
  34. {
  35. // request.Content = StringUtils.RemoveEmoji(request.Content);
  36. request.UserId = _loginContext.AccountId;
  37. if (string.IsNullOrWhiteSpace(request.Content) && string.IsNullOrWhiteSpace(request.JsonContent) && string.IsNullOrWhiteSpace(request.HtmlContent))
  38. throw new BusinessException("评论内容为空");
  39. return await _commentRepository.CommentInAsync(request) > 0;
  40. }
  41. /// <summary>
  42. /// 分页显示数据
  43. /// </summary>
  44. /// <param name="request"></param>
  45. /// <returns></returns>
  46. [HttpPost("list")]
  47. public async Task<PagedList<CommentPageResult>> GetPagedList([FromBody] CommentSearchPageRequest request)
  48. {
  49. return await _commentRepository.GetPagedList(request);
  50. }
  51. /// <summary>
  52. /// 删除
  53. /// </summary>
  54. /// <param name="request"></param>
  55. /// <returns></returns>
  56. [HttpDelete("delete")]
  57. public async Task<bool> Delete([FromBody] CommentDeleteRequest request)
  58. {
  59. return await _commentRepository.DeleteCommentAsync(request);
  60. }
  61. /// <summary>
  62. /// 修改评论
  63. /// </summary>
  64. /// <param name="request"></param>
  65. /// <returns></returns>
  66. [HttpPut("update")]
  67. public async Task<bool> UpdateComment([FromBody] CommentUpdateRequest request)
  68. {
  69. request.UserId = _loginContext.AccountId;
  70. return await _commentRepository.UpdateCommentAsync(request);
  71. }
  72. }
  73. }