using System.Threading.Tasks; using GxPress.Common.Page; using GxPress.Common.Tools; using GxPress.EnumConst; using GxPress.Repository.Interface; using GxPress.Request.Comment; using GxPress.Result.Comment; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace GxPress.Api.AdminControllers { /// /// 文章评论 通知评论 /// [Route("api/admin/comment")] [ApiController] [Authorize] public class AdminCommentController : Controller { private readonly ICommentRepository _commentRepository; public AdminCommentController(ICommentRepository commentRepository) { _commentRepository = commentRepository; } /// /// 分页显示数据 /// /// /// [HttpPost("page")] public async Task> GetPagedList([FromBody] CommentSearchPageRequest request) { return await _commentRepository.GetPagedList(request); } /// /// 删除 /// /// /// [HttpDelete("delete")] public async Task Delete([FromBody] CommentDeleteRequest request) { return await _commentRepository.DeleteCommentAsync(request); } /// /// 后台评论分页列表 /// /// /// [HttpPost("list")] public async Task> GetAllAsync(CommentSearchRequest request) { var result = await _commentRepository.GetAllAsync(request); foreach (var item in result.Items) { item.TypeValueString = ((AllTypeConst)item.TypeValue).GetDescriptionOriginal(); } return result; } } }