mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改微信支付
This commit is contained in:
parent
f00f9f629e
commit
b7b3610b54
@ -4,7 +4,8 @@ namespace app\data\service\payment;
|
||||
|
||||
use app\data\service\PaymentService;
|
||||
use think\admin\Exception;
|
||||
use WePay\Order;
|
||||
use WePay\Order as OrderV2;
|
||||
use WePayV3\Order as OrderV3;
|
||||
|
||||
/**
|
||||
* 微信官方公众号支持
|
||||
@ -15,10 +16,44 @@ class WechatPaymentService extends PaymentService
|
||||
{
|
||||
/**
|
||||
* 微信对象对象
|
||||
* @var Order
|
||||
* @var OrderV2|OrderV3
|
||||
*/
|
||||
protected $payment;
|
||||
|
||||
/**
|
||||
* 支付接口版本
|
||||
* @var string
|
||||
*/
|
||||
protected $version;
|
||||
|
||||
|
||||
/**
|
||||
* 微信支付服务初始化
|
||||
* @return WechatPaymentService
|
||||
*/
|
||||
protected function initialize(): WechatPaymentService
|
||||
{
|
||||
$this->version = $this->params['wechat_type'] ?? 'v2';
|
||||
if ($this->version === 'v2') {
|
||||
$this->payment = OrderV2::instance([
|
||||
'appid' => $this->params['wechat_appid'],
|
||||
'mch_id' => $this->params['wechat_mch_id'],
|
||||
'mch_key' => $this->params['wechat_mch_key'],
|
||||
'cache_path' => with_path('runtime/wechat'),
|
||||
]);
|
||||
} else {
|
||||
$this->payment = OrderV3::instance([
|
||||
'appid' => $this->params['wechat_appid'],
|
||||
'mch_id' => $this->params['wechat_mch_id'],
|
||||
'mch_v3_key' => $this->params['wechat_mch_v3_key'],
|
||||
'cert_public' => $this->params['wechat_mch_v3_public'],
|
||||
'cert_private' => $this->params['wechat_mch_v3_private'],
|
||||
'cache_path' => with_path('runtime/wechat'),
|
||||
]);
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建订单支付参数
|
||||
* @param string $openid 用户OPENID
|
||||
@ -38,18 +73,33 @@ class WechatPaymentService extends PaymentService
|
||||
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,
|
||||
'total_fee' => $payAmount * 100,
|
||||
'trade_type' => static::TYPES[$this->type]['type'] ?? '',
|
||||
'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);
|
||||
$notify = sysuri("@data/api.notify/wxpay/scene/order/param/{$this->code}", [], false, true);
|
||||
if ($this->version === 'v2') {
|
||||
$dataV2 = [
|
||||
'body' => $body,
|
||||
'openid' => $openid,
|
||||
'attach' => $this->code,
|
||||
'out_trade_no' => $orderNo,
|
||||
'total_fee' => $payAmount * 100,
|
||||
'trade_type' => static::TYPES[$this->type]['type'] ?? '',
|
||||
'notify_url' => $notify,
|
||||
'spbill_create_ip' => $this->app->request->ip(),
|
||||
];
|
||||
if (empty($openid)) unset($dataV2['openid']);
|
||||
$info = $this->payment->create($dataV2);
|
||||
} else {
|
||||
$dataV3 = [
|
||||
'appid' => $this->params['wechat_appid'],
|
||||
'mchid' => $this->params['wechat_mch_id'],
|
||||
'payer' => ['openid' => $openid],
|
||||
'amount' => ['total' => $payAmount * 100, 'currency' => 'CNY'],
|
||||
'out_trade_no' => $orderNo,
|
||||
'notify_url' => $notify,
|
||||
'description' => $body,
|
||||
];
|
||||
if (empty($openid)) unset($dataV3['payer']);
|
||||
$info = $this->payment->create(strtolower(static::TYPES[$this->type]['type']), $dataV3);
|
||||
}
|
||||
if ($info['return_code'] === 'SUCCESS' && $info['result_code'] === 'SUCCESS') {
|
||||
// 创建支付记录
|
||||
$this->createPaymentAction($orderNo, $payTitle, $payAmount);
|
||||
@ -89,13 +139,34 @@ class WechatPaymentService extends PaymentService
|
||||
/**
|
||||
* 支付结果处理
|
||||
* @return string
|
||||
* @throws \WeChat\Exceptions\InvalidDecryptException
|
||||
* @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)) {
|
||||
$data = [];
|
||||
if ($this->version === 'v3') {
|
||||
$notify = $this->payment->notify();
|
||||
if ($notify['event_type'] === 'TRANSACTION.SUCCESS') {
|
||||
$data['cash_fee'] = $notify['result']['amount']['total'] ?? 0;
|
||||
$data['result_code'] = 'SUCCESS';
|
||||
$data['return_code'] = 'SUCCESS';
|
||||
$data['out_trade_no'] = $notify['result']['out_trade_no'];
|
||||
$data['transaction_id'] = $notify['result']['transaction_id'];
|
||||
} else {
|
||||
$data['result_code'] = $notify['event_type'] ?? 'ERROR';
|
||||
}
|
||||
} else {
|
||||
$notify = $this->payment->getNotify();
|
||||
$data['cash_fee'] = $notify['cash_fee'];
|
||||
$data['result_code'] = $notify['result_code'];
|
||||
$data['return_code'] = $notify['return_code'];
|
||||
$data['out_trade_no'] = $notify['out_trade_no'];
|
||||
$data['transaction_id'] = $notify['transaction_id'];
|
||||
}
|
||||
// 更新订单支付信息
|
||||
if ($data['result_code'] == 'SUCCESS' && $data['return_code'] == 'SUCCESS') {
|
||||
if ($this->updatePaymentAction($data['out_trade_no'], $data['transaction_id'], $data['cash_fee'] / 100)) {
|
||||
return $this->payment->getNotifySuccessReply();
|
||||
} else {
|
||||
return 'error';
|
||||
@ -104,19 +175,4 @@ class WechatPaymentService extends PaymentService
|
||||
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' => with_path('runtime/wechat'),
|
||||
]);
|
||||
return $this;
|
||||
}
|
||||
}
|
@ -10,7 +10,24 @@
|
||||
<span class="help-block">微信商户编号,需要在微信商户平台获取,微信商户号 与 公众号APPID 匹配</span>
|
||||
</label>
|
||||
|
||||
<label class="layui-form-item block relative">
|
||||
<div class="layui-form-item block relative">
|
||||
<span class="help-label label-required-prev"><b>支付接口版本</b>WeChat Payment Version</span>
|
||||
<div class="help-checks layui-textarea">
|
||||
{empty name='vo.content.wechat_type'}{assign name='vo.content.wechat_type' value='v2'}{/empty}
|
||||
{foreach ['v2'=>'V2','v3'=>'V3'] as $k=>$v}
|
||||
<label class="think-radio">
|
||||
{if isset($vo.content.wechat_type) and $vo.content.wechat_type eq $k}
|
||||
<input checked type="radio" name="wechat_type" lay-ignore value="{$k}"> {$v}
|
||||
{else}
|
||||
<input type="radio" name="wechat_type" lay-ignore value="{$k}"> {$v}
|
||||
{/if}
|
||||
</label>
|
||||
{/foreach}
|
||||
</div>
|
||||
<span class="help-block">微信支付版本,根据微信商户申请的不同支付通道版本配置</span>
|
||||
</div>
|
||||
|
||||
<label class="layui-form-item block relative" data-wechat-version="v2">
|
||||
<span class="help-label"><b>微信商户密钥</b>WeChat Payment Secret Key</span>
|
||||
<input class="layui-input" maxlength="32" name="wechat_mch_key" pattern=".{32}" placeholder="请输入32位微信商户密钥(必填)" required value="{$vo.content.wechat_mch_key|default=''}">
|
||||
<span class="help-block">微信商户密钥,需要在微信商户平台操作设置密码并获取密钥,建议定期更换密钥</span>
|
||||
@ -26,4 +43,32 @@
|
||||
<span class="help-label"><b>微信商户证书文件内容</b>( 需要填写文件的全部内容 )</span>
|
||||
<textarea class="layui-textarea" name="wechat_mch_cert_text" placeholder="请输入微信CERT证书内容">{$vo.content.wechat_mch_cert_text|default=''}</textarea>
|
||||
<span class="help-block">从商户平台上下载支付证书,解压并取得其中的 apiclient_cert.pem 用记事本打开并复制文件内容填至此处</span>
|
||||
</label>
|
||||
</label>
|
||||
|
||||
<label class="layui-form-item block relative" data-wechat-version="v3">
|
||||
<span class="help-label"><b>微信商户密钥</b>WeChat Payment Secret Key</span>
|
||||
<input class="layui-input" maxlength="32" name="wechat_mch_v3_key" pattern=".{32}" placeholder="请输入32位微信商户密钥(必填)" required value="{$vo.content.wechat_mch_v3_key|default=''}">
|
||||
<span class="help-block">微信商户密钥,需要在微信商户平台操作设置密码并获取密钥,建议定期更换密钥</span>
|
||||
</label>
|
||||
|
||||
<label class="layui-form-item layui-hide relative" data-wechat-version="v3">
|
||||
<span class="help-label"><b>微信商户证书公钥内容</b>( 需要填写文件的全部内容 )</span>
|
||||
<textarea class="layui-textarea" name="wechat_mch_v3_public" placeholder="请输入微信KEY密钥内容">{$vo.content.wechat_mch_v3_public|default=''}</textarea>
|
||||
<span class="help-block">从商户平台上下载支付证书,解压并取得其中的 apiclient_key.pem 用记事本打开并复制文件内容填至此处</span>
|
||||
</label>
|
||||
|
||||
<label class="layui-form-item layui-hide relative" data-wechat-version="v3">
|
||||
<span class="help-label"><b>微信商户证书私钥内容</b>( 需要填写文件的全部内容 )</span>
|
||||
<textarea class="layui-textarea" name="wechat_mch_v3_private" placeholder="请输入微信CERT证书内容">{$vo.content.wechat_mch_v3_private|default=''}</textarea>
|
||||
<span class="help-block">从商户平台上下载支付证书,解压并取得其中的 apiclient_cert.pem 用记事本打开并复制文件内容填至此处</span>
|
||||
</label>
|
||||
|
||||
<script>
|
||||
$(function () {
|
||||
$('body').off('click', 'input[type=radio][name=wechat_type]').on('click', 'input[type=radio][name=wechat_type]', function () {
|
||||
var version = $('input[name=wechat_type]:checked').val();
|
||||
var showall = $('[data-wechat-version=' + version + ']').removeClass('layui-hide').addClass('block');
|
||||
$('[data-wechat-version]').not(showall).removeClass('block').addClass('layui-hide');
|
||||
});
|
||||
});
|
||||
</script>
|
Loading…
x
Reference in New Issue
Block a user