Files
ProxyPanel/app/Http/Controllers/Gateway/F2Fpay.php

125 lines
4.0 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\Gateway;
use App\Http\Models\Payment;
use Auth;
use Exception;
use InvalidArgumentException;
use Log;
use Payment\Client;
use Payment\Exceptions\ClassNotFoundException;
use Payment\Exceptions\GatewayException;
use Response;
class F2Fpay extends AbstractPayment
{
private static $aliConfig;
function __construct()
{
parent::__construct();
self::$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'],
'limit_pay' => [],
'notify_url' => (self::$systemConfig['website_callback_url']? : self::$systemConfig['website_url']).'/callback/notify?method=f2fpay',
'return_url' => self::$systemConfig['website_url'].'/invoices',
'fee_type' => 'CNY',
];
}
public function purchase($request)
{
$payment = new Payment();
$payment->sn = self::generateGuid();
$payment->user_id = Auth::user()->id;
$payment->oid = $request->input('oid');
$payment->amount = $request->input('amount');
$payment->save();
$data = [
'body' => '',
'subject' => self::$systemConfig['subject_name']? : self::$systemConfig['website_name'],
'trade_no' => $payment->sn,
'time_expire' => time()+900, // 必须 15分钟 内付款
'amount' => $payment->amount,
];
try{
$client = new Client(Client::ALIPAY, self::$aliConfig);
$result = $client->pay(Client::ALI_CHANNEL_QR, $data);
}catch(InvalidArgumentException $e){
Log::error("【支付宝当面付】输入信息错误: ".$e->getMessage());
exit;
}catch(GatewayException $e){
Log::error("【支付宝当面付】建立支付错误: ".$e->getMessage()." | ".var_dump($e->getRaw()));
var_dump($e->getRaw());
exit;
}catch(ClassNotFoundException $e){
Log::error("【支付宝当面付】未知类型: ".$e->getMessage());
exit;
}catch(Exception $e){
Log::error("【支付宝当面付】错误: ".$e->getMessage());
exit;
}
Payment::whereId($payment->id)->update(['qr_code' => 'http://qr.topscan.com/api.php?text='.$result['qr_code'].'&bg=ffffff&fg=000000&pt=1c73bd&m=10&w=400&el=1&inpt=1eabfc&logo=https://t.alipayobjects.com/tfscom/T1Z5XfXdxmXXXXXXXX.png']);//后备https://cli.im/api/qrcode/code?text=".$result['qr_code']."&mhid=5EfGCwztyckhMHcmI9ZcOKs
return Response::json(['status' => 'success', 'data' => $payment->sn, 'message' => '创建订单成功!']);
}
public function notify($request)
{
$data = [
'trade_no' => $request->input('out_trade_no'),
'transaction_id' => $request->input('trade_no'),
];
try{
$client = new Client(Client::ALIPAY, self::$aliConfig);
$result = $client->tradeQuery($data);
Log::info("【支付宝当面付】回调验证查询:".var_export($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;
}
$ret = "fail";
if($result['code'] == 10000 && $result['msg'] == "Success"){
$ret = "success";
if($_POST['trade_status'] == 'TRADE_FINISHED' || $_POST['trade_status'] == 'TRADE_SUCCESS'){
self::postPayment($request->input('out_trade_no'), '支付宝当面付');
}else{
Log::info('支付宝当面付-POST:交易失败['.getClientIp().']');
}
}else{
Log::info('支付宝当面付-POST:验证失败['.getClientIp().']');
}
// 返回验证结果
exit($ret);
}
public function getReturnHTML($request)
{
// TODO: Implement getReturnHTML() method.
}
public function getPurchaseHTML()
{
// TODO: Implement getReturnHTML() method.
}
}