AdminCommentController.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using System.Threading.Tasks;
  2. using GxPress.Common.Page;
  3. using GxPress.Common.Tools;
  4. using GxPress.EnumConst;
  5. using GxPress.Repository.Interface;
  6. using GxPress.Request.Comment;
  7. using GxPress.Result.Comment;
  8. using Microsoft.AspNetCore.Authorization;
  9. using Microsoft.AspNetCore.Mvc;
  10. namespace GxPress.Api.AdminControllers
  11. {
  12. /// <summary>
  13. /// 文章评论 通知评论
  14. /// </summary>
  15. [Route("api/admin/comment")]
  16. [ApiController]
  17. [Authorize]
  18. public class AdminCommentController : Controller
  19. {
  20. private readonly ICommentRepository _commentRepository;
  21. public AdminCommentController(ICommentRepository commentRepository)
  22. {
  23. _commentRepository = commentRepository;
  24. }
  25. /// <summary>
  26. /// 分页显示数据
  27. /// </summary>
  28. /// <param name="request"></param>
  29. /// <returns></returns>
  30. [HttpPost("page")]
  31. public async Task<PagedList<CommentPageResult>> GetPagedList([FromBody] CommentSearchPageRequest request)
  32. {
  33. return await _commentRepository.GetPagedList(request);
  34. }
  35. /// <summary>
  36. /// 删除
  37. /// </summary>
  38. /// <param name="request"></param>
  39. /// <returns></returns>
  40. [HttpDelete("delete")]
  41. public async Task<bool> Delete([FromBody] CommentDeleteRequest request)
  42. {
  43. return await _commentRepository.DeleteCommentAsync(request);
  44. }
  45. /// <summary>
  46. /// 后台评论分页列表
  47. /// </summary>
  48. /// <param name="request"></param>
  49. /// <returns></returns>
  50. [HttpPost("list")]
  51. public async Task<PagedList<CommentResult>> GetAllAsync(CommentSearchRequest request)
  52. {
  53. var result = await _commentRepository.GetAllAsync(request);
  54. foreach (var item in result.Items)
  55. {
  56. item.TypeValueString = ((AllTypeConst)item.TypeValue).GetDescriptionOriginal();
  57. }
  58. return result;
  59. }
  60. }
  61. }