123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- namespace app\api\controller\sharp;
- use app\api\controller\Controller;
- use app\api\model\sharp\Setting as SettingModel;
- use app\api\service\order\Checkout as CheckoutModel;
- use app\api\service\sharp\Active as ActiveService;
- use app\common\enum\order\OrderSource as OrderSourceEnum;
- use app\common\library\Lock;
- class Order extends Controller
- {
- /* @var \app\api\model\User $user */
- private $user;
- /**
- * 构造方法
- * @throws \app\common\exception\BaseException
- * @throws \think\exception\DbException
- */
- public function _initialize()
- {
- parent::_initialize();
- // 用户信息
- $this->user = $this->getUser();
- }
- /**
- * 秒杀订单结算
- * @return array
- * @throws \app\common\exception\BaseException
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \Exception
- */
- public function checkout()
- {
- // 实例化结算台服务
- $Checkout = new CheckoutModel;
- // 订单结算api参数
- $params = $Checkout->setParam($this->getParam([
- 'active_time_id' => 0,
- 'sharp_goods_id' => 0,
- 'goods_sku_id' => '',
- 'goods_num' => 0,
- ]));
- // 设置并发锁
- $lockId = "sharp_order_{$params['active_time_id']}_{$params['sharp_goods_id']}";
- Lock::lockUp($lockId);
- // 获取秒杀商品信息
- $service = new ActiveService;
- $goodsList = $service->getCheckoutGoodsList(
- $params['active_time_id'],
- $params['sharp_goods_id'],
- $params['goods_sku_id'],
- $params['goods_num']
- );
- if ($goodsList === false) {
- Lock::unLock($lockId);
- return $this->renderError($service->getError());
- }
- // 设置订单来源
- $Checkout->setOrderSource([
- 'source' => OrderSourceEnum::SHARP,
- 'source_id' => $params['active_time_id'],
- ])
- // 秒杀商品不参与 等级折扣和优惠券折扣
- ->setCheckoutRule([
- 'is_user_grade' => false,
- 'is_coupon' => false,
- 'is_use_points' => false,
- 'is_dealer' => SettingModel::getIsDealer(),
- ]);
- // 获取订单结算信息
- $orderInfo = $Checkout->onCheckout($this->user, $goodsList);
- if ($this->request->isGet()) {
- Lock::unLock($lockId);
- return $this->renderSuccess($orderInfo);
- }
- // submit:订单结算提交
- if ($Checkout->hasError()) {
- Lock::unLock($lockId);
- return $this->renderError($Checkout->getError());
- }
- // 创建订单
- if (!$Checkout->createOrder($orderInfo)) {
- Lock::unLock($lockId);
- return $this->renderError($Checkout->getError() ?: '订单创建失败');
- }
- Lock::unLock($lockId);
- // 构建微信支付请求
- $payment = $Checkout->onOrderPayment();
- // 支付状态提醒
- return $this->renderSuccess([
- 'order_id' => $Checkout->model['order_id'], // 订单id
- 'pay_type' => $params['pay_type'], // 支付方式
- 'payment' => $payment // 微信支付参数
- ], ['success' => '支付成功', 'error' => '订单未支付']);
- }
- /**
- * 订单结算提交的参数
- * @param array $define
- * @return array
- */
- private function getParam($define = [])
- {
- return array_merge($define, $this->request->param());
- }
- }
|