Cart.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2021 https://www.yiovo.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
  8. // +----------------------------------------------------------------------
  9. // | Author: 萤火科技 <admin@yiovo.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types=1);
  12. namespace app\index\service;
  13. use app\index\model\Cart as CartModel;
  14. use app\index\model\Goods as GoodsModel;
  15. use app\index\service\User as UserService;
  16. use cores\exception\BaseException;
  17. use app\common\library\helper;
  18. use app\common\service\BaseService;
  19. /**
  20. * 服务类: 购物车
  21. * Class Cart
  22. * @package app\api\service
  23. */
  24. class Cart extends BaseService
  25. {
  26. /**
  27. * 购物车商品列表(用于购物车页面)
  28. * @param array $cartIds 购物车记录ID集
  29. * @param bool $isGoodsGradeMoney 是否设置商品会员价
  30. * @return array|\think\Collection
  31. * @throws BaseException
  32. * @throws \think\db\exception\DataNotFoundException
  33. * @throws \think\db\exception\DbException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. */
  36. public function getList(array $cartIds = [], bool $isGoodsGradeMoney = true)
  37. {
  38. // 购物车列表
  39. $cartList = $this->getCartList($cartIds);
  40. if ($cartList->isEmpty()) {
  41. return [];
  42. }
  43. // 整理商品ID集
  44. $goodsIds = helper::getArrayColumn($cartList, 'goods_id');
  45. if (empty($goodsIds)) return [];
  46. // 获取商品列表
  47. $goodsList = $this->getGoodsListByIds($goodsIds, $isGoodsGradeMoney);
  48. // 整理购物车商品列表
  49. foreach ($cartList as $cartIdx => $item) {
  50. // 查找商品, 商品不存在则删除该购物车记录
  51. $result = $this->findGoods($goodsList, $item, $isGoodsGradeMoney);
  52. if ($result !== false) {
  53. $cartList[$cartIdx]['goods'] = $result;
  54. } else {
  55. $this->clear([$item['id']]);
  56. unset($cartList[$cartIdx]);
  57. }
  58. }
  59. return $cartList;
  60. }
  61. public function getCartIds()
  62. {
  63. $userId = UserService::getCurrentLoginUserId();
  64. if (empty($userId))return [];
  65. $model = new CartModel;
  66. $carts = $model->where('user_id', '=', $userId)
  67. ->where('is_delete', '=', 0)
  68. ->select()->toArray();
  69. return array_column($carts,'id');
  70. }
  71. /**
  72. * 获取购物车商品列表(用于订单结算台)
  73. * @param array $cartIds 购物车记录ID集
  74. * @return array
  75. * @throws BaseException
  76. * @throws \think\db\exception\DataNotFoundException
  77. * @throws \think\db\exception\DbException
  78. * @throws \think\db\exception\ModelNotFoundException
  79. */
  80. public function getOrderGoodsList(array $cartIds = []): array
  81. {
  82. // 购物车列表
  83. $cartList = $this->getList($cartIds, false);
  84. // 订单商品列表
  85. $goodsList = [];
  86. foreach ($cartList as $item) {
  87. // 商品记录
  88. $goods = $item['goods'];
  89. // 商品单价
  90. $goods['goods_price'] = $goods['skuInfo']['goods_price'];
  91. // 商品购买数量
  92. $goods['total_num'] = $item['goods_num'];
  93. // 商品SKU索引
  94. $goods['goods_sku_id'] = $item['goods_sku_id'];
  95. // 商品购买总金额
  96. $goods['total_price'] = helper::bcmul($goods['goods_price'], $item['goods_num']);
  97. $goodsList[] = $goods;
  98. }
  99. return $goodsList;
  100. }
  101. /**
  102. * 检索查询商品
  103. * @param mixed $goodsList 商品列表
  104. * @param CartModel $item 购物车记录
  105. * @param bool $isGoodsGradeMoney 是否设置商品会员价
  106. * @return false|mixed
  107. * @throws BaseException
  108. */
  109. private function findGoods($goodsList, CartModel $item, bool $isGoodsGradeMoney = true)
  110. {
  111. // 查找商品记录
  112. $goodsInfo = helper::getArrayItemByColumn($goodsList, 'goods_id', $item['goods_id']);
  113. if (empty($goodsInfo)) {
  114. return false;
  115. }
  116. // 获取当前选择的商品SKU信息
  117. $goodsInfo['skuInfo'] = GoodsModel::getSkuInfo($goodsInfo, $item['goods_sku_id'], $isGoodsGradeMoney);
  118. // 这里需要用到clone, 因对象是引用传递 后面的值会覆盖前面的
  119. return clone $goodsInfo;
  120. }
  121. /**
  122. * 删除购物车中指定记录
  123. * @param array $cartIds
  124. * @return bool
  125. * @throws BaseException
  126. */
  127. public function clear(array $cartIds = []): bool
  128. {
  129. $model = new CartModel;
  130. return $model->clear($cartIds);
  131. }
  132. /**
  133. * 根据商品ID集获取商品列表
  134. * @param array $goodsIds
  135. * @param bool $isGoodsGradeMoney 是否设置会员折扣价
  136. * @return mixed
  137. */
  138. private function getGoodsListByIds(array $goodsIds, bool $isGoodsGradeMoney = true)
  139. {
  140. $model = new GoodsModel;
  141. return $model->isGoodsGradeMoney($isGoodsGradeMoney)->getListByIdsFromApi($goodsIds);
  142. }
  143. /**
  144. * 获取当前用户的购物车记录
  145. * @param array $cartIds 购物车记录ID集
  146. * @return \think\Collection
  147. * @throws BaseException
  148. * @throws \think\db\exception\DataNotFoundException
  149. * @throws \think\db\exception\DbException
  150. * @throws \think\db\exception\ModelNotFoundException
  151. */
  152. private function getCartList(array $cartIds = []): \think\Collection
  153. {
  154. // 当前用户ID
  155. $userId = UserService::getCurrentLoginUserId();
  156. // 购物车记录模型
  157. $model = new CartModel;
  158. // 检索查询条件
  159. $filter = [];
  160. if (!empty($cartIds)) {
  161. $filter[] = ['id', 'in', $cartIds];
  162. }
  163. // 查询列表记录
  164. return $model->where($filter)
  165. ->where('user_id', '=', $userId)
  166. ->where('is_delete', '=', 0)
  167. ->select();
  168. }
  169. }