2023-11-15 12:02:33 +08:00
|
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
|
|
|
|
// | 开源版本可自由商用,可去除界面版权logo
|
|
|
|
|
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
|
|
|
|
// | github下载:https://github.com/likeshop-github/likeadmin
|
|
|
|
|
// | 访问官网:https://www.likeadmin.cn
|
|
|
|
|
// | likeadmin团队 版权所有 拥有最终解释权
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | author: likeadminTeam
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace app\common\service\pay;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use app\common\enum\PayEnum;
|
|
|
|
|
use app\common\enum\PayOrderEnum;
|
|
|
|
|
use app\common\enum\user\UserTerminalEnum;
|
|
|
|
|
use app\common\logic\PayNotifyLogic;
|
2023-11-16 14:04:58 +08:00
|
|
|
|
use app\common\model\pay\PayConfig;
|
2023-11-15 12:02:33 +08:00
|
|
|
|
use app\common\model\recharge\RechargeOrder;
|
|
|
|
|
use app\common\model\user\UserAuth;
|
|
|
|
|
use app\common\service\wechat\WeChatConfigService;
|
|
|
|
|
use app\common\service\wechat\WeChatPayMerchantConfigService;
|
|
|
|
|
use EasyWeChat\Pay\Application;
|
|
|
|
|
use EasyWeChat\Pay\Message;
|
2023-11-16 14:04:58 +08:00
|
|
|
|
use think\Log;
|
2023-11-15 12:02:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 微信支付
|
|
|
|
|
* Class WeChatPayService
|
|
|
|
|
* @package app\common\server
|
|
|
|
|
*/
|
|
|
|
|
class WeChatPayMerchantService extends BasePayService
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* 授权信息
|
|
|
|
|
* @var UserAuth|array|\think\Model
|
|
|
|
|
*/
|
|
|
|
|
protected $auth;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 微信配置
|
|
|
|
|
* @var
|
|
|
|
|
*/
|
|
|
|
|
protected $config;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* easyWeChat实例
|
|
|
|
|
* @var
|
|
|
|
|
*/
|
|
|
|
|
protected $app;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 当前使用客户端
|
|
|
|
|
* @var
|
|
|
|
|
*/
|
|
|
|
|
protected $terminal;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 初始化微信支付配置
|
|
|
|
|
*/
|
|
|
|
|
public function __construct()
|
|
|
|
|
{
|
|
|
|
|
$this->config = WeChatPayMerchantConfigService::getPayConfig();
|
|
|
|
|
$this->app = new Application($this->config);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function wechatPayServiceMerchantAppPay($order)
|
|
|
|
|
{
|
2023-11-16 14:04:58 +08:00
|
|
|
|
// try {
|
|
|
|
|
$pay = PayConfig::where(['pay_way' => PayEnum::WECHAT_PAY])->findOrEmpty()->toArray();
|
|
|
|
|
$client = $this->app->getClient();
|
|
|
|
|
$response = $client->postXml('pay/unifiedorder', [
|
|
|
|
|
'appid' => $pay['config']['app_id'],
|
|
|
|
|
'mch_id' => $this->config['mch_id'],
|
|
|
|
|
'sub_mch_id' => $order['collection_account'],
|
2023-11-15 12:02:33 +08:00
|
|
|
|
'description' => PayOrderEnum::getPayOrderTypeDesc($order['order_type']),
|
|
|
|
|
'out_trade_no' => $order['order_no'],
|
|
|
|
|
'notify_url' => $this->config['notify_url'],
|
|
|
|
|
'total_fee' => $order['total_fee'],
|
|
|
|
|
'spbill_create_ip' => $_SERVER['SERVER_ADDR'], // 调用微信支付API的机器IP
|
2023-11-16 14:04:58 +08:00
|
|
|
|
'time_start' => date('YmdHis', intval($order['create_time'])),
|
2023-11-15 12:02:33 +08:00
|
|
|
|
'trade_type' => 'APP',
|
2023-11-16 14:04:58 +08:00
|
|
|
|
'attach' => $order['order_no'],
|
|
|
|
|
'body' => PayOrderEnum::getPayOrderTypeDesc($order['order_type']).'订单'
|
2023-11-15 12:02:33 +08:00
|
|
|
|
]);
|
2023-11-16 14:04:58 +08:00
|
|
|
|
$result = $response->toArray(false);dd($result);
|
2023-11-15 12:02:33 +08:00
|
|
|
|
$this->checkResultFail($result);
|
|
|
|
|
$re = $this->app->getUtils()->buildAppConfig($result['prepay_id'], $this->config['appid']);
|
|
|
|
|
$re['partnerid'] = $order['sub_mch_id'];
|
|
|
|
|
return $re;
|
2023-11-16 14:04:58 +08:00
|
|
|
|
// } catch (\Exception $e) {
|
|
|
|
|
// $this->setError($e->getMessage());
|
|
|
|
|
// return false;
|
|
|
|
|
// }
|
2023-11-15 12:02:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @notes 退款
|
|
|
|
|
* @param array $refundData
|
|
|
|
|
* @return mixed
|
|
|
|
|
* @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
|
|
|
|
|
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
|
|
|
|
|
* @author 段誉
|
|
|
|
|
* @date 2023/2/28 16:53
|
|
|
|
|
*/
|
|
|
|
|
public function refund(array $refundData)
|
|
|
|
|
{
|
|
|
|
|
$response = $this->app->getClient()->postJson('secapi/pay/refund', [
|
|
|
|
|
'transaction_id' => $refundData['transaction_id'],
|
|
|
|
|
'out_refund_no' => $refundData['refund_sn'],
|
|
|
|
|
'amount' => [
|
|
|
|
|
'refund' => intval($refundData['refund_amount'] * 100),
|
|
|
|
|
'total' => intval($refundData['total_amount'] * 100),
|
|
|
|
|
'currency' => 'CNY',
|
|
|
|
|
]
|
|
|
|
|
]);
|
|
|
|
|
$result = $response->toArray(false);
|
|
|
|
|
$this->checkResultFail($result);
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @notes 查询退款
|
|
|
|
|
* @param $refundSn
|
|
|
|
|
* @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
|
|
|
|
|
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
|
|
|
|
|
* @author 段誉
|
|
|
|
|
* @date 2023/3/1 11:16
|
|
|
|
|
*/
|
|
|
|
|
public function queryRefund($refundSn)
|
|
|
|
|
{
|
|
|
|
|
$response = $this->app->getClient()->get("v3/refund/domestic/refunds/{$refundSn}");
|
|
|
|
|
return $response->toArray(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @notes 捕获错误
|
|
|
|
|
* @param $result
|
|
|
|
|
* @throws \Exception
|
|
|
|
|
* @author 段誉
|
|
|
|
|
* @date 2023/2/28 12:09
|
|
|
|
|
*/
|
|
|
|
|
public function checkResultFail($result)
|
|
|
|
|
{
|
|
|
|
|
if (!empty($result['code']) || !empty($result['message'])) {
|
|
|
|
|
throw new \Exception('微信:'. $result['code'] . '-' . $result['message']);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @notes 预支付配置
|
|
|
|
|
* @param $prepayId
|
|
|
|
|
* @param $appId
|
|
|
|
|
* @return mixed[]
|
|
|
|
|
* @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
|
|
|
|
|
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
|
|
|
|
|
* @author 段誉
|
|
|
|
|
* @date 2023/2/28 17:38
|
|
|
|
|
*/
|
|
|
|
|
public function getPrepayConfig($prepayId, $appId)
|
|
|
|
|
{
|
|
|
|
|
return $this->app->getUtils()->buildBridgeConfig($prepayId, $appId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @notes 支付回调
|
|
|
|
|
* @return \Psr\Http\Message\ResponseInterface
|
|
|
|
|
* @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
|
|
|
|
|
* @throws \EasyWeChat\Kernel\Exceptions\RuntimeException
|
|
|
|
|
* @throws \ReflectionException
|
|
|
|
|
* @throws \Throwable
|
|
|
|
|
* @author 段誉
|
|
|
|
|
* @date 2023/2/28 14:20
|
|
|
|
|
*/
|
|
|
|
|
public function notify()
|
|
|
|
|
{
|
|
|
|
|
$server = $this->app->getServer();
|
|
|
|
|
// 支付通知
|
|
|
|
|
$server->handlePaid(function (Message $message) {
|
2023-11-16 14:04:58 +08:00
|
|
|
|
Log::info(['支付回调信息', $message]);
|
2023-11-15 12:02:33 +08:00
|
|
|
|
if ($message['trade_state'] === 'SUCCESS') {
|
2023-11-16 14:04:58 +08:00
|
|
|
|
$transaction_id = $message['transaction_id'];
|
2023-11-15 12:02:33 +08:00
|
|
|
|
$attach = $message['attach'];
|
2023-11-16 14:04:58 +08:00
|
|
|
|
$out_trade_no = $message['out_trade_no'];
|
|
|
|
|
|
2023-11-15 12:02:33 +08:00
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 退款通知
|
|
|
|
|
$server->handleRefunded(function (Message $message) {
|
2023-11-16 14:04:58 +08:00
|
|
|
|
Log::info(['退款回调信息', $message]);
|
2023-11-15 12:02:33 +08:00
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
return $server->serve();
|
|
|
|
|
}
|
|
|
|
|
}
|