mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
116 lines
3.7 KiB
PHP
116 lines
3.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\PaymentDrivers\Stripe;
|
|
|
|
use App\Events\Payment\PaymentWasCreated;
|
|
use App\Http\Requests\Payments\PaymentWebhookRequest;
|
|
use App\Jobs\Mail\PaymentFailureMailer;
|
|
use App\Jobs\Util\SystemLogger;
|
|
use App\Models\GatewayType;
|
|
use App\Models\Payment;
|
|
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($data);
|
|
$data['currency'] = $this->stripe->client->getCurrencyCode();
|
|
$data['stripe_amount'] = $this->stripe->convertToStripeAmount($data['amount_with_fee'], $this->stripe->client->currency()->precision);
|
|
|
|
return render('gateways.stripe.alipay.pay', $data);
|
|
}
|
|
|
|
private function buildReturnUrl($data): string
|
|
{
|
|
return route('client.payments.response', [
|
|
'company_gateway_id' => $this->stripe->company_gateway->id,
|
|
'gateway_type_id' => GatewayType::SOFORT,
|
|
'hashed_ids' => implode(",", $data['hashed_ids']),
|
|
'amount' => $data['amount'],
|
|
'fee' => $data['fee'],
|
|
'payment_method_id' => GatewayType::SOFORT,
|
|
]);
|
|
}
|
|
|
|
public function paymentResponse($request)
|
|
{
|
|
$state = array_merge($request->all(), []);
|
|
$amount = $state['amount'] + $state['fee'];
|
|
$state['amount'] = $this->stripe->convertToStripeAmount($amount, $this->stripe->client->currency()->precision);
|
|
|
|
if ($request->redirect_status == 'succeeded') {
|
|
return $this->processSuccesfulRedirect($state);
|
|
}
|
|
|
|
return $this->processUnsuccesfulRedirect($state);
|
|
}
|
|
|
|
public function processSuccesfulRedirect($state)
|
|
{
|
|
$state['charge_id'] = $state['source'];
|
|
|
|
$this->stripe->init();
|
|
|
|
$state['payment_type'] = PaymentType::ALIPAY;
|
|
|
|
$data = [
|
|
'payment_method' => $state['charge_id'],
|
|
'payment_type' => $state['payment_type'],
|
|
'amount' => $state['amount'],
|
|
];
|
|
|
|
$payment = $this->stripe->createPayment($data, Payment::STATUS_PENDING);
|
|
|
|
if (isset($state['hashed_ids'])) {
|
|
$this->stripe->attachInvoices($payment, $state['hashed_ids']);
|
|
}
|
|
|
|
event(new PaymentWasCreated($payment, $payment->company));
|
|
|
|
$logger_message = [
|
|
'server_response' => $state,
|
|
'data' => $data
|
|
];
|
|
|
|
SystemLogger::dispatch($logger_message, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::TYPE_STRIPE, $this->stripe->client);
|
|
|
|
return redirect()->route('client.payments.show', ['payment' => $this->stripe->encodePrimaryKey($payment->id)]);
|
|
}
|
|
|
|
public function processUnsuccesfulRedirect($state)
|
|
{
|
|
PaymentFailureMailer::dispatch($this->stripe->client, $state['charge']->failure_message, $this->stripe->client->company, $state['amount']);
|
|
|
|
$message = [
|
|
'server_response' => $state['charge'],
|
|
'data' => $state,
|
|
];
|
|
|
|
SystemLogger::dispatch($message, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_STRIPE, $this->stripe->client);
|
|
|
|
throw new \Exception('Failed to process the payment.', 1);
|
|
}
|
|
}
|