pay/plugins/ysepay/ysepay_plugin.php
2025-11-28 10:08:12 +08:00

429 lines
13 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
class ysepay_plugin
{
static public $info = [
'name' => 'ysepay', //支付插件英文名称,需和目录名称一致,不能有重复
'showname' => '银盛支付', //支付插件显示名称
'author' => '银盛支付', //支付插件作者
'link' => 'https://www.ysepay.com/', //支付插件作者链接
'types' => ['alipay','qqpay','wxpay','bank'], //支付插件支持的支付方式可选的有alipay,qqpay,wxpay,bank
'inputs' => [ //支付插件要求传入的参数以及参数显示名称可选的有appid,appkey,appsecret,appurl,appmchid
'appid' => [
'name' => '服务商商户号',
'type' => 'input',
'note' => '',
],
'appkey' => [
'name' => '私钥证书密码',
'type' => 'input',
'note' => '',
],
'appmchid' => [
'name' => '收款商户号',
'type' => 'input',
'note' => '不填写则和服务商商户号相同',
],
'appurl' => [
'name' => '业务代码',
'type' => 'input',
'note' => '',
],
],
'select_alipay' => [
'1' => '扫码支付',
'2' => 'H5支付',
],
'select' => null,
'note' => '只能使用RSA证书需要将商户私钥证书client.pfx上传到 /plugins/ysepay/cert 文件夹内', //支付密钥填写说明
'bindwxmp' => true, //是否支持绑定微信公众号
'bindwxa' => true, //是否支持绑定微信小程序
];
static public function submit(){
global $siteurl, $channel, $order, $sitename;
if($order['typename']=='alipay'){
return ['type'=>'jump','url'=>'/pay/alipay/'.TRADE_NO.'/'];
}elseif($order['typename']=='wxpay'){
if(checkwechat() && $channel['appwxmp']>0){
return ['type'=>'jump','url'=>'/pay/wxjspay/'.TRADE_NO.'/?d=1'];
}elseif(checkmobile() && ($channel['appwxa']>0)){
return ['type'=>'jump','url'=>'/pay/wxwappay/'.TRADE_NO.'/'];
}else{
return ['type'=>'jump','url'=>'/pay/wxpay/'.TRADE_NO.'/'];
}
}elseif($order['typename']=='qqpay'){
return ['type'=>'jump','url'=>'/pay/qqpay/'.TRADE_NO.'/'];
}elseif($order['typename']=='bank'){
return ['type'=>'jump','url'=>'/pay/bank/'.TRADE_NO.'/'];
}
}
static public function mapi(){
global $siteurl, $channel, $order, $conf, $device, $mdevice;
if($order['typename']=='alipay'){
return self::alipay();
}elseif($order['typename']=='wxpay'){
if($mdevice=='wechat' && $channel['appwxmp']>0){
return ['type'=>'jump','url'=>$siteurl.'pay/wxjspay/'.TRADE_NO.'/?d=1'];
}elseif($device=='mobile' && ($channel['appwxa']>0)){
return self::wxwappay();
}else{
return self::wxpay();
}
}elseif($order['typename']=='qqpay'){
return self::qqpay();
}elseif($order['typename']=='bank'){
return self::bank();
}
}
//扫码支付
static private function qrcode($bank_type){
global $siteurl, $channel, $order, $ordername, $conf, $clientip;
require(PAY_ROOT."inc/YsepayClient.php");
$seller_id = $channel['appmchid']?$channel['appmchid']:$channel['appid'];
$method = 'ysepay.online.qrcodepay';
$params = [
'out_trade_no' => TRADE_NO,
'shopdate' => date("Ymd"),
'subject' => $ordername,
'total_amount' => $order['realmoney'],
'currency' => 'CNY',
'seller_id' => $seller_id,
'timeout_express' => '7d',
'business_code' => $channel['appurl'],
'bank_type' => $bank_type,
'submer_ip' => $clientip,
];
$client = new YsepayClient($channel['appid'], $channel['appkey']);
$client->notifyUrl = $conf['localurl'] . 'pay/notify/' . TRADE_NO . '/';
$response = $client->execute($method, $params);
$result = $response->getData();
if (isset($result['code']) && $result['code'] == '10000') {
return $result['source_qr_code_url'];
} elseif(isset($result['sub_code'])) {
throw new Exception('['.$result['sub_code'].']'.$result['sub_msg']);
} elseif(isset($result['msg'])) {
throw new Exception($result['msg']);
} else {
throw new Exception('系统异常,状态未知!');
}
}
//微信公众号小程序支付
static private function weixin($appid, $openid, $isminipg = '2'){
global $siteurl, $channel, $order, $ordername, $conf, $clientip;
require(PAY_ROOT."inc/YsepayClient.php");
$seller_id = $channel['appmchid']?$channel['appmchid']:$channel['appid'];
$method = 'ysepay.online.weixin.pay';
$params = [
'out_trade_no' => TRADE_NO,
'shopdate' => date("Ymd"),
'subject' => $ordername,
'total_amount' => $order['realmoney'],
'currency' => 'CNY',
'seller_id' => $seller_id,
'timeout_express' => '7d',
'business_code' => $channel['appurl'],
'appid' => $appid,
'sub_openid' => $openid,
'is_minipg' => $isminipg,
'payer_ip' => $clientip,
];
$client = new YsepayClient($channel['appid'], $channel['appkey']);
$client->notifyUrl = $conf['localurl'] . 'pay/notify/' . TRADE_NO . '/';
$response = $client->execute($method, $params);
$result = $response->getData();
if (isset($result['code']) && $result['code'] == '10000') {
return $result['jsapi_pay_info'];
} elseif(isset($result['sub_code'])) {
throw new Exception('['.$result['sub_code'].']'.$result['sub_msg']);
} elseif(isset($result['msg'])) {
throw new Exception($result['msg']);
} else {
throw new Exception('系统异常,状态未知!');
}
}
//WAP支付
static private function wappay($bank_type){
global $siteurl, $channel, $order, $ordername, $conf, $clientip;
require(PAY_ROOT."inc/YsepayClient.php");
$seller_id = $channel['appmchid']?$channel['appmchid']:$channel['appid'];
$method = 'ysepay.online.wap.directpay.createbyuser';
$params = [
'out_trade_no' => TRADE_NO,
'shopdate' => date("Ymd"),
'subject' => $ordername,
'total_amount' => $order['realmoney'],
'seller_id' => $seller_id,
'timeout_express' => '7d',
'business_code' =>$channel['appurl'],
'pay_mode' => 'native',
'bank_type' => $bank_type,
];
$client = new YsepayClient($channel['appid'], $channel['appkey']);
$client->notifyUrl = $conf['localurl'] . 'pay/notify/' . TRADE_NO . '/';
$client->returnUrl = $siteurl . 'pay/return/' . TRADE_NO . '/';
$html = $client->pageExecute($method, $params);
return $html;
}
//支付宝扫码支付
static public function alipay(){
global $channel, $device, $siteurl;
if(in_array('2',$channel['apptype']) && (checkmobile() || $device=='mobile')){
try{
$html = self::wappay('1903000');
}catch(Exception $ex){
return ['type'=>'error','msg'=>'支付宝下单失败!'.$ex->getMessage()];
}
return ['type'=>'html','data'=>$html];
}elseif(in_array('1',$channel['apptype'])){
try{
$code_url = self::qrcode('1903000');
}catch(Exception $ex){
return ['type'=>'error','msg'=>'支付宝下单失败!'.$ex->getMessage()];
}
return ['type'=>'qrcode','page'=>'alipay_qrcode','url'=>$code_url];
}else{
$code_url = $siteurl . 'pay/alipay/' . TRADE_NO . '/';
return ['type'=>'qrcode','page'=>'alipay_qrcode','url'=>$code_url];
}
}
//微信扫码支付
static public function wxpay(){
global $channel, $siteurl;
if($channel['appwxmp']>0){
$code_url = $siteurl.'pay/wxjspay/'.TRADE_NO.'/';
}else{
try{
$code_url = self::qrcode('1902000');
}catch(Exception $ex){
return ['type'=>'error','msg'=>'微信支付下单失败!'.$ex->getMessage()];
}
}
if (checkmobile()) {
return ['type'=>'qrcode','page'=>'wxpay_wap','url'=>$code_url];
} else {
return ['type'=>'qrcode','page'=>'wxpay_qrcode','url'=>$code_url];
}
}
//QQ扫码支付
static public function qqpay(){
try{
$code_url = self::qrcode('1904000');
}catch(Exception $ex){
return ['type'=>'error','msg'=>'QQ钱包支付下单失败'.$ex->getMessage()];
}
if(checkmobbileqq()){
return ['type'=>'jump','url'=>$code_url];
} elseif(checkmobile() && !isset($_GET['qrcode'])){
return ['type'=>'qrcode','page'=>'qqpay_wap','url'=>$code_url];
} else {
return ['type'=>'qrcode','page'=>'qqpay_qrcode','url'=>$code_url];
}
}
//云闪付扫码支付
static public function bank(){
try{
$code_url = self::qrcode('9001002');
}catch(Exception $ex){
return ['type'=>'error','msg'=>'云闪付下单失败!'.$ex->getMessage()];
}
return ['type'=>'qrcode','page'=>'bank_qrcode','url'=>$code_url];
}
//微信公众号支付
static public function wxjspay(){
global $siteurl, $channel, $order, $ordername, $conf;
//①、获取用户openid
$wxinfo = \lib\Channel::getWeixin($channel['appwxmp']);
if(!$wxinfo) return ['type'=>'error','msg'=>'支付通道绑定的微信公众号不存在'];
try{
$tools = new \WeChatPay\JsApiTool($wxinfo['appid'], $wxinfo['appsecret']);
$openid = $tools->GetOpenid();
}catch(Exception $e){
return ['type'=>'error','msg'=>$e->getMessage()];
}
$blocks = checkBlockUser($openid, TRADE_NO);
if($blocks) return $blocks;
//②、统一下单
try{
$jsApiParameters = self::weixin($wxinfo['appid'], $openid, '2');
}catch(Exception $ex){
return ['type'=>'error','msg'=>'微信支付下单失败!'.$ex->getMessage()];
}
if($_GET['d']==1){
$redirect_url='data.backurl';
}else{
$redirect_url='\'/pay/ok/'.TRADE_NO.'/\'';
}
return ['type'=>'page','page'=>'wxpay_jspay','data'=>['jsApiParameters'=>$jsApiParameters, 'redirect_url'=>$redirect_url]];
}
//微信小程序支付
static public function wxminipay(){
global $siteurl, $channel, $order, $ordername, $conf;
$code = isset($_GET['code'])?trim($_GET['code']):exit('{"code":-1,"msg":"code不能为空"}');
//①、获取用户openid
$wxinfo = \lib\Channel::getWeixin($channel['appwxa']);
if(!$wxinfo)exit('{"code":-1,"msg":"支付通道绑定的微信小程序不存在"}');
try{
$tools = new \WeChatPay\JsApiTool($wxinfo['appid'], $wxinfo['appsecret']);
$openid = $tools->AppGetOpenid($code);
}catch(Exception $e){
exit('{"code":-1,"msg":"'.$e->getMessage().'"}');
}
$blocks = checkBlockUser($openid, TRADE_NO);
if($blocks)exit('{"code":-1,"msg":"'.$blocks['msg'].'"}');
//②、统一下单
try{
$jsApiParameters = self::weixin($wxinfo['appid'], $openid, '1');
}catch(Exception $ex){
exit('{"code":-1,"msg":"'.$ex->getMessage().'"}');
}
exit(json_encode(['code'=>0, 'data'=>json_decode($jsApiParameters, true)]));
}
//微信手机支付
static public function wxwappay(){
global $siteurl,$channel, $order, $ordername, $conf, $clientip;
$wxinfo = \lib\Channel::getWeixin($channel['appwxa']);
if(!$wxinfo) return ['type'=>'error','msg'=>'支付通道绑定的微信小程序不存在'];
try{
$code_url = wxminipay_jump_scheme($wxinfo['id'], TRADE_NO);
}catch(Exception $e){
return ['type'=>'error','msg'=>$e->getMessage()];
}
return ['type'=>'scheme','page'=>'wxpay_mini','url'=>$code_url];
}
//支付成功页面
static public function ok(){
return ['type'=>'page','page'=>'ok'];
}
//异步回调
static public function notify(){
global $channel, $order;
require(PAY_ROOT."inc/YsepayClient.php");
//计算得出通知验证结果
$client = new YsepayClient($channel['appid'], $channel['appkey']);
$verify_result = $client->verify($_POST);
if($verify_result) {//验证成功
$out_trade_no = $_POST['out_trade_no'];
$trade_no = $_POST['trade_no'];
$buyer_id = $_POST['buyer_user_id'];
$total_amount = $_POST['total_amount'];
if ($_POST['trade_status'] == 'TRADE_SUCCESS') {
if($out_trade_no == TRADE_NO && round($total_amount,2)==round($order['realmoney'],2)){
processNotify($order, $trade_no, $buyer_id);
}
}
return ['type'=>'html','data'=>'success'];
}
else {
//验证失败
return ['type'=>'html','data'=>'fail'];
}
}
//同步回调
static public function return(){
global $channel, $order;
require(PAY_ROOT."inc/YsepayClient.php");
//计算得出通知验证结果
$client = new YsepayClient($channel['appid'], $channel['appkey']);
$verify_result = $client->verify($_GET);
if($verify_result) {//验证成功
$out_trade_no = $_GET['out_trade_no'];
$trade_no = $_GET['trade_no'];
$total_amount = $_GET['total_amount'];
if ($_GET['trade_status'] == 'TRADE_SUCCESS') {
if($out_trade_no == TRADE_NO && round($total_amount,2)==round($order['realmoney'],2)){
processReturn($order, $trade_no);
}else{
return ['type'=>'error','msg'=>'订单信息校验失败'];
}
}else{
return ['type'=>'error','msg'=>'trade_status='.$_GET['trade_status']];
}
}
else {
//验证失败
return ['type'=>'error','msg'=>'返回验证失败'];
}
}
//退款
static public function refund($order){
global $channel;
if(empty($order))exit();
require(PAY_ROOT."inc/YsepayClient.php");
$method = 'ysepay.online.trade.refund';
$params = [
'out_trade_no' => $order['trade_no'],
'shopdate' => date("Ymd"),
'trade_no' => $order['api_trade_no'],
'refund_amount' => $order['refundmoney'],
'refund_reason' => '申请退款',
'out_request_no' => $order['refund_no'],
];
$client = new YsepayClient($channel['appid'], $channel['appkey']);
$response = $client->execute($method, $params);
$result = $response->getData();
if (isset($result['code']) && $result['code'] == '10000') {
return ['code'=>0, 'trade_no'=>$result['trade_no'], 'refund_fee'=>$result['refund_amount']];
} elseif(isset($result['sub_code'])) {
return ['code'=>-1, 'msg'=>'['.$result['sub_code'].']'.$result['sub_msg']];
} elseif(isset($result['msg'])) {
return ['code'=>-1, 'msg'=>$result['msg']];
} else {
return ['code'=>-1, 'msg'=>'未知错误'];
}
}
}