123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?php
- namespace app\data\service\payment;
- use app\data\service\PaymentService;
- use think\admin\Exception;
- use WePay\Order;
- /**
- * 微信官方公众号支持
- * Class WechatPaymentService
- * @package app\data\service\payment
- */
- class WechatPaymentService2 extends PaymentService
- {
- /**
- * 微信对象对象
- * @var Order
- */
- protected $payment;
- /**
- * 创建订单支付参数
- * @param string $openid 用户OPENID
- * @param string $orderNo 交易订单单号
- * @param string $payAmount 交易订单金额(元)
- * @param string $payTitle 交易订单名称
- * @param string $payRemark 订单订单描述
- * @param string $payReturn 完成回跳地址
- * @param string $payImage 支付凭证图片
- * @return array
- * @throws Exception
- */
- public function create(string $openid, string $orderNo, string $payAmount, string $payTitle, string $payRemark, string $payReturn = '', string $payImage = ''): array
- {
- try {
- if (isset(static::TYPES[$this->type])) {
- $tradeType = static::TYPES[$this->type]['type'];
- } else {
- throw new Exception(sprintf('支付类型[%s]未配置定义!', $this->type));
- }
- $body = empty($payRemark) ? $payTitle : ($payTitle . '-' . $payRemark);
- $data = [
- 'body' => $body,
- 'openid' => $openid,
- 'attach' => $this->code,
- 'out_trade_no' => $orderNo,
- 'trade_type' => $tradeType ?: '',
- 'total_fee' => $payAmount * 100,
- 'notify_url' => sysuri("@data/api.notify/wxpay/scene/order/param/{$this->code}", [], false, true),
- 'spbill_create_ip' => $this->app->request->ip(),
- ];
- if (empty($data['openid'])) unset($data['openid']);
- $info = $this->payment->create($data);
- if ($info['return_code'] === 'SUCCESS' && $info['result_code'] === 'SUCCESS') {
- // 创建支付记录
- $this->createPaymentAction($orderNo, $payTitle, $payAmount);
- // 返回支付参数
- return $this->payment->jsapiParams($info['prepay_id']);
- }
- throw new Exception($info['err_code_des'] ?? '获取预支付码失败!');
- } catch (Exception $exception) {
- throw $exception;
- } catch (\Exception $exception) {
- throw new Exception($exception->getMessage(), $exception->getCode());
- }
- }
- /**
- * 查询微信支付订单
- * @param string $orderNo 订单单号
- * @return array
- * @throws \WeChat\Exceptions\InvalidResponseException
- * @throws \WeChat\Exceptions\LocalCacheException
- */
- public function query(string $orderNo): array
- {
- $result = $this->payment->query(['out_trade_no' => $orderNo]);
- if (isset($result['return_code']) && isset($result['result_code']) && isset($result['attach'])) {
- if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') {
- $this->updatePaymentAction($result['out_trade_no'], $result['cash_fee'] / 100, $result['transaction_id']);
- }
- }
- return $result;
- }
- /**
- * 支付结果处理
- * @return string
- * @throws \WeChat\Exceptions\InvalidResponseException
- */
- public function notify(): string
- {
- $notify = $this->payment->getNotify();
- if ($notify['result_code'] == 'SUCCESS' && $notify['return_code'] == 'SUCCESS') {
- if ($this->updatePaymentAction($notify['out_trade_no'], $notify['transaction_id'], $notify['cash_fee'] / 100)) {
- return $this->payment->getNotifySuccessReply();
- } else {
- return 'error';
- }
- } else {
- return $this->payment->getNotifySuccessReply();
- }
- }
- /**
- * 微信支付服务初始化
- * @return WechatPaymentService
- */
- protected function initialize(): WechatPaymentService
- {
- $this->payment = Order::instance([
- 'appid' => $this->params['wechat_appid'],
- 'mch_id' => $this->params['wechat_mch_id'],
- 'mch_key' => $this->params['wechat_mch_key'],
- 'cache_path' => $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'wechat',
- ]);
- return $this;
- }
- }
|