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

119 lines
4.0 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
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. 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)
{
$data['gateway'] = $this->stripe;
$data['return_url'] = $this->buildReturnUrl();
2020-06-09 16:56:08 +02:00
$data['currency'] = $this->stripe->client->getCurrencyCode();
$data['stripe_amount'] = $this->stripe->convertToStripeAmount($data['total']['amount_with_fee'], $this->stripe->client->currency()->precision, $this->stripe->client->currency());
$data['invoices'] = $this->stripe->payment_hash->invoices();
$this->stripe->payment_hash->data = array_merge((array) $this->stripe->payment_hash->data, ['stripe_amount' => $data['stripe_amount']]);
$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
{
$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
if (in_array($request->redirect_status, ['succeeded', 'pending'])) {
2020-12-16 15:25:42 +01:00
return $this->processSuccesfulRedirect($request->source);
2020-06-09 16:56:08 +02:00
}
return $this->processUnsuccesfulRedirect();
2020-06-09 16:56:08 +02:00
}
2020-12-16 15:25:42 +01:00
public function processSuccesfulRedirect(string $source)
2020-06-09 16:56:08 +02:00
{
$this->stripe->init();
$data = [
'payment_method' => $this->stripe->payment_hash->data->source,
'payment_type' => PaymentType::ALIPAY,
'amount' => $this->stripe->convertFromStripeAmount($this->stripe->payment_hash->data->stripe_amount, $this->stripe->client->currency()->precision, $this->stripe->client->currency()),
2020-12-16 15:25:42 +01:00
'transaction_reference' => $source,
2021-01-27 11:38:28 +01:00
'gateway_type_id' => GatewayType::ALIPAY,
2020-06-09 16:56:08 +02:00
];
$payment = $this->stripe->createPayment($data, Payment::STATUS_PENDING);
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
}
}