Files
ProxyPanel/app/Http/Controllers/Gateway/PayJs.php
2021-09-07 22:55:12 +08:00

55 lines
1.6 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 Auth;
use Illuminate\Http\JsonResponse;
use Log;
use Response;
use Xhat\Payjs\Payjs as Pay;
class PayJs extends AbstractPayment
{
private static $config;
public function __construct()
{
self::$config = [
'mchid' => sysConfig('payjs_mch_id'), // 配置商户号
'key' => sysConfig('payjs_key'), // 配置通信密钥
];
}
public function purchase($request): JsonResponse
{
$payment = $this->creatNewPayment(Auth::id(), $request->input('id'), $request->input('amount'));
$result = (new Pay($this::$config))->cashier([
'body' => sysConfig('subject_name') ?: sysConfig('website_name'),
'total_fee' => $payment->amount * 100,
'out_trade_no' => $payment->trade_no,
'notify_url' => route('payment.notify', ['method' => 'payjs']),
]);
// 获取收款二维码内容
$payment->update(['qr_code' => 1, 'url' => $result]);
//$this->addPamentCallback($payment->trade_no, null, $payment->amount * 100);
return Response::json(['status' => 'success', 'data' => $payment->trade_no, 'message' => '创建订单成功!']);
}
public function notify($request): void
{
$data = (new Pay($this::$config))->notify();
if ($data['return_code'] == 1) {
if ($this->paymentReceived($data['out_trade_no'])) {
exit('success');
}
} else {
Log::error('【PayJs】交易失败'.var_export($data, true));
}
exit('fail');
}
}