截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CommunityComment.php 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\CommunityCommentLogic;
  4. use app\api\validate\CommunityCommentValidate;
  5. use app\common\basics\Api;
  6. use app\common\server\JsonServer;
  7. /**
  8. * 种草社区评论
  9. * Class CommunityComment
  10. * @package app\api\controller
  11. */
  12. class CommunityComment extends Api
  13. {
  14. public $like_not_need_login = ['lists'];
  15. /**
  16. * @notes 评论列表
  17. * @return \think\response\Json
  18. * @author 段誉
  19. * @date 2022/5/7 16:02
  20. */
  21. public function lists()
  22. {
  23. $get = (new CommunityCommentValidate())->goCheck('lists');
  24. $result = CommunityCommentLogic::getCommentLists($this->user_id, $get, $this->page_no, $this->page_size);
  25. return JsonServer::success('', $result);
  26. }
  27. /**
  28. * @notes 添加评论
  29. * @return \think\response\Json
  30. * @author 段誉
  31. * @date 2022/5/7 11:53
  32. */
  33. public function add()
  34. {
  35. $post = $this->request->post();
  36. (new CommunityCommentValidate())->goCheck('add');
  37. $result = CommunityCommentLogic::addComment($this->user_id, $post);
  38. if(false === $result) {
  39. return JsonServer::error(CommunityCommentLogic::getError() ?: '评论失败');
  40. }
  41. return JsonServer::success($result['msg'], $result['data']);
  42. }
  43. /**
  44. * @notes 一级评论子级评论
  45. * @return \think\response\Json
  46. * @throws \think\db\exception\DataNotFoundException
  47. * @throws \think\db\exception\DbException
  48. * @throws \think\db\exception\ModelNotFoundException
  49. * @author 段誉
  50. * @date 2022/5/9 14:34
  51. */
  52. public function commentChild()
  53. {
  54. $get = $this->request->get();
  55. $result = CommunityCommentLogic::getChildComment($this->user_id, $get, $this->page_no, $this->page_size);
  56. return JsonServer::success('', $result);
  57. }
  58. }