1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/PaymentDrivers/Stripe/Alipay.php

148 lines
5.1 KiB
PHP
Raw Normal View History

2020-06-09 16:56:08 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-06-09 16:56:08 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2020-06-09 16:56:08 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-06-09 16:56:08 +02:00
*/
namespace App\PaymentDrivers\Stripe;
use App\Exceptions\PaymentFailed;
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
2020-06-09 16:56:08 +02:00
use App\Jobs\Util\SystemLogger;
use App\Models\GatewayType;
use App\Models\Payment;
2020-06-09 16:56:08 +02:00
use App\Models\PaymentType;
use App\Models\SystemLog;
use App\PaymentDrivers\StripePaymentDriver;
class Alipay
{
/** @var StripePaymentDriver */
public $stripe;
public function __construct(StripePaymentDriver $stripe)
{
$this->stripe = $stripe;
}
public function paymentView(array $data)
{
2023-02-23 02:47:29 +01:00
$intent = \Stripe\PaymentIntent::create([
'amount' => $this->stripe->convertToStripeAmount($data['total']['amount_with_fee'], $this->stripe->client->currency()->precision, $this->stripe->client->currency()),
'currency' => $this->stripe->client->currency()->code,
'payment_method_types' => ['alipay'],
'customer' => $this->stripe->findOrCreateCustomer(),
'description' => $this->stripe->getDescription(false),
'metadata' => [
'payment_hash' => $this->stripe->payment_hash->hash,
'gateway_type_id' => GatewayType::ALIPAY,
],
], $this->stripe->stripe_connect_auth);
2020-06-09 16:56:08 +02:00
$data['gateway'] = $this->stripe;
$data['return_url'] = $this->buildReturnUrl();
2023-02-23 02:47:29 +01:00
$data['ci_intent'] = $intent->client_secret;
2023-02-23 02:47:29 +01:00
$this->stripe->payment_hash->data = array_merge((array) $this->stripe->payment_hash->data, ['stripe_amount' => $this->stripe->convertToStripeAmount($data['total']['amount_with_fee'], $this->stripe->client->currency()->precision, $this->stripe->client->currency())]);
$this->stripe->payment_hash->save();
2020-06-09 16:56:08 +02:00
return render('gateways.stripe.alipay.pay', $data);
}
private function buildReturnUrl(): string
2020-06-09 16:56:08 +02:00
{
return route('client.payments.response', [
'company_gateway_id' => $this->stripe->company_gateway->id,
'payment_hash' => $this->stripe->payment_hash->hash,
2020-10-12 06:10:34 +02:00
'payment_method_id' => GatewayType::ALIPAY,
2020-06-09 16:56:08 +02:00
]);
}
public function paymentResponse(PaymentResponseRequest $request)
2020-06-09 16:56:08 +02:00
{
2023-02-23 02:47:29 +01:00
$this->stripe->init();
$this->stripe->setPaymentHash($request->getPaymentHash());
$this->stripe->client = $this->stripe->payment_hash->fee_invoice->client;
$this->stripe->payment_hash->data = array_merge((array) $this->stripe->payment_hash->data, $request->all());
$this->stripe->payment_hash->save();
2020-06-09 16:56:08 +02:00
2023-03-18 08:24:56 +01:00
if ($request->payment_intent) {
2023-02-23 02:47:29 +01:00
$pi = \Stripe\PaymentIntent::retrieve(
$request->payment_intent,
$this->stripe->stripe_connect_auth
);
nlog($pi);
if (in_array($pi->status, ['succeeded', 'pending'])) {
return $this->processSuccesfulRedirect($pi);
}
2023-03-18 08:24:56 +01:00
if ($pi->status == 'requires_source_action') {
2023-02-23 02:47:29 +01:00
return redirect($pi->next_action->alipay_handle_redirect->url);
}
2020-06-09 16:56:08 +02:00
}
return $this->processUnsuccesfulRedirect();
2020-06-09 16:56:08 +02:00
}
2023-02-23 02:47:29 +01:00
public function processSuccesfulRedirect($payment_intent)
2020-06-09 16:56:08 +02:00
{
$this->stripe->init();
$data = [
2023-02-23 02:47:29 +01:00
'payment_method' => $payment_intent->payment_method,
'payment_type' => PaymentType::ALIPAY,
'amount' => $this->stripe->convertFromStripeAmount($this->stripe->payment_hash->data->stripe_amount, $this->stripe->client->currency()->precision, $this->stripe->client->currency()),
2023-02-23 02:47:29 +01:00
'transaction_reference' => $payment_intent->id,
2021-01-27 11:38:28 +01:00
'gateway_type_id' => GatewayType::ALIPAY,
2020-06-09 16:56:08 +02:00
];
2023-02-23 02:47:29 +01:00
$payment = $this->stripe->createPayment($data, $payment_intent->status == 'pending' ? Payment::STATUS_PENDING : Payment::STATUS_COMPLETED);
2020-06-09 16:56:08 +02:00
SystemLogger::dispatch(
['response' => $this->stripe->payment_hash->data, 'data' => $data],
SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_SUCCESS,
SystemLog::TYPE_STRIPE,
$this->stripe->client,
$this->stripe->client->company,
);
2020-06-09 16:56:08 +02:00
return redirect()->route('client.payments.show', ['payment' => $this->stripe->encodePrimaryKey($payment->id)]);
}
public function processUnsuccesfulRedirect()
2020-06-09 16:56:08 +02:00
{
$server_response = $this->stripe->payment_hash->data;
2021-10-17 12:40:40 +02:00
$this->stripe->sendFailureMail($server_response->redirect_status);
2020-06-09 16:56:08 +02:00
$message = [
'server_response' => $server_response,
'data' => $this->stripe->payment_hash->data,
2020-06-09 16:56:08 +02:00
];
SystemLogger::dispatch(
$message,
SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_STRIPE,
$this->stripe->client,
$this->stripe->client->company,
);
2020-06-09 16:56:08 +02:00
throw new PaymentFailed('Failed to process the payment.', 500);
2020-06-09 16:56:08 +02:00
}
}