CommentController.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. namespace GxPress.Api.AppControllers
  10. {
  11. /// <summary>
  12. /// 评论
  13. /// </summary>
  14. [Route("api/app/comment")]
  15. [ApiController]
  16. public class CommentController : ControllerBase
  17. {
  18. private readonly ICommentRepository _commentRepository;
  19. private readonly ILoginContext _loginContext;
  20. public CommentController(ICommentRepository commentRepository, ILoginContext loginContext)
  21. {
  22. _commentRepository = commentRepository;
  23. _loginContext = loginContext;
  24. }
  25. /// <summary>
  26. /// 添加评论
  27. /// </summary>
  28. /// <param name="request"></param>
  29. /// <returns></returns>
  30. [HttpPost("add")]
  31. public async Task<bool> Add([FromBody] CommentInRequest request)
  32. {
  33. // request.Content = StringUtils.RemoveEmoji(request.Content);
  34. request.UserId = _loginContext.AccountId;
  35. if (string.IsNullOrWhiteSpace(request.Content))
  36. throw new BusinessException("评论内容为空");
  37. return await _commentRepository.CommentInAsync(request) > 0;
  38. }
  39. /// <summary>
  40. /// 分页显示数据
  41. /// </summary>
  42. /// <param name="request"></param>
  43. /// <returns></returns>
  44. [HttpPost("list")]
  45. public async Task<PagedList<CommentPageResult>> GetPagedList([FromBody] CommentSearchPageRequest request)
  46. {
  47. return await _commentRepository.GetPagedList(request);
  48. }
  49. /// <summary>
  50. /// 删除
  51. /// </summary>
  52. /// <param name="request"></param>
  53. /// <returns></returns>
  54. [HttpDelete("delete")]
  55. public async Task<bool> Delete([FromBody] CommentDeleteRequest request)
  56. {
  57. return await _commentRepository.DeleteCommentAsync(request);
  58. }
  59. /// <summary>
  60. /// 修改评论
  61. /// </summary>
  62. /// <param name="request"></param>
  63. /// <returns></returns>
  64. [HttpPut("update")]
  65. public async Task<bool> UpdateComment([FromBody]CommentUpdateRequest request)
  66. {
  67. request.UserId = _loginContext.AccountId;
  68. return await _commentRepository.UpdateCommentAsync(request);
  69. }
  70. }
  71. }