2022-01-24 04:30:32 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-01-24 04:30:32 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\PaymentDrivers\Stripe\Jobs;
|
|
|
|
|
|
|
|
use App\Jobs\Util\SystemLogger;
|
|
|
|
use App\Libraries\MultiDB;
|
2022-10-06 02:00:39 +02:00
|
|
|
use App\Models\ClientGatewayToken;
|
2022-01-24 04:30:32 +01:00
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\CompanyGateway;
|
|
|
|
use App\Models\GatewayType;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Models\Payment;
|
|
|
|
use App\Models\PaymentHash;
|
|
|
|
use App\Models\PaymentType;
|
|
|
|
use App\Models\SystemLog;
|
|
|
|
use App\PaymentDrivers\Stripe\Utilities;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
class PaymentIntentWebhook implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, Utilities;
|
|
|
|
|
|
|
|
public $tries = 1; //number of retries
|
|
|
|
|
|
|
|
public $deleteWhenMissingModels = true;
|
|
|
|
|
|
|
|
public $stripe_request;
|
|
|
|
|
|
|
|
public $company_key;
|
|
|
|
|
|
|
|
private $company_gateway_id;
|
|
|
|
|
2022-01-24 11:53:46 +01:00
|
|
|
public $payment_completed = false;
|
|
|
|
|
2022-01-24 04:30:32 +01:00
|
|
|
public function __construct($stripe_request, $company_key, $company_gateway_id)
|
|
|
|
{
|
|
|
|
$this->stripe_request = $stripe_request;
|
|
|
|
$this->company_key = $company_key;
|
|
|
|
$this->company_gateway_id = $company_gateway_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
MultiDB::findAndSetDbByCompanyKey($this->company_key);
|
|
|
|
|
2022-01-24 11:53:46 +01:00
|
|
|
$company = Company::where('company_key', $this->company_key)->first();
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
foreach ($this->stripe_request as $transaction) {
|
|
|
|
if (array_key_exists('payment_intent', $transaction)) {
|
|
|
|
$payment = Payment::query()
|
|
|
|
->where('company_id', $company->id)
|
|
|
|
->where('transaction_reference', $transaction['payment_intent'])
|
|
|
|
->first();
|
|
|
|
} else {
|
|
|
|
$payment = Payment::query()
|
|
|
|
->where('company_id', $company->id)
|
|
|
|
->where('transaction_reference', $transaction['id'])
|
|
|
|
->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($payment) {
|
|
|
|
$payment->status_id = Payment::STATUS_COMPLETED;
|
|
|
|
$payment->save();
|
2022-01-24 11:53:46 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
$this->payment_completed = true;
|
2022-11-26 00:04:03 +01:00
|
|
|
}
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2022-01-24 04:30:32 +01:00
|
|
|
|
2022-10-06 01:12:57 +02:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($this->payment_completed) {
|
2022-11-26 00:04:03 +01:00
|
|
|
return;
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2022-10-06 01:12:57 +02:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$company_gateway = CompanyGateway::find($this->company_gateway_id);
|
|
|
|
$stripe_driver = $company_gateway->driver()->init();
|
2022-01-24 04:30:32 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$charge_id = false;
|
2022-11-25 13:30:03 +01:00
|
|
|
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (isset($this->stripe_request['object']['charges']) && optional($this->stripe_request['object']['charges']['data'][0])['id']) {
|
|
|
|
$charge_id = $this->stripe_request['object']['charges']['data'][0]['id'];
|
|
|
|
} // API VERSION 2018
|
|
|
|
elseif (isset($this->stripe_request['object']['latest_charge'])) {
|
|
|
|
$charge_id = $this->stripe_request['object']['latest_charge'];
|
|
|
|
} // API VERSION 2022-11-15
|
2022-11-25 13:30:03 +01:00
|
|
|
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (!$charge_id) {
|
2022-11-26 00:04:03 +01:00
|
|
|
nlog("could not resolve charge");
|
|
|
|
return;
|
|
|
|
}
|
2022-11-25 21:29:15 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$pi = \Stripe\PaymentIntent::retrieve($this->stripe_request['object']['id'], $stripe_driver->stripe_connect_auth);
|
2022-11-25 21:29:15 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$charge = \Stripe\Charge::retrieve($charge_id, $stripe_driver->stripe_connect_auth);
|
2022-01-24 04:30:32 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (!$charge) {
|
2022-11-26 00:04:03 +01:00
|
|
|
nlog("no charge found");
|
|
|
|
nlog($this->stripe_request);
|
|
|
|
return;
|
|
|
|
}
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$company = Company::where('company_key', $this->company_key)->first();
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$payment = Payment::query()
|
|
|
|
->where('company_id', $company->id)
|
|
|
|
->where('transaction_reference', $charge['id'])
|
|
|
|
->first();
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2023-03-18 08:24:56 +01:00
|
|
|
//return early
|
|
|
|
if ($payment && $payment->status_id == Payment::STATUS_COMPLETED) {
|
2023-01-16 19:19:14 +01:00
|
|
|
nlog(" payment found and status correct - returning ");
|
2022-11-26 00:04:03 +01:00
|
|
|
return;
|
2023-02-16 02:36:09 +01:00
|
|
|
} elseif ($payment) {
|
2022-11-26 00:04:03 +01:00
|
|
|
$payment->status_id = Payment::STATUS_COMPLETED;
|
|
|
|
$payment->save();
|
|
|
|
}
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$hash = isset($charge['metadata']['payment_hash']) ? $charge['metadata']['payment_hash'] : false;
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (!$hash) {
|
2022-11-27 07:33:43 +01:00
|
|
|
return;
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2022-11-27 07:33:43 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$payment_hash = PaymentHash::where('hash', $hash)->first();
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (!$payment_hash) {
|
2022-11-26 00:04:03 +01:00
|
|
|
return;
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$stripe_driver->client = $payment_hash->fee_invoice->client;
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$meta = [
|
|
|
|
'gateway_type_id' => $pi['metadata']['gateway_type_id'],
|
|
|
|
'transaction_reference' => $charge['id'],
|
|
|
|
'customer' => $charge['customer'],
|
|
|
|
'payment_method' => $charge['payment_method'],
|
|
|
|
'card_details' => isset($charge['payment_method_details']['card']['brand']) ? $charge['payment_method_details']['card']['brand'] : PaymentType::CREDIT_CARD_OTHER
|
|
|
|
];
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2022-12-06 21:43:38 +01:00
|
|
|
SystemLogger::dispatch(
|
|
|
|
['response' => $this->stripe_request, 'data' => []],
|
|
|
|
SystemLog::CATEGORY_GATEWAY_RESPONSE,
|
|
|
|
SystemLog::EVENT_GATEWAY_SUCCESS,
|
|
|
|
SystemLog::TYPE_STRIPE,
|
|
|
|
null,
|
|
|
|
$company,
|
|
|
|
);
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (isset($pi['allowed_source_types']) && in_array('card', $pi['allowed_source_types'])) {
|
2022-12-06 21:43:38 +01:00
|
|
|
$invoice = Invoice::with('client')->withTrashed()->find($payment_hash->fee_invoice_id);
|
2022-11-26 00:04:03 +01:00
|
|
|
$client = $invoice->client;
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($invoice->is_deleted) {
|
2022-12-06 21:43:38 +01:00
|
|
|
return;
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2022-12-06 21:43:38 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$this->updateCreditCardPayment($payment_hash, $client, $meta);
|
2023-02-16 02:36:09 +01:00
|
|
|
} elseif (isset($pi['payment_method_types']) && in_array('card', $pi['payment_method_types'])) {
|
2022-12-06 21:43:38 +01:00
|
|
|
$invoice = Invoice::with('client')->withTrashed()->find($payment_hash->fee_invoice_id);
|
2022-11-26 00:04:03 +01:00
|
|
|
$client = $invoice->client;
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($invoice->is_deleted) {
|
2022-12-06 21:43:38 +01:00
|
|
|
return;
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2022-12-06 21:43:38 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$this->updateCreditCardPayment($payment_hash, $client, $meta);
|
2023-02-16 02:36:09 +01:00
|
|
|
} elseif (isset($pi['payment_method_types']) && in_array('us_bank_account', $pi['payment_method_types'])) {
|
2022-12-06 21:43:38 +01:00
|
|
|
$invoice = Invoice::with('client')->withTrashed()->find($payment_hash->fee_invoice_id);
|
2022-11-26 00:04:03 +01:00
|
|
|
$client = $invoice->client;
|
2022-11-25 13:30:03 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($invoice->is_deleted) {
|
2022-12-06 21:43:38 +01:00
|
|
|
return;
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2022-12-06 21:43:38 +01:00
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
$this->updateAchPayment($payment_hash, $client, $meta);
|
2023-03-18 08:24:56 +01:00
|
|
|
} elseif (isset($pi['payment_method_types']) && in_array('bacs_debit', $pi['payment_method_types'])) {
|
2023-01-16 19:19:14 +01:00
|
|
|
return;
|
|
|
|
}
|
2022-01-24 04:30:32 +01:00
|
|
|
}
|
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
private function updateAchPayment($payment_hash, $client, $meta)
|
2022-10-06 01:12:57 +02:00
|
|
|
{
|
|
|
|
$company_gateway = CompanyGateway::find($this->company_gateway_id);
|
2022-11-26 00:04:03 +01:00
|
|
|
$payment_method_type = $meta['gateway_type_id'];
|
2022-10-06 01:12:57 +02:00
|
|
|
$driver = $company_gateway->driver($client)->init()->setPaymentMethod($payment_method_type);
|
|
|
|
|
|
|
|
$payment_hash->data = array_merge((array) $payment_hash->data, $this->stripe_request);
|
|
|
|
$payment_hash->save();
|
|
|
|
$driver->setPaymentHash($payment_hash);
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'payment_method' => $payment_hash->data->object->payment_method,
|
|
|
|
'payment_type' => PaymentType::ACH,
|
|
|
|
'amount' => $payment_hash->data->amount_with_fee,
|
2022-11-26 00:04:03 +01:00
|
|
|
'transaction_reference' => $meta['transaction_reference'],
|
2022-10-06 01:12:57 +02:00
|
|
|
'gateway_type_id' => GatewayType::BANK_TRANSFER,
|
|
|
|
];
|
2023-01-16 19:19:14 +01:00
|
|
|
|
2022-10-06 01:12:57 +02:00
|
|
|
$payment = $driver->createPayment($data, Payment::STATUS_COMPLETED);
|
|
|
|
|
|
|
|
SystemLogger::dispatch(
|
|
|
|
['response' => $this->stripe_request, 'data' => $data],
|
|
|
|
SystemLog::CATEGORY_GATEWAY_RESPONSE,
|
|
|
|
SystemLog::EVENT_GATEWAY_SUCCESS,
|
|
|
|
SystemLog::TYPE_STRIPE,
|
|
|
|
$client,
|
|
|
|
$client->company,
|
|
|
|
);
|
|
|
|
|
2022-10-06 02:00:39 +02:00
|
|
|
try {
|
2022-11-26 00:04:03 +01:00
|
|
|
$customer = $driver->getCustomer($meta['customer']);
|
|
|
|
$method = $driver->getStripePaymentMethod($meta['payment_method']);
|
|
|
|
$payment_method = $meta['payment_method'];
|
2022-10-06 02:00:39 +02:00
|
|
|
|
|
|
|
$token_exists = ClientGatewayToken::where([
|
|
|
|
'gateway_customer_reference' => $customer->id,
|
|
|
|
'token' => $payment_method,
|
|
|
|
'client_id' => $client->id,
|
|
|
|
'company_id' => $client->company_id,
|
|
|
|
])->exists();
|
|
|
|
|
|
|
|
/* Already exists return */
|
|
|
|
if ($token_exists) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$payment_meta = new \stdClass;
|
|
|
|
$payment_meta->brand = (string) \sprintf('%s (%s)', $method->us_bank_account['bank_name'], ctrans('texts.ach'));
|
|
|
|
$payment_meta->last4 = (string) $method->us_bank_account['last4'];
|
|
|
|
$payment_meta->type = GatewayType::BANK_TRANSFER;
|
|
|
|
$payment_meta->state = 'verified';
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'payment_meta' => $payment_meta,
|
|
|
|
'token' => $payment_method,
|
|
|
|
'payment_method_id' => GatewayType::BANK_TRANSFER,
|
|
|
|
];
|
|
|
|
|
|
|
|
$additional_data = ['gateway_customer_reference' => $customer->id];
|
|
|
|
|
|
|
|
if ($customer->default_source === $method->id) {
|
|
|
|
$additional_data = ['gateway_customer_reference' => $customer->id, 'is_default' => 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
$driver->storeGatewayToken($data, $additional_data);
|
2023-02-16 02:36:09 +01:00
|
|
|
} catch(\Exception $e) {
|
2022-10-06 02:00:39 +02:00
|
|
|
nlog("failed to import payment methods");
|
|
|
|
nlog($e->getMessage());
|
|
|
|
}
|
2022-10-06 01:12:57 +02:00
|
|
|
}
|
|
|
|
|
2022-11-26 00:04:03 +01:00
|
|
|
private function updateCreditCardPayment($payment_hash, $client, $meta)
|
2022-01-24 04:30:32 +01:00
|
|
|
{
|
|
|
|
$company_gateway = CompanyGateway::find($this->company_gateway_id);
|
2022-11-26 00:04:03 +01:00
|
|
|
$payment_method_type = $meta['gateway_type_id'];
|
2022-01-24 04:30:32 +01:00
|
|
|
$driver = $company_gateway->driver($client)->init()->setPaymentMethod($payment_method_type);
|
|
|
|
|
|
|
|
$payment_hash->data = array_merge((array) $payment_hash->data, $this->stripe_request);
|
|
|
|
$payment_hash->save();
|
|
|
|
$driver->setPaymentHash($payment_hash);
|
|
|
|
|
|
|
|
$data = [
|
2022-01-24 11:53:46 +01:00
|
|
|
'payment_method' => $payment_hash->data->object->payment_method,
|
2022-11-26 00:04:03 +01:00
|
|
|
'payment_type' => PaymentType::parseCardType(strtolower($meta['card_details'])) ?: PaymentType::CREDIT_CARD_OTHER,
|
2022-01-24 04:30:32 +01:00
|
|
|
'amount' => $payment_hash->data->amount_with_fee,
|
2022-11-26 00:04:03 +01:00
|
|
|
'transaction_reference' => $meta['transaction_reference'],
|
2022-01-24 04:30:32 +01:00
|
|
|
'gateway_type_id' => GatewayType::CREDIT_CARD,
|
|
|
|
];
|
2023-01-16 19:19:14 +01:00
|
|
|
|
2022-01-24 04:30:32 +01:00
|
|
|
$payment = $driver->createPayment($data, Payment::STATUS_COMPLETED);
|
|
|
|
|
|
|
|
SystemLogger::dispatch(
|
|
|
|
['response' => $this->stripe_request, 'data' => $data],
|
|
|
|
SystemLog::CATEGORY_GATEWAY_RESPONSE,
|
|
|
|
SystemLog::EVENT_GATEWAY_SUCCESS,
|
|
|
|
SystemLog::TYPE_STRIPE,
|
|
|
|
$client,
|
|
|
|
$client->company,
|
|
|
|
);
|
|
|
|
}
|
2023-01-16 19:19:14 +01:00
|
|
|
}
|