Cart.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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\api\model\Cart as CartModel;
  14. use app\api\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. $model->where('user_id', '=', $userId)
  67. ->where('is_delete', '=', 0)
  68. ->select();
  69. }
  70. /**
  71. * 获取购物车商品列表(用于订单结算台)
  72. * @param array $cartIds 购物车记录ID集
  73. * @return array
  74. * @throws BaseException
  75. * @throws \think\db\exception\DataNotFoundException
  76. * @throws \think\db\exception\DbException
  77. * @throws \think\db\exception\ModelNotFoundException
  78. */
  79. public function getOrderGoodsList(array $cartIds = []): array
  80. {
  81. // 购物车列表
  82. $cartList = $this->getList($cartIds, false);
  83. // 订单商品列表
  84. $goodsList = [];
  85. foreach ($cartList as $item) {
  86. // 商品记录
  87. $goods = $item['goods'];
  88. // 商品单价
  89. $goods['goods_price'] = $goods['skuInfo']['goods_price'];
  90. // 商品购买数量
  91. $goods['total_num'] = $item['goods_num'];
  92. // 商品SKU索引
  93. $goods['goods_sku_id'] = $item['goods_sku_id'];
  94. // 商品购买总金额
  95. $goods['total_price'] = helper::bcmul($goods['goods_price'], $item['goods_num']);
  96. $goodsList[] = $goods;
  97. }
  98. return $goodsList;
  99. }
  100. /**
  101. * 检索查询商品
  102. * @param mixed $goodsList 商品列表
  103. * @param CartModel $item 购物车记录
  104. * @param bool $isGoodsGradeMoney 是否设置商品会员价
  105. * @return false|mixed
  106. * @throws BaseException
  107. */
  108. private function findGoods($goodsList, CartModel $item, bool $isGoodsGradeMoney = true)
  109. {
  110. // 查找商品记录
  111. $goodsInfo = helper::getArrayItemByColumn($goodsList, 'goods_id', $item['goods_id']);
  112. if (empty($goodsInfo)) {
  113. return false;
  114. }
  115. // 获取当前选择的商品SKU信息
  116. $goodsInfo['skuInfo'] = GoodsModel::getSkuInfo($goodsInfo, $item['goods_sku_id'], $isGoodsGradeMoney);
  117. // 这里需要用到clone, 因对象是引用传递 后面的值会覆盖前面的
  118. return clone $goodsInfo;
  119. }
  120. /**
  121. * 删除购物车中指定记录
  122. * @param array $cartIds
  123. * @return bool
  124. * @throws BaseException
  125. */
  126. public function clear(array $cartIds = []): bool
  127. {
  128. $model = new CartModel;
  129. return $model->clear($cartIds);
  130. }
  131. /**
  132. * 根据商品ID集获取商品列表
  133. * @param array $goodsIds
  134. * @param bool $isGoodsGradeMoney 是否设置会员折扣价
  135. * @return mixed
  136. */
  137. private function getGoodsListByIds(array $goodsIds, bool $isGoodsGradeMoney = true)
  138. {
  139. $model = new GoodsModel;
  140. return $model->isGoodsGradeMoney($isGoodsGradeMoney)->getListByIdsFromApi($goodsIds);
  141. }
  142. /**
  143. * 获取当前用户的购物车记录
  144. * @param array $cartIds 购物车记录ID集
  145. * @return \think\Collection
  146. * @throws BaseException
  147. * @throws \think\db\exception\DataNotFoundException
  148. * @throws \think\db\exception\DbException
  149. * @throws \think\db\exception\ModelNotFoundException
  150. */
  151. private function getCartList(array $cartIds = []): \think\Collection
  152. {
  153. // 当前用户ID
  154. $userId = UserService::getCurrentLoginUserId();
  155. // 购物车记录模型
  156. $model = new CartModel;
  157. // 检索查询条件
  158. $filter = [];
  159. if (!empty($cartIds)) {
  160. $filter[] = ['id', 'in', $cartIds];
  161. }
  162. // 查询列表记录
  163. return $model->where($filter)
  164. ->where('user_id', '=', $userId)
  165. ->where('is_delete', '=', 0)
  166. ->select();
  167. }
  168. }