1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-15 07:33:04 +01:00
invoiceninja/app/PaymentDrivers/CBAPowerBoard/CreditCard.php

321 lines
10 KiB
PHP
Raw Normal View History

2024-09-06 06:26:13 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\PaymentDrivers\CBAPowerBoard;
use App\Models\Payment;
use App\Models\SystemLog;
2024-09-08 11:06:31 +02:00
use App\Models\GatewayType;
use App\Models\PaymentHash;
use App\Models\PaymentType;
use App\Jobs\Util\SystemLogger;
use App\Exceptions\PaymentFailed;
2024-09-06 06:26:13 +02:00
use App\PaymentDrivers\CBAPowerBoardPaymentDriver;
2024-09-08 11:06:31 +02:00
use App\PaymentDrivers\CBAPowerBoard\Models\Charge;
2024-09-06 06:26:13 +02:00
use App\PaymentDrivers\Common\LivewireMethodInterface;
2024-09-08 11:06:31 +02:00
use App\PaymentDrivers\CBAPowerBoard\Models\PaymentSource;
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
2024-09-06 06:26:13 +02:00
class CreditCard implements LivewireMethodInterface
{
public function __construct(public CBAPowerBoardPaymentDriver $powerboard)
{
}
public function authorizeView(array $data)
{
2024-09-06 14:55:56 +02:00
return render('gateways.powerboard.credit_card.authorize', $this->paymentData($data));
2024-09-06 06:26:13 +02:00
}
public function authorizeResponse($request)
{
2024-09-06 15:14:21 +02:00
$cgt = $this->storePaymentMethod($request);
2024-09-06 11:15:08 +02:00
2024-09-06 15:14:21 +02:00
return redirect()->route('client.payment_methods.index');
}
private function getCustomer(): array
{
2024-09-08 11:06:31 +02:00
$data = [
2024-09-06 14:55:56 +02:00
'first_name' => $this->powerboard->client->present()->first_name(),
'last_name' => $this->powerboard->client->present()->first_name(),
'email' => $this->powerboard->client->present()->email(),
2024-09-08 11:06:31 +02:00
// 'phone' => $this->powerboard->client->present()->phone(),
// 'type' => 'card',
2024-09-06 14:55:56 +02:00
'address_line1' => $this->powerboard->client->address1 ?? '',
'address_line2' => $this->powerboard->client->address2 ?? '',
'address_state' => $this->powerboard->client->state ?? '',
'address_country' => $this->powerboard->client->country->iso_3166_3 ?? '',
'address_city' => $this->powerboard->client->city ?? '',
'address_postcode' => $this->powerboard->client->postal_code ?? '',
2024-09-06 11:15:08 +02:00
];
2024-09-08 11:06:31 +02:00
return \App\Helpers\Sanitizer::removeBlanks($data);
2024-09-06 15:14:21 +02:00
}
2024-09-08 11:06:31 +02:00
private function storePaymentSource($request)
2024-09-06 15:14:21 +02:00
{
$this->powerboard->init();
2024-09-06 11:15:08 +02:00
2024-09-06 15:14:21 +02:00
$payment_source = $request->gateway_response;
2024-09-07 01:34:53 +02:00
$payload = array_merge($this->getCustomer(), [
2024-09-06 15:14:21 +02:00
'token' => $payment_source,
2024-09-08 11:06:31 +02:00
"vault_type" => "session",
2024-09-06 15:14:21 +02:00
'store_ccv' => true,
2024-09-07 01:34:53 +02:00
]);
$r = $this->powerboard->gatewayRequest('/v1/vault/payment_sources', (\App\Enum\HttpVerb::POST)->value, $payload, []);
2024-09-06 14:55:56 +02:00
2024-09-06 15:14:21 +02:00
if($r->failed())
return $this->powerboard->processInternallyFailedPayment($this->powerboard, $r->throw());
2024-09-06 14:55:56 +02:00
2024-09-08 11:06:31 +02:00
nlog($r->object());
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
$source = (new \App\PaymentDrivers\CBAPowerBoard\Models\Parse())->encode(PaymentSource ::class, $r->object()->resource->data);
2024-09-08 11:06:31 +02:00
return $source;
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
// $cgt = $this->powerboard->customer()->storePaymentMethod(payment_source: $source, store_card: $request->store_card);
2024-09-08 11:06:31 +02:00
// return $cgt;
2024-09-06 06:26:13 +02:00
}
2024-09-06 14:55:56 +02:00
2024-09-06 06:26:13 +02:00
public function paymentData(array $data): array
{
2024-09-06 14:55:56 +02:00
2024-09-06 07:15:33 +02:00
$merge = [
2024-09-06 10:31:00 +02:00
'public_key' => $this->powerboard->company_gateway->getConfigField('publicKey'),
'widget_endpoint' => $this->powerboard->widget_endpoint,
'gateway' => $this->powerboard,
'environment' => $this->powerboard->environment,
2024-09-06 07:15:33 +02:00
];
2024-09-06 06:26:13 +02:00
2024-09-06 07:15:33 +02:00
return array_merge($data, $merge);
2024-09-06 06:26:13 +02:00
}
public function paymentView(array $data)
{
$data = $this->paymentData($data);
2024-09-06 10:31:00 +02:00
return render('gateways.powerboard.credit_card.pay', $data);
2024-09-06 06:26:13 +02:00
}
public function livewirePaymentView(array $data): string
{
return 'gateways.powerboard.credit_card.pay_livewire';
}
2024-09-06 15:14:21 +02:00
public function tokenBilling($request, $cgt, $client_present = false)
{
}
2024-09-08 11:06:31 +02:00
private function get3dsToken(PaymentSource $source, $request)
2024-09-06 06:26:13 +02:00
{
2024-09-06 11:15:08 +02:00
2024-09-08 11:06:31 +02:00
$payment_hash = PaymentHash::query()->where('hash', $request->payment_hash)->first();
$browser_details = json_decode($request->browser_details,true);
2024-09-08 11:06:31 +02:00
$payload = [
"amount" => $payment_hash->data->amount_with_fee,
"currency" => $this->powerboard->client->currency()->code,
"description" => $this->powerboard->getDescription(),
"customer" => [
"payment_source" => [
"vault_token" => $source->vault_token,
"gateway_id" => '66d65c5a68b7fa297a31c267',
],
],
"_3ds" => [
"browser_details" => $browser_details,
],
];
2024-09-08 11:06:31 +02:00
nlog($payload);
2024-09-08 11:06:31 +02:00
$r = $this->powerboard->gatewayRequest('/v1/charges/3ds', (\App\Enum\HttpVerb::POST)->value, $payload, []);
2024-09-08 11:06:31 +02:00
nlog($r->body());
if($r->failed())
$r->throw();
$charge = $r->json();
nlog($charge['resource']['data']);
return response()->json($charge['resource']['data'], 200);
}
public function paymentResponse(PaymentResponseRequest $request)
{
nlog($request->all());
2024-09-08 11:52:39 +02:00
$payment_hash = PaymentHash::where('hash', $request->payment_hash)->first();
2024-09-08 11:06:31 +02:00
// $token = $request->payment_source;
$payload = [];
/** Token Payment */
if($request->input('token', false))
{
$cgt = $this->powerboard
->client
->gateway_tokens()
->where('company_gateway_id', $this->powerboard->company_gateway->id)
->where('token', $request->token)
->first();
$payload["customer"] = [
"payment_source" => [
2024-09-08 11:06:31 +02:00
"vault_token" => $cgt->token,
"gateway_id" => $cgt->meta->gateway_id
]
];
2024-09-08 11:06:31 +02:00
2024-09-06 15:14:21 +02:00
}
2024-09-08 11:06:31 +02:00
elseif($request->browser_details)
{
$payment_source = $this->storePaymentSource($request);
2024-09-06 15:14:21 +02:00
2024-09-08 11:06:31 +02:00
return $this->get3dsToken($payment_source, $request);
}
elseif($request->charge) {
2024-09-08 11:52:39 +02:00
$charge_request = json_decode($request->charge, true);
nlog($charge_request);
2024-09-08 11:06:31 +02:00
$payload = [
2024-09-08 11:52:39 +02:00
'_3ds' => [
'id' => $charge_request['charge_3ds_id'],
2024-09-08 11:06:31 +02:00
],
"amount"=> $payment_hash->data->amount_with_fee,
"currency"=> $this->powerboard->client->currency()->code,
"store_cvv"=> true,
];
2024-09-06 15:14:21 +02:00
2024-09-08 11:52:39 +02:00
nlog($payload);
2024-09-08 11:06:31 +02:00
$r = $this->powerboard->gatewayRequest("/v1/charges", (\App\Enum\HttpVerb::POST)->value, $payload, []);
2024-09-08 11:06:31 +02:00
if($r->failed())
$r->throw();
2024-09-06 15:14:21 +02:00
2024-09-08 11:06:31 +02:00
$charge = (new \App\PaymentDrivers\CBAPowerBoard\Models\Parse())->encode(Charge::class, $r->object()->resource->data) ?? $r->throw();
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
if ($charge->status == 'complete') {
$this->powerboard->logSuccessfulGatewayResponse(['response' => $charge, 'data' => $this->powerboard->payment_hash], SystemLog::TYPE_POWERBOARD);
return $this->processSuccessfulPayment($charge);
}
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
}
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
nlog($request->all());
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
// else {
// $payload["customer"] = [
// "payment_source" => [
// "vault_token" => $cgt->token,
// "gateway_id" => $cgt->meta->gateway_id
// ]
// ];
2024-09-06 06:26:13 +02:00
// }
2024-09-08 11:06:31 +02:00
// $uri = '/v1/charges';
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
// $payload_meta = [
// "amount" => $payment_hash->data->amount_with_fee,
// "currency" => $this->powerboard->client->currency()->code,
// "description" => $this->powerboard->getDescription(),
// ];
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
// $payload = array_merge($payload, $payload_meta);
// nlog($payload);
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
// $r = $this->powerboard->gatewayRequest($uri, (\App\Enum\HttpVerb::POST)->value, $payload, []);
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
// if($r->failed())
// $r->throw();
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
// nlog($r->object());
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
// return $this->processUnsuccessfulPayment($r->body());
}
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
public function processSuccessfulPayment(Charge $charge)
{
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
$data = [
'payment_type' => PaymentType::CREDIT_CARD_OTHER,
'amount' => $this->powerboard->payment_hash->data->amount_with_fee,
'transaction_reference' => $charge->_id,
'gateway_type_id' => GatewayType::CREDIT_CARD,
];
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
$payment = $this->powerboard->createPayment($data, Payment::STATUS_COMPLETED);
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
SystemLogger::dispatch(
2024-09-08 11:52:39 +02:00
['response' => $charge, 'data' => $data],
2024-09-08 11:06:31 +02:00
SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_SUCCESS,
SystemLog::TYPE_POWERBOARD,
$this->powerboard->client,
$this->powerboard->client->company,
);
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
if ($payment->invoices()->whereHas('subscription')->exists()) {
$subscription = $payment->invoices()->first()->subscription;
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
if ($subscription && array_key_exists('return_url', $subscription->webhook_configuration) && strlen($subscription->webhook_configuration['return_url']) >= 1) {
return redirect($subscription->webhook_configuration['return_url']);
}
}
2024-09-06 06:26:13 +02:00
2024-09-08 11:06:31 +02:00
return redirect()->route('client.payments.show', ['payment' => $payment->hashed_id]);
2024-09-06 06:26:13 +02:00
}
public function processUnsuccessfulPayment($server_response)
{
// $this->stripe->sendFailureMail($server_response->cancellation_reason);
// $message = [
// 'server_response' => $server_response,
// 'data' => $this->stripe->payment_hash->data,
// ];
// SystemLogger::dispatch(
// $message,
// SystemLog::CATEGORY_GATEWAY_RESPONSE,
// SystemLog::EVENT_GATEWAY_FAILURE,
// SystemLog::TYPE_STRIPE,
// $this->stripe->client,
// $this->stripe->client->company,
// );
// throw new PaymentFailed('Failed to process the payment.', 500);
}
}