Files
ProxyPanel/app/Http/Controllers/Api/F2fpayController.php
2020-08-05 03:20:24 +08:00

90 lines
2.8 KiB
PHP
Raw 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
namespace App\Http\Controllers\Api;
use App\Components\Callback;
use App\Http\Controllers\Controller;
use Exception;
use Illuminate\Http\Request;
use InvalidArgumentException;
use Log;
use Payment\Client;
use Payment\Exceptions\ClassNotFoundException;
use Payment\Exceptions\GatewayException;
class F2fpayController extends Controller
{
use Callback;
// 接收GET请求
public function index(Request $request)
{
Log::info("【支付宝当面付】回调接口[GET]".var_export($request->all(), TRUE).'['.getClientIp().']');
exit("【支付宝当面付】接口正常");
}
// 接收POST请求
public function store(Request $request)
{
Log::info("【支付宝当面付】回调接口[POST]".var_export($request->all(), TRUE));
$aliConfig = [
'use_sandbox' => FALSE,
'app_id' => self::$systemConfig['f2fpay_app_id'],
'sign_type' => 'RSA2',
'ali_public_key' => self::$systemConfig['f2fpay_public_key'],
'rsa_private_key' => self::$systemConfig['f2fpay_private_key'],
'notify_url' => self::$systemConfig['website_url']."/api/f2fpay", // 异步回调接口
'return_url' => self::$systemConfig['website_url'],
];
$data = [
'trade_no' => $request->input('out_trade_no'),
'transaction_id' => $request->input('trade_no'),
];
// 使用
try{
$client = new Client(Client::ALIPAY, $aliConfig);
$verify_result = $client->tradeQuery($data);
Log::info("【支付宝当面付】回调验证查询:".var_export($verify_result, TRUE));
} catch(InvalidArgumentException $e){
Log::error("【支付宝当面付】回调信息错误: ".$e->getMessage());
exit;
} catch(GatewayException $e){
Log::error("【支付宝当面付】建立支付错误: ".$e->getMessage());
exit;
} catch(ClassNotFoundException $e){
Log::error("【支付宝当面付】未知类型: ".$e->getMessage());
exit;
} catch(Exception $e){
Log::error("【支付宝当面付】错误: ".$e->getMessage());
exit;
}
$result = "fail";
if($verify_result['code'] == 10000 && $verify_result['msg'] == "Success"){ // 验证成功
$result = "success";
if($_POST['trade_status'] == 'TRADE_FINISHED' || $_POST['trade_status'] == 'TRADE_SUCCESS'){
// 商户订单号
$data = [];
$data['out_trade_no'] = $request->input('out_trade_no');
// 支付宝交易号
$data['trade_no'] = $request->input('trade_no');
// 交易状态
$data['trade_status'] = $request->input('trade_status');
// 交易金额(这里是按照结算货币汇率的金额和rmb_fee不相等)
$data['total_amount'] = $request->input('total_amount');
$this->tradePaid($data, 5);
}else{
Log::info('支付宝当面付-POST:交易失败['.getClientIp().']');
}
}else{
Log::info('支付宝当面付-POST:验证失败['.getClientIp().']');
}
// 返回验证结果
exit($result);
}
}