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)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
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-11 10:30:39 +02:00
|
|
|
use App\PaymentDrivers\WePayPaymentDriver;
|
2021-06-16 12:12:04 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Http\Request;
|
2021-06-11 10:30:39 +02:00
|
|
|
|
|
|
|
class ACH
|
|
|
|
{
|
2021-06-16 12:12:04 +02:00
|
|
|
use MakesHash;
|
|
|
|
|
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]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// response = wepay.call('/checkout/create', {
|
|
|
|
// 'account_id': account_id,
|
|
|
|
// 'amount': '25.50',
|
|
|
|
// 'short_description': 'A vacation home rental',
|
|
|
|
// 'type': 'GOODS',
|
|
|
|
// 'payment_method': {
|
|
|
|
// 'type': 'payment_bank',
|
|
|
|
// 'payment_bank': {
|
|
|
|
// 'id': 20000061
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// })
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-06-16 08:41:29 +02:00
|
|
|
|
|
|
|
// $this->stripe->init();
|
|
|
|
|
|
|
|
// $source = ClientGatewayToken::query()
|
|
|
|
// ->where('id', $this->decodePrimaryKey($request->source))
|
|
|
|
// ->where('company_id', auth('contact')->user()->client->company->id)
|
|
|
|
// ->first();
|
|
|
|
|
|
|
|
// if (!$source) {
|
|
|
|
// throw new PaymentFailed(ctrans('texts.payment_token_not_found'), 401);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// $state = [
|
|
|
|
// 'payment_method' => $request->payment_method_id,
|
|
|
|
// 'gateway_type_id' => $request->company_gateway_id,
|
|
|
|
// 'amount' => $this->stripe->convertToStripeAmount($request->amount, $this->stripe->client->currency()->precision),
|
|
|
|
// 'currency' => $request->currency,
|
|
|
|
// 'customer' => $request->customer,
|
|
|
|
// ];
|
|
|
|
|
|
|
|
// $state = array_merge($state, $request->all());
|
|
|
|
// $state['source'] = $source->token;
|
|
|
|
|
|
|
|
// $this->stripe->payment_hash->data = array_merge((array)$this->stripe->payment_hash->data, $state);
|
|
|
|
// $this->stripe->payment_hash->save();
|
|
|
|
|
|
|
|
// try {
|
|
|
|
// $state['charge'] = \Stripe\Charge::create([
|
|
|
|
// 'amount' => $state['amount'],
|
|
|
|
// 'currency' => $state['currency'],
|
|
|
|
// 'customer' => $state['customer'],
|
|
|
|
// 'source' => $state['source'],
|
|
|
|
// ], $this->stripe->stripe_connect_auth);
|
|
|
|
|
|
|
|
// $state = array_merge($state, $request->all());
|
|
|
|
|
|
|
|
// $this->stripe->payment_hash->data = array_merge((array)$this->stripe->payment_hash->data, $state);
|
|
|
|
// $this->stripe->payment_hash->save();
|
|
|
|
|
|
|
|
// if ($state['charge']->status === 'pending' && is_null($state['charge']->failure_message)) {
|
|
|
|
// return $this->processPendingPayment($state);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// return $this->processUnsuccessfulPayment($state);
|
|
|
|
// } catch (Exception $e) {
|
|
|
|
// if ($e instanceof CardException) {
|
|
|
|
// return redirect()->route('client.payment_methods.verification', ['id' => ClientGatewayToken::first()->hashed_id, 'method' => GatewayType::BANK_TRANSFER]);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// throw new PaymentFailed($e->getMessage(), $e->getCode());
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|