截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GoodsComment.php 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\basics\Api;
  4. use app\common\server\JsonServer;
  5. use app\api\validate\GoodsCommentValidate;
  6. use think\exception\ValidateException;
  7. use app\api\logic\GoodsCommentLogic;
  8. class GoodsComment extends Api
  9. {
  10. public $like_not_need_login = ['lists', 'category', 'getCommentPage'];
  11. /**
  12. * 商品评论分类
  13. */
  14. public function category()
  15. {
  16. $get = $this->request->get();
  17. $data = GoodsCommentLogic::category($get);
  18. return JsonServer::success('', $data);
  19. }
  20. /**
  21. * 商品评论列表
  22. */
  23. public function lists(){
  24. $get = $this->request->get();
  25. $get['page_no'] = $this->page_no;
  26. $get['page_size'] = $this->page_size;
  27. $data = GoodsCommentLogic::lists($get);
  28. return JsonServer::success('', $data);
  29. }
  30. /**
  31. * 添加商品评论
  32. */
  33. public function addGoodsComment()
  34. {
  35. $post = $this->request->post();
  36. $post['user_id'] = $this->user_id;
  37. try{
  38. validate(GoodsCommentValidate::class)->check($post);
  39. }catch(ValidateException $e) {
  40. return JsonServer::error($e->getError());
  41. }
  42. $result = GoodsCommentLogic::addGoodsComment($post);
  43. if($result === true) {
  44. return JsonServer::success('评论成功');
  45. }
  46. return JsonServer::error(GoodsCommentLogic::getError());
  47. }
  48. /**
  49. * 未评论订单
  50. */
  51. public function getUnCommentOrder(){
  52. $get['user_id'] = $this->user_id;
  53. $get['page_no'] = $this->page_no;
  54. $get['page_size'] = $this->page_size;
  55. $data = GoodsCommentLogic::getUnCommentOrder($get);
  56. return JsonServer::success('', $data);
  57. }
  58. /**
  59. * 已评论订单
  60. */
  61. public function getCommentOrder()
  62. {
  63. $get['user_id'] = $this->user_id;
  64. $get['page_no'] = $this->page_no;
  65. $get['page_size'] = $this->page_size;
  66. $data = GoodsCommentLogic::getCommentOrder($get);
  67. return JsonServer::success('', $data);
  68. }
  69. /**
  70. * 商品评价页面
  71. */
  72. public function getCommentPage()
  73. {
  74. $get = $this->request->get();
  75. $result = GoodsCommentLogic::getCommentPage($get);
  76. if($result !== false) {
  77. return JsonServer::success('', $result);
  78. }
  79. return JsonServer::error(GoodsCommentLogic::getError());
  80. }
  81. /**
  82. * @notes 校验商品
  83. * @return \think\response\Json
  84. * @author 段誉
  85. * @date 2022/11/03 18:25
  86. */
  87. public function checkGoods()
  88. {
  89. $goodsId = $this->request->get('goods_id', 0);
  90. $result = GoodsCommentLogic::checkGoods($goodsId);
  91. if($result !== false) {
  92. return JsonServer::success('');
  93. }
  94. return JsonServer::error(GoodsCommentLogic::getError());
  95. }
  96. }