1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/PaymentDrivers/WePay/ACH.php

266 lines
8.7 KiB
PHP
Raw Normal View History

2021-06-11 10:30:39 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-21 07:10:20 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2021-06-11 10:30:39 +02:00
*/
namespace App\PaymentDrivers\WePay;
2021-06-16 08:41:29 +02:00
use App\Exceptions\PaymentFailed;
use App\Models\ClientGatewayToken;
use App\Models\GatewayType;
2021-06-20 08:24:37 +02:00
use App\Models\Payment;
2021-06-11 10:30:39 +02:00
use App\PaymentDrivers\WePayPaymentDriver;
2021-06-20 08:24:37 +02:00
use App\PaymentDrivers\WePay\WePayCommon;
2021-06-16 12:12:04 +02:00
use App\Utils\Traits\MakesHash;
use Illuminate\Http\Request;
2021-06-20 08:24:37 +02:00
use Illuminate\Support\Str;
2021-06-11 10:30:39 +02:00
class ACH
{
2021-06-16 12:12:04 +02:00
use MakesHash;
2021-06-20 08:24:37 +02:00
use WePayCommon;
2021-06-16 12:12:04 +02:00
2021-06-16 08:41:29 +02:00
public $wepay_payment_driver;
2021-06-11 10:30:39 +02:00
2021-06-16 08:41:29 +02:00
public function __construct(WePayPaymentDriver $wepay_payment_driver)
2021-06-11 10:30:39 +02:00
{
2021-06-16 08:41:29 +02:00
$this->wepay_payment_driver = $wepay_payment_driver;
2021-06-11 10:30:39 +02:00
}
public function authorizeView($data)
{
2021-06-16 08:41:29 +02:00
$data['gateway'] = $this->wepay_payment_driver;
2021-06-11 10:30:39 +02:00
2021-06-16 08:41:29 +02:00
return render('gateways.wepay.authorize.bank_transfer', $data);
2021-06-11 10:30:39 +02:00
}
2021-06-16 08:41:29 +02:00
public function authorizeResponse($request)
{
//https://developer.wepay.com/api/api-calls/credit_card#authorize
$data = $request->all();
// authorize the credit card
nlog($data);
/*
'_token' => '1Fk5CRj34up5ntKPvrFyMIAJhDdUNF3boqT3iIN3',
'company_gateway_id' => '39',
'payment_method_id' => '1',
'gateway_response' => NULL,
'is_default' => NULL,
'credit_card_id' => '180642154638',
'q' => '/client/payment_methods',
'method' => '1',
*/
$response = $this->wepay_payment_driver->wepay->request('payment_bank/persist', [
'client_id' => config('ninja.wepay.client_id'),
'client_secret' => config('ninja.wepay.client_secret'),
'payment_bank_id' => (int)$data['bank_account_id'],
]);
// display the response
// nlog($response);
if(in_array($response->state, ['new', 'pending', 'authorized'])){
$this->storePaymentMethod($response, GatewayType::BANK_TRANSFER);
return redirect()->route('client.payment_methods.index');
}
2021-06-11 10:30:39 +02:00
2021-06-16 08:41:29 +02:00
throw new PaymentFailed("There was a problem adding this payment method.", 400);
/*
{
"payment_bank_id": 12345,
"bank_name": "Wells Fargo",
"account_last_four": "6789",
"state": "authorized"
}
state options: new, pending, authorized, disabled.
*/
}
/* If the bank transfer token is PENDING - we need to verify!! */
//
public function verificationView(ClientGatewayToken $token)
{
$this->wepay_payment_driver->init();
$data = [
'token' => $token,
'gateway' => $this->wepay_payment_driver,
];
return render('gateways.wepay.authorize.verify', $data);
}
/**
{
"client_id": 1234,
"client_secret": "b1fc2f68-4d1f-4a",
"payment_bank_id": 12345,
"type": "microdeposits",
"microdeposits": [
8,
12
]
}
*/
public function processVerification(Request $request, ClientGatewayToken $token)
{
2021-06-16 12:12:04 +02:00
$transactions = $request->input('transactions');
2021-06-16 08:41:29 +02:00
2021-06-16 12:12:04 +02:00
$transformed_transactions = [];
foreach($transactions as $transaction)
$transformed_transactions[] = (int)$transaction;
try {
$response = $this->wepay_payment_driver->wepay->request('payment_bank/verify', [
'client_id' => config('ninja.wepay.client_id'),
'client_secret' => config('ninja.wepay.client_secret'),
'payment_bank_id' => $token->token,
'type' => 'microdeposits',
'microdeposits' => $transformed_transactions,
]);
}
catch(\Exception $e){
2021-06-16 08:41:29 +02:00
2021-06-16 12:12:04 +02:00
return redirect()->route('client.payment_methods.verification', ['payment_method' => $token->hashed_id, 'method' => GatewayType::BANK_TRANSFER])
->with('error', $e->getMessage());
}
2021-06-16 08:41:29 +02:00
/*
{
"payment_bank_id": 12345,
"bank_name": "Wells Fargo",
"account_last_four": "6789",
"state": "authorized"
}
*/
2021-06-16 12:12:04 +02:00
nlog($response);
2021-06-16 08:41:29 +02:00
//$meta = $token->meta;
if($response->state == "authorized")
{
2021-06-16 12:12:04 +02:00
$meta = $token->meta;
$meta->state = $response->state;
$token->meta;
2021-06-16 08:41:29 +02:00
$token->save();
2021-06-16 12:12:04 +02:00
return redirect()->route('client.payment_methods.index');
2021-06-16 08:41:29 +02:00
}
else{
2021-06-16 12:12:04 +02:00
return redirect()->route('client.payment_methods.verification', ['payment_method' => $token->hashed_id, 'method' => GatewayType::BANK_TRANSFER])
->with('error', ctrans('texts.verification_failed'));
2021-06-16 08:41:29 +02:00
}
}
///////////////////////////////////////////////////////////////////////////////////////
public function paymentView(array $data)
{
$data['gateway'] = $this->wepay_payment_driver;
$data['currency'] = $this->wepay_payment_driver->client->getCurrencyCode();
$data['payment_method_id'] = GatewayType::BANK_TRANSFER;
$data['amount'] = $data['total']['amount_with_fee'];
return render('gateways.wepay.bank_transfer', $data);
}
public function paymentResponse($request)
{
nlog($request->all());
2021-06-16 12:12:04 +02:00
$token = ClientGatewayToken::find($this->decodePrimaryKey($request->input('source')));
$token_meta = $token->meta;
if($token_meta->state != "authorized")
return redirect()->route('client.payment_methods.verification', ['payment_method' => $token->hashed_id, 'method' => GatewayType::BANK_TRANSFER]);
2021-06-20 08:24:37 +02:00
$response = $this->wepay_payment_driver->wepay->request('checkout/create', array(
2021-06-20 12:24:11 +02:00
// 'callback_uri' => route('payment_webhook', ['company_key' => $this->wepay_payment_driver->company_gateway->company->company_key, 'company_gateway_id' => $this->wepay_payment_driver->company_gateway->hashed_id]),
2021-06-20 08:24:37 +02:00
'unique_id' => Str::random(40),
'account_id' => $this->wepay_payment_driver->company_gateway->getConfigField('accountId'),
'amount' => $this->wepay_payment_driver->payment_hash->data->amount_with_fee,
'currency' => $this->wepay_payment_driver->client->getCurrencyCode(),
'short_description' => 'A vacation home rental',
'type' => 'goods',
'payment_method' => array(
'type' => 'payment_bank',
'payment_bank' => array(
'id' => $token->token
)
)
));
/* Merge all data and store in the payment hash*/
$state = [
'server_response' => $response,
'payment_hash' => $request->payment_hash,
];
2021-06-16 12:12:04 +02:00
2021-06-20 08:24:37 +02:00
$state = array_merge($state, $request->all());
$this->wepay_payment_driver->payment_hash->data = array_merge((array) $this->wepay_payment_driver->payment_hash->data, $state);
$this->wepay_payment_driver->payment_hash->save();
2021-06-16 12:12:04 +02:00
2021-06-20 08:24:37 +02:00
if(in_array($response->state, ['authorized', 'captured'])){
//success
nlog("success");
$payment_status = $response->state == 'authorized' ? Payment::STATUS_COMPLETED : Payment::STATUS_PENDING;
2021-06-16 12:12:04 +02:00
2021-06-20 08:24:37 +02:00
return $this->processSuccessfulPayment($response, $payment_status, GatewayType::BANK_TRANSFER);
}
2021-06-16 12:12:04 +02:00
2021-06-20 08:24:37 +02:00
if(in_array($response->state, ['released', 'cancelled', 'failed', 'expired'])){
//some type of failure
nlog("failure");
2021-06-16 12:12:04 +02:00
2021-06-20 08:24:37 +02:00
$payment_status = $response->state == 'cancelled' ? Payment::STATUS_CANCELLED : Payment::STATUS_FAILED;
2021-06-16 08:41:29 +02:00
2021-06-20 08:24:37 +02:00
$this->processUnSuccessfulPayment($response, $payment_status);
}
2021-06-16 08:41:29 +02:00
}
private function storePaymentMethod($response, $payment_method_id)
{
$payment_meta = new \stdClass;
$payment_meta->exp_month = (string) '';
$payment_meta->exp_year = (string) '';
$payment_meta->brand = (string) $response->bank_name;
$payment_meta->last4 = (string) $response->account_last_four;
$payment_meta->type = GatewayType::BANK_TRANSFER;
2021-06-16 12:12:04 +02:00
$payment_meta->state = $response->state;
2021-06-16 08:41:29 +02:00
$data = [
'payment_meta' => $payment_meta,
'token' => $response->payment_bank_id,
'payment_method_id' => $payment_method_id,
];
$this->wepay_payment_driver->storeGatewayToken($data);
}
2021-06-11 10:30:39 +02:00
}