// +---------------------------------------------------------------------- namespace app\services\pay; use app\services\order\StoreOrderCartInfoServices; use app\services\order\StoreOrderServices; use app\services\wechat\WechatUserServices; use crmeb\utils\Str; use think\exception\ValidateException; /** * 订单发起支付 * Class OrderPayServices * @package app\services\pay */ class OrderPayServices { /** * 支付 * @var PayServices */ protected $payServices; public function __construct(PayServices $services) { $this->payServices = $services; } /** * 订单发起支付 * @param array $orderInfo * @return array|string */ public function orderPay(array $orderInfo, string $payType) { if ($orderInfo['paid']) { throw new ValidateException('订单已支付!'); } if ($orderInfo['pay_price'] <= 0) { throw new ValidateException('该支付无需支付!'); } $openid = ''; if (!in_array($payType, ['weixinh5', 'pc']) && !request()->isApp()) { if ($payType === 'weixin') { $userType = 'wechat'; } else { $userType = $payType; } /** @var WechatUserServices $services */ $services = app()->make(WechatUserServices::class); $openid = $services->uidToOpenid($orderInfo['pay_uid'] ?? $orderInfo['uid'], $userType); if (!$openid) { throw new ValidateException('获取用户openid失败,无法支付'); } } $site_name = sys_config('site_name'); if (isset($orderInfo['member_type'])) { $body = Str::substrUTf8($site_name . '--' . $orderInfo['member_type'], 30); $successAction = "member"; } else { /** @var StoreOrderCartInfoServices $orderInfoServices */ $orderInfoServices = app()->make(StoreOrderCartInfoServices::class); $body = $orderInfoServices->getCarIdByProductTitle((int)$orderInfo['id'], $orderInfo['cart_id']); $body = Str::substrUTf8($site_name . '--' . $body, 30); $successAction = "product"; } if (!$body) { throw new ValidateException('支付参数缺少:请前往后台设置->系统设置-> 填写 网站名称'); } /** @var StoreOrderServices $orderServices */ $orderServices = app()->make(StoreOrderServices::class); $orderServices->update($orderInfo['id'], ['pay_type' => 'weixin']); return $this->payServices->pay($payType, $openid, $orderInfo['order_id'], $orderInfo['pay_price'], $successAction, $body); } /** * 支付宝支付 * @param array $orderInfo * @param string $quitUrl * @return array|string */ public function alipayOrder(array $orderInfo, string $quitUrl, bool $isCode = false) { if ($orderInfo['paid']) { throw new ValidateException('订单已支付!'); } if ($orderInfo['pay_price'] <= 0) { throw new ValidateException('该支付无需支付!'); } $site_name = sys_config('site_name'); if (isset($orderInfo['member_type'])) { $body = Str::substrUTf8($site_name . '--' . $orderInfo['member_type'], 30); $successAction = "member"; } else { /** @var StoreOrderCartInfoServices $orderInfoServices */ $orderInfoServices = app()->make(StoreOrderCartInfoServices::class); $body = $orderInfoServices->getCarIdByProductTitle($orderInfo['id'], $orderInfo['cart_id']); $body = Str::substrUTf8($site_name . '--' . $body, 30); $successAction = "product"; } if (!$body) { throw new ValidateException('支付参数缺少:请前往后台设置->系统设置-> 填写 网站名称'); } /** @var StoreOrderServices $orderServices */ $orderServices = app()->make(StoreOrderServices::class); $orderServices->update($orderInfo['id'], ['pay_type' => 'alipay']); return $this->payServices->pay('alipay', $quitUrl, $orderInfo['order_id'], $orderInfo['pay_price'], $successAction, $body, $isCode); } }