截流自动化的商城平台
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.

GoodsCommentLogic.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\goods\Goods;
  5. use app\common\model\order\OrderGoods;
  6. use app\common\model\goods\GoodsComment;
  7. use app\common\model\goods\GoodsCommentImage;
  8. use app\common\model\order\Order;
  9. use app\common\model\shop\Shop;
  10. use app\common\server\UrlServer;
  11. use app\common\model\goods\GoodsItem;
  12. use think\facade\Db;
  13. class GoodsCommentLogic extends Logic
  14. {
  15. //分类列表
  16. public static function category($get){
  17. // 全部评论数
  18. $all_count = GoodsComment::where(['del'=>0,'status'=>1,'goods_id'=>$get['goods_id']])
  19. ->count();
  20. // 好评: 商品评价星级 > 3
  21. $good_count = GoodsComment::where(['del'=>0,'status'=>1,'goods_id'=>$get['goods_id']])
  22. ->where('goods_comment','>',3)
  23. ->count();
  24. // 中评:商品评价星级 = 3
  25. $medium_count = GoodsComment::where(['del'=>0,'status'=>1,'goods_id'=>$get['goods_id']])
  26. ->where('goods_comment','=',3)
  27. ->count();
  28. // 差评:商品评价星级 < 3
  29. $bad_count = GoodsComment::where(['del'=>0,'status'=>1,'goods_id'=>$get['goods_id']])
  30. ->where('goods_comment','<',3)
  31. ->count();
  32. // 图片评论数量
  33. $image_count = GoodsComment::where(['del'=>0,'status'=>1,'goods_id'=>$get['goods_id']])
  34. ->where('is_image_comment','=',1)
  35. ->count();
  36. // 好评率
  37. if($all_count == 0){
  38. $score ='100%';
  39. }else{
  40. $score = round($good_count/$all_count*100,2).'%';
  41. }
  42. return ['comment'=>
  43. [
  44. [
  45. 'name' => '全部',
  46. 'id' => 0,
  47. 'count' => $all_count
  48. ],
  49. [
  50. 'name' => '晒图',
  51. 'id' => 1,
  52. 'count' => $image_count
  53. ],
  54. [
  55. 'name' => '好评',
  56. 'id' => 2,
  57. 'count' => $good_count
  58. ],
  59. [
  60. 'name' => '中评',
  61. 'id' => 3,
  62. 'count' => $medium_count
  63. ],
  64. [
  65. 'name' => '差评',
  66. 'id' => 4,
  67. 'count' => $bad_count
  68. ]
  69. ] ,
  70. 'percent' => $score
  71. ];
  72. }
  73. public static function lists($get)
  74. {
  75. $where = [
  76. ['gc.goods_id', '=', $get['goods_id']],
  77. ['gc.del', '=', 0],
  78. ['gc.status', '=', 1],
  79. ];
  80. $get['type'] = $get['type'] ?? 0;
  81. switch($get['type']) {
  82. case 1: // 晒图
  83. $where[] = ['gc.is_image_comment', '=', 1];
  84. break;
  85. case 2: // 好评
  86. $where[] = ['gc.goods_comment', '>', 3];
  87. break;
  88. case 3: // 中评
  89. $where[] = ['gc.goods_comment', '=', 3];
  90. break;
  91. case 4: // 差评
  92. $where[] = ['gc.goods_comment', '<', 3];
  93. break;
  94. }
  95. $lists = GoodsComment::alias('gc')
  96. ->field('gc.id,gc.goods_comment,gc.create_time,gc.comment,u.avatar,u.nickname,g.name as goods_name,reply,spec_value_str')
  97. ->leftJoin('user u', 'u.id=gc.user_id')
  98. ->leftJoin('goods g', 'g.id=gc.goods_id')
  99. ->leftJoin('goods_item gi', 'gi.id=gc.item_id')
  100. ->where($where)
  101. ->order('gc.id', 'desc')
  102. ->page($get['page_no'], $get['page_size'])
  103. ->select()
  104. ->toArray();
  105. $count = GoodsComment::alias('gc')
  106. ->field('gc.goods_comment,gc.create_time,gc.comment,u.avatar,u.nickname,g.name as goods_name')
  107. ->leftJoin('user u', 'u.id=gc.user_id')
  108. ->leftJoin('goods g', 'g.id=gc.goods_id')
  109. ->where($where)
  110. ->count();
  111. foreach($lists as &$item) {
  112. // 头像
  113. $item['avatar'] = UrlServer::getFileUrl($item['avatar']);
  114. // 图片评价
  115. $item['image'] = GoodsCommentImage::where('goods_comment_id', $item['id'])->column('uri');
  116. foreach($item['image'] as $subKey => $subItem) {
  117. $item['image'][$subKey] = UrlServer::getFileUrl($subItem);
  118. }
  119. }
  120. $data = [
  121. 'lists' => $lists,
  122. 'count' => $count,
  123. 'more' => is_more($count, $get['page_no'], $get['page_size']),
  124. 'page_no' => $get['page_no'],
  125. 'page_size' => $get['page_size']
  126. ];
  127. return $data;
  128. }
  129. public static function addGoodsComment($post){
  130. Db::startTrans();
  131. try{
  132. $order_goods= OrderGoods::where(['id'=>$post['order_goods_id'],'is_comment'=>0])
  133. ->field('order_id,goods_id,item_id,shop_id')
  134. ->findOrEmpty();
  135. if($order_goods->isEmpty()){
  136. throw new \Exception('商品已评价,请勿重复评价');
  137. }
  138. // 校验商品是否已下架或删除
  139. $goods = Goods::where('id', $order_goods['goods_id'])->findOrEmpty();
  140. if ($goods->isEmpty() || $goods['del'] > 0 || $goods['status'] != 1) {
  141. throw new \Exception('商品已下架或不存在');
  142. }
  143. $order_goods = $order_goods->toArray();
  144. $time = time();
  145. $comment_data= [
  146. 'order_goods_id' =>$post['order_goods_id'],
  147. 'user_id' => $post['user_id'],
  148. 'shop_id' => $order_goods['shop_id'],
  149. 'goods_id' => $order_goods['goods_id'],
  150. 'item_id' => $order_goods['item_id'],
  151. 'goods_comment' => $post['goods_comment'],
  152. 'description_comment' => $post['description_comment'],
  153. 'service_comment' => $post['service_comment'],
  154. 'express_comment' => $post['express_comment'],
  155. 'create_time' => $time,
  156. 'update_time' => $time,
  157. ];
  158. // 文字评价
  159. isset($post['comment']) && $comment_data['comment'] = $post['comment'];
  160. $goodsComment = GoodsComment::create($comment_data);
  161. if(!$goodsComment->id){
  162. throw new \Exception('评价失败,请重新提交');
  163. }
  164. // 图片评价
  165. if(isset($post['image']) && !empty($post['image'])){
  166. foreach ($post['image'] as $image_val){
  167. $image[]= ['shop_id' => $order_goods['shop_id'], 'uri'=>$image_val,'goods_comment_id'=>$goodsComment->id];
  168. }
  169. $goodsCommentImage = new GoodsCommentImage();
  170. $goodsCommentImage->saveAll($image);
  171. GoodsComment::update([
  172. 'id' => $goodsComment->id,
  173. 'is_image_comment' => 1
  174. ]);
  175. }
  176. // 将子订单是否评价标识置为已评价
  177. OrderGoods::where('id',$post['order_goods_id'])->update(['is_comment'=>1]);
  178. // 检查主订单下的所有子订单是否已完成评价
  179. $isCommentArr = OrderGoods::where('order_id', $order_goods['order_id'])->column('is_comment', 'id');
  180. if(in_array(0, $isCommentArr)) { // 还有未评价的子订单
  181. Order::where('id', $order_goods['order_id'])->update(['is_comment'=>1]); // 部分评价
  182. }else{ // 全部子订单已完成评价
  183. Order::where('id', $order_goods['order_id'])->update(['is_comment'=>2]); // 已全部评价
  184. }
  185. //更新店铺评分和评级
  186. $shop_id = $order_goods['shop_id'];
  187. self::setShopScore($shop_id);
  188. Db::commit();
  189. return true;
  190. }catch(\Exception $e) {
  191. Db::rollback();
  192. self::$error = $e->getMessage();
  193. return false;
  194. }
  195. }
  196. /***
  197. * 更新店铺评分评级
  198. * @param $shop_id
  199. */
  200. public static function setShopScore($shop_id){
  201. $comment_sum = GoodsComment::where('shop_id',$shop_id)->sum('goods_comment'); //该店铺商品评分之和
  202. $service_comment_sum = GoodsComment::where('shop_id',$shop_id)->sum('service_comment'); //该店铺服务评分之和
  203. $express_comment_sum = GoodsComment::where('shop_id',$shop_id)->sum('express_comment'); //该店铺物流评分之和
  204. $description_comment_sum = GoodsComment::where('shop_id',$shop_id)->sum('description_comment'); //该店铺描述相符评分之和
  205. $comment_count = GoodsComment::where('shop_id',$shop_id)->count(); //该店铺商品评论数
  206. $shop_score = round($comment_sum / $comment_count,1); //店铺评分
  207. $shop_star = round(($service_comment_sum + $express_comment_sum + $description_comment_sum) /(3*$comment_count),1); //店铺评级
  208. Shop::where('id',$shop_id)->update(['score'=>$shop_score,'star'=>$shop_star]);
  209. }
  210. public static function getUnCommentOrder($get){
  211. $where = [
  212. ['order_status', '=', Order::STATUS_FINISH],
  213. ['del', '=', 0],
  214. ['user_id', '=', $get['user_id']],
  215. ];
  216. $orderGoodsPreModel = 'order_goods_un_comment.goods_item';
  217. $where[] = ['is_comment', 'in', [0,1]]; // 未评价、部分未评价
  218. $lists = Order::field('id,shop_id,order_sn,create_time,is_comment')
  219. ->with(['shop', $orderGoodsPreModel])
  220. ->where($where)
  221. ->page($get['page_no'], $get['page_size'])
  222. ->select()
  223. ->toArray();
  224. $count = Order::where($where)->count();
  225. $data = [
  226. 'lists' => $lists,
  227. 'count' => $count,
  228. 'more' => is_more($count, $get['page_no'], $get['page_size']),
  229. 'page_no' => $get['page_no'],
  230. 'page_size' => $get['page_size']
  231. ];
  232. return $data;
  233. }
  234. public static function getCommentOrder($get)
  235. {
  236. $lists = GoodsComment::field('id,order_goods_id,shop_id,goods_id,item_id,goods_comment,comment,create_time')
  237. ->with(['goods', 'order_goods', 'goods_item', 'goods_comment_image'])
  238. ->where([
  239. 'user_id' => $get['user_id'],
  240. 'del' => 0,
  241. 'status' => 1
  242. ])
  243. ->order('id', 'desc')
  244. ->page($get['page_no'], $get['page_size'])
  245. ->select()
  246. ->toArray();
  247. $count = GoodsComment::where('user_id', $get['user_id'])->count();
  248. // 获取所有店铺名称、logo
  249. $shop_ids = array_unique(array_column($lists,'shop_id'));
  250. $shop_name_lists = Shop::where(['id'=>$shop_ids])->column('name,logo', 'id');
  251. // 图片处理
  252. foreach($lists as &$item) {
  253. $item['shop_name'] = '';
  254. $item['shop_logo'] = '';
  255. if(isset($shop_name_lists[$item['shop_id']]) && $shop_name_lists[$item['shop_id']]){
  256. $shop_info = $shop_name_lists[$item['shop_id']];
  257. $item['shop_name'] = $shop_info['name'];
  258. $item['shop_logo'] = UrlServer::getFileUrl($shop_info['logo']);
  259. }
  260. foreach($item['goods_comment_image'] as $subItem) {
  261. $item['goods_comment_image_arr'][] = UrlServer::getFileUrl($subItem['uri']);
  262. }
  263. }
  264. $data = [
  265. 'count' => $count,
  266. 'lists' => $lists,
  267. 'more' => is_more($count, $get['page_no'], $get['page_size']),
  268. 'page_no' => $get['page_no'],
  269. 'page_size' => $get['page_size']
  270. ];
  271. return $data;
  272. }
  273. public static function getCommentPage($get)
  274. {
  275. $orderGoods = OrderGoods::field('id,item_id, shop_id,goods_name,goods_num,goods_price,total_price')
  276. ->with(['shop', 'goods_item'])
  277. ->where('id', $get['order_goods_id'])
  278. ->findOrEmpty();
  279. if($orderGoods->isEmpty()) {
  280. self::$error = '获取失败';
  281. return false;
  282. }
  283. return $orderGoods->toArray();
  284. }
  285. /**
  286. * @notes 校验商品
  287. * @param $goodsId
  288. * @return bool
  289. * @author 段誉
  290. * @date 2022/11/03 18:25
  291. */
  292. public static function checkGoods($goodsId)
  293. {
  294. $goods = Goods::findOrEmpty($goodsId);
  295. if ($goods->isEmpty() || $goods['del'] > 0 || $goods['status'] != 1) {
  296. self::$error = '商品已下架或不存在';
  297. return false;
  298. }
  299. return true;
  300. }
  301. }