v2board/app/Http/Controllers/Guest/OrderController.php

155 lines
5.5 KiB
PHP
Raw Normal View History

2019-10-29 15:33:36 +08:00
<?php
namespace App\Http\Controllers\Guest;
2020-06-04 18:00:33 +08:00
use App\Services\OrderService;
2019-10-29 15:33:36 +08:00
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use App\Models\Order;
2019-11-04 13:40:10 +08:00
use Omnipay\Omnipay;
2019-10-29 15:33:36 +08:00
use Illuminate\Support\Facades\Log;
2020-01-12 01:27:36 +08:00
use Illuminate\Support\Facades\Cache;
2019-12-27 14:25:25 +08:00
use Library\BitpayX;
2020-01-14 19:45:19 +08:00
use Library\PayTaro;
2019-10-29 15:33:36 +08:00
class OrderController extends Controller
{
2020-01-11 13:36:52 +08:00
public function alipayNotify(Request $request)
{
2020-03-07 11:37:39 +08:00
// Log::info('alipayNotifyData: ' . json_encode($_POST));
2019-11-04 13:40:10 +08:00
$gateway = Omnipay::create('Alipay_AopF2F');
$gateway->setSignType('RSA2'); //RSA/RSA2
$gateway->setAppId(config('v2board.alipay_appid'));
$gateway->setPrivateKey(config('v2board.alipay_privkey')); // 可以是路径,也可以是密钥内容
$gateway->setAlipayPublicKey(config('v2board.alipay_pubkey')); // 可以是路径,也可以是密钥内容
$request = $gateway->completePurchase();
$request->setParams($_POST); //Optional
try {
/** @var \Omnipay\Alipay\Responses\AopCompletePurchaseResponse $response */
$response = $request->send();
2020-01-11 13:36:52 +08:00
if ($response->isPaid()) {
2019-11-04 13:40:10 +08:00
/**
* Payment is successful
*/
2019-12-27 14:25:25 +08:00
if (!$this->handle($_POST['out_trade_no'], $_POST['trade_no'])) {
abort(500, 'fail');
}
2019-11-04 13:40:10 +08:00
die('success'); //The response should be 'success' only
2020-01-11 13:36:52 +08:00
} else {
2019-11-04 13:40:10 +08:00
/**
* Payment is not successful
*/
die('fail');
}
} catch (Exception $e) {
/**
* Payment is not successful
*/
die('fail');
}
}
2020-01-11 13:36:52 +08:00
public function stripeNotify(Request $request)
{
2020-03-07 11:37:39 +08:00
// Log::info('stripeNotifyData: ' . json_encode($request->input()));
2019-10-29 15:33:36 +08:00
\Stripe\Stripe::setApiKey(config('v2board.stripe_sk_live'));
try {
$event = \Stripe\Webhook::constructEvent(
file_get_contents('php://input'),
$_SERVER['HTTP_STRIPE_SIGNATURE'],
config('v2board.stripe_webhook_key')
);
} catch (\Stripe\Error\SignatureVerification $e) {
abort(400);
}
2019-11-30 12:31:11 +08:00
switch ($event->type) {
case 'source.chargeable':
$source = $event->data->object;
2020-06-04 18:00:33 +08:00
\Stripe\Charge::create([
2019-11-30 12:31:11 +08:00
'amount' => $source['amount'],
'currency' => $source['currency'],
'source' => $source['id'],
2020-06-04 18:00:33 +08:00
'metadata' => $source->metadata
2019-11-30 12:31:11 +08:00
]);
2020-06-04 18:00:33 +08:00
die('success');
break;
case 'source.succeeded':
$source = $event->data->object;
if ($source->status === 'succeeded') {
$metaData = $source->metadata;
$trade_no = $metaData->out_trade_no;
2019-11-30 12:31:11 +08:00
if (!$trade_no) {
2019-12-27 14:25:25 +08:00
abort(500, 'redis is not found trade no by stripe source id');
2019-11-30 12:31:11 +08:00
}
2020-06-04 18:00:33 +08:00
if (!$this->handle($trade_no, $source->balance_transaction)) {
2019-11-30 12:31:11 +08:00
abort(500, 'fail');
}
die('success');
}
break;
default:
abort(500, 'event is not support');
2019-10-29 15:33:36 +08:00
}
}
2019-12-27 14:25:25 +08:00
2020-01-11 13:36:52 +08:00
public function bitpayXNotify(Request $request)
{
2019-12-27 14:25:25 +08:00
$inputString = file_get_contents('php://input', 'r');
2020-03-07 11:37:39 +08:00
// Log::info('bitpayXNotifyData: ' . $inputString);
2019-12-27 14:25:25 +08:00
$inputStripped = str_replace(array("\r", "\n", "\t", "\v"), '', $inputString);
$inputJSON = json_decode($inputStripped, true); //convert JSON into array
$bitpayX = new BitpayX(config('v2board.bitpayx_appsecret'));
$params = [
2020-01-11 13:36:52 +08:00
'status' => $inputJSON['status'],
'order_id' => $inputJSON['order_id'],
'merchant_order_id' => $inputJSON['merchant_order_id'],
'price_amount' => $inputJSON['price_amount'],
'price_currency' => $inputJSON['price_currency'],
'pay_amount' => $inputJSON['pay_amount'],
'pay_currency' => $inputJSON['pay_currency'],
'created_at_t' => $inputJSON['created_at_t']
2019-12-27 14:25:25 +08:00
];
$strToSign = $bitpayX->prepareSignId($inputJSON['merchant_order_id']);
if (!$bitpayX->verify($strToSign, $inputJSON['token'])) {
2020-01-20 23:34:53 +08:00
abort(500, 'sign error');
2019-12-27 14:25:25 +08:00
}
if ($params['status'] !== 'PAID') {
2020-01-20 23:34:53 +08:00
abort(500, 'order is not paid');
2019-12-27 14:25:25 +08:00
}
if (!$this->handle($params['merchant_order_id'], $params['order_id'])) {
2020-01-20 23:34:53 +08:00
abort(500, 'order process fail');
2019-12-27 14:25:25 +08:00
}
2020-03-05 16:28:20 +08:00
die(json_encode([
'status' => 200
]));
2019-12-27 14:25:25 +08:00
}
2020-01-14 19:45:19 +08:00
public function payTaroNotify(Request $request)
{
2020-03-07 11:37:39 +08:00
// Log::info('payTaroNotify: ' . json_encode($request->input()));
2020-01-14 19:45:19 +08:00
$payTaro = new PayTaro(config('v2board.paytaro_app_id'), config('v2board.paytaro_app_secret'));
if (!$payTaro->verify($request->input())) {
2020-01-18 18:41:02 +08:00
abort(500, 'fail');
2020-01-14 19:45:19 +08:00
}
if (!$this->handle($request->input('out_trade_no'), $request->input('trade_no'))) {
2020-01-18 18:41:02 +08:00
abort(500, 'fail');
2020-01-14 19:45:19 +08:00
}
die('success');
}
2020-01-11 13:36:52 +08:00
private function handle($tradeNo, $callbackNo)
{
2019-12-27 14:25:25 +08:00
$order = Order::where('trade_no', $tradeNo)->first();
if (!$order) {
abort(500, 'order is not found');
}
2020-06-04 18:00:33 +08:00
$orderService = new OrderService($order);
return $orderService->success($callbackNo);
2019-12-27 14:25:25 +08:00
}
2019-10-29 15:33:36 +08:00
}