mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-02-01 23:18:13 -05:00
[update] 新增stripe聚合支付方式,采用全新的paymentIntents API
[fix] 修改支付方式中的小bug [update] 将stripe-php版本升级至最新
This commit is contained in:
parent
59f40dfd02
commit
261487437b
@ -76,14 +76,13 @@ class BTCPay
|
|||||||
//NOT BTCPay-Sig
|
//NOT BTCPay-Sig
|
||||||
//API doc is WRONG!
|
//API doc is WRONG!
|
||||||
$headerName = 'Btcpay-Sig';
|
$headerName = 'Btcpay-Sig';
|
||||||
$signraturHeader = isset($headers[$headerName]) ? $headers[$headerName] : '';
|
$signatureHeader = isset($headers[$headerName]) ? $headers[$headerName] : '';
|
||||||
$json_param = json_decode($payload, true);
|
$json_param = json_decode($payload, true);
|
||||||
|
|
||||||
$computedSignature = "sha256=" . \hash_hmac('sha256', $payload, $this->config['btcpay_webhook_key']);
|
$computedSignature = "sha256=" . \hash_hmac('sha256', $payload, $this->config['btcpay_webhook_key']);
|
||||||
|
|
||||||
if (!self::hashEqual($signraturHeader, $computedSignature)) {
|
if (!self::hashEqual($signatureHeader, $computedSignature)) {
|
||||||
throw new ApiException('HMAC signature does not match', 400);
|
throw new ApiException('HMAC signature does not match', 400);
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//get order id store in metadata
|
//get order id store in metadata
|
||||||
|
173
app/Payments/StripeALLInOne.php
Normal file
173
app/Payments/StripeALLInOne.php
Normal file
@ -0,0 +1,173 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自己写别抄,抄NMB抄
|
||||||
|
*/
|
||||||
|
namespace App\Payments;
|
||||||
|
|
||||||
|
use App\Exceptions\ApiException;
|
||||||
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
|
class StripeALLInOne {
|
||||||
|
public function __construct($config)
|
||||||
|
{
|
||||||
|
$this->config = $config;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function form()
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'currency' => [
|
||||||
|
'label' => '货币单位',
|
||||||
|
'description' => '请使用符合ISO 4217标准的三位字母,例如GBP',
|
||||||
|
'type' => 'input',
|
||||||
|
],
|
||||||
|
'stripe_sk_live' => [
|
||||||
|
'label' => 'SK_LIVE',
|
||||||
|
'description' => '',
|
||||||
|
'type' => 'input',
|
||||||
|
],
|
||||||
|
'stripe_webhook_key' => [
|
||||||
|
'label' => 'WebHook密钥签名',
|
||||||
|
'description' => 'whsec_....',
|
||||||
|
'type' => 'input',
|
||||||
|
],
|
||||||
|
'description' => [
|
||||||
|
'label' => '自定义商品介绍',
|
||||||
|
'description' => '',
|
||||||
|
'type' => 'input',
|
||||||
|
],
|
||||||
|
'payment_method' => [
|
||||||
|
'label' => '支付方式',
|
||||||
|
'description' => '请输入alipay或者wechat_pay',
|
||||||
|
'type' => 'input',
|
||||||
|
]
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function pay($order)
|
||||||
|
{
|
||||||
|
$currency = $this->config['currency'];
|
||||||
|
$exchange = $this->exchange('CNY', strtoupper($currency));
|
||||||
|
if (!$exchange) {
|
||||||
|
throw new ApiException(__('Currency conversion has timed out, please try again later'));
|
||||||
|
}
|
||||||
|
$stripe = new \Stripe\StripeClient($this->config['stripe_sk_live']);
|
||||||
|
|
||||||
|
|
||||||
|
$stripePaymentMethod = $stripe->paymentMethods->create([
|
||||||
|
'type' => $this->config['payment_method'],
|
||||||
|
]);
|
||||||
|
// 准备支付意图的基础参数
|
||||||
|
$params = [
|
||||||
|
'amount' => floor($order['total_amount'] * $exchange),
|
||||||
|
'currency' => $currency,
|
||||||
|
'confirm' => true,
|
||||||
|
'payment_method' => $stripePaymentMethod->id,
|
||||||
|
'automatic_payment_methods' => ['enabled' => true],
|
||||||
|
'statement_descriptor' => 'sub-' . $order['user_id'] . '-' . substr($order['trade_no'], -8),
|
||||||
|
'description' => $this->config['description'],
|
||||||
|
'metadata' => [
|
||||||
|
'user_id' => $order['user_id'],
|
||||||
|
'out_trade_no' => $order['trade_no'],
|
||||||
|
'identifier' => ''
|
||||||
|
],
|
||||||
|
'return_url' => $order['return_url']
|
||||||
|
];
|
||||||
|
|
||||||
|
// 如果支付方式为 wechat_pay,添加相应的支付方式选项
|
||||||
|
if ($this->config['payment_method'] === 'wechat_pay') {
|
||||||
|
$params['payment_method_options'] = [
|
||||||
|
'wechat_pay' => [
|
||||||
|
'client' => 'web'
|
||||||
|
],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
//更新支持最新的paymentIntents方法,Sources API将在今年被彻底替
|
||||||
|
$stripeIntents = $stripe->paymentIntents->create($params);
|
||||||
|
|
||||||
|
$nextAction = null;
|
||||||
|
//jump url
|
||||||
|
$jumpUrl = null;
|
||||||
|
$actionType = 0;
|
||||||
|
if (!$stripeIntents['next_action']) {
|
||||||
|
throw new ApiException(__('Payment gateway request failed'));
|
||||||
|
}else {
|
||||||
|
$nextAction = $stripeIntents['next_action'];
|
||||||
|
}
|
||||||
|
|
||||||
|
switch ($this->config['payment_method']){
|
||||||
|
case "alipay":
|
||||||
|
if (isset($nextAction['alipay_handle_redirect'])){
|
||||||
|
$jumpUrl = $nextAction['alipay_handle_redirect']['url'];
|
||||||
|
$actionType = 1;
|
||||||
|
}else {
|
||||||
|
throw new ApiException('unable get alipay redirect url', 500);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "wechat_pay":
|
||||||
|
if (isset($nextAction['wechat_pay_display_qr_code'])){
|
||||||
|
$jumpUrl = $nextAction['wechat_pay_display_qr_code']['data'];
|
||||||
|
Log::info($jumpUrl);
|
||||||
|
}else {
|
||||||
|
throw new ApiException('unable get alipay redirect url', 500);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return [
|
||||||
|
'type' => $actionType,
|
||||||
|
'data' => $jumpUrl
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function notify($params)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
\Stripe\Stripe::setApiKey($this->config['stripe_sk_live']);
|
||||||
|
//Workerman不支持使用php://input, stripe同时要求验证签名的payload不能经过修改,所以使用这个方法
|
||||||
|
$payload = $GLOBALS['HTTP_RAW_POST_DATA'];
|
||||||
|
$headers = getallheaders();
|
||||||
|
$headerName = 'Stripe-Signature';
|
||||||
|
$signatureHeader = $headers[$headerName] ?? '';
|
||||||
|
$event = \Stripe\Webhook::constructEvent(
|
||||||
|
$payload,
|
||||||
|
$signatureHeader,
|
||||||
|
$this->config['stripe_webhook_key']
|
||||||
|
);
|
||||||
|
|
||||||
|
} catch (\UnexpectedValueException $e){
|
||||||
|
throw new ApiException('Error parsing payload', 400);
|
||||||
|
|
||||||
|
}
|
||||||
|
catch (\Stripe\Exception\SignatureVerificationException $e) {
|
||||||
|
throw new ApiException('signature not match', 400);
|
||||||
|
}
|
||||||
|
switch ($event->type) {
|
||||||
|
case 'payment_intent.succeeded':
|
||||||
|
$object = $event->data->object;
|
||||||
|
if ($object->status === 'succeeded') {
|
||||||
|
if (!isset($object->metadata->out_trade_no)) {
|
||||||
|
return('order error');
|
||||||
|
}
|
||||||
|
$metaData = $object->metadata;
|
||||||
|
$tradeNo = $metaData->out_trade_no;
|
||||||
|
return [
|
||||||
|
'trade_no' => $tradeNo,
|
||||||
|
'callback_no' => $object->id
|
||||||
|
];
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new ApiException('event is not support');
|
||||||
|
}
|
||||||
|
return('success');
|
||||||
|
}
|
||||||
|
|
||||||
|
private function exchange($from, $to)
|
||||||
|
{
|
||||||
|
$from = strtolower($from);
|
||||||
|
$to = strtolower($to);
|
||||||
|
$result = file_get_contents("https://cdn.jsdelivr.net/npm/@fawazahmed0/currency-api@latest/v1/currencies/" . $from . ".min.json");
|
||||||
|
$result = json_decode($result, true);
|
||||||
|
return $result[$from][$to];
|
||||||
|
}
|
||||||
|
}
|
@ -28,7 +28,7 @@
|
|||||||
"paragonie/sodium_compat": "^1.20",
|
"paragonie/sodium_compat": "^1.20",
|
||||||
"php-curl-class/php-curl-class": "^8.6",
|
"php-curl-class/php-curl-class": "^8.6",
|
||||||
"spatie/db-dumper": "^3.4",
|
"spatie/db-dumper": "^3.4",
|
||||||
"stripe/stripe-php": "^7.36.1",
|
"stripe/stripe-php": "^v14.9.0",
|
||||||
"symfony/http-client": "^6.4",
|
"symfony/http-client": "^6.4",
|
||||||
"symfony/mailgun-mailer": "^6.4",
|
"symfony/mailgun-mailer": "^6.4",
|
||||||
"symfony/yaml": "*",
|
"symfony/yaml": "*",
|
||||||
|
Loading…
Reference in New Issue
Block a user