2022-08-12 05:41:55 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Credit Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2022. Credit Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Jobs\Bank;
|
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
use App\Helpers\Bank\Nordigen\Nordigen;
|
2022-08-12 07:25:18 +02:00
|
|
|
use App\Libraries\MultiDB;
|
2023-12-01 14:30:33 +01:00
|
|
|
use App\Models\Account;
|
2022-08-12 05:41:55 +02:00
|
|
|
use App\Models\BankIntegration;
|
|
|
|
use App\Models\BankTransaction;
|
2022-09-14 11:12:50 +02:00
|
|
|
use App\Models\Company;
|
2023-12-11 09:15:41 +01:00
|
|
|
use App\Notifications\Ninja\GenericNinjaAdminNotification;
|
2022-11-11 05:28:49 +01:00
|
|
|
use App\Services\Bank\BankMatchingService;
|
2022-08-12 05:41:55 +02:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
class ProcessBankTransactionsNordigen implements ShouldQueue
|
2022-08-12 05:41:55 +02:00
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
private Account $account;
|
2022-08-12 05:41:55 +02:00
|
|
|
|
|
|
|
private BankIntegration $bank_integration;
|
|
|
|
|
2022-09-14 07:35:51 +02:00
|
|
|
private ?string $from_date;
|
2022-08-12 05:41:55 +02:00
|
|
|
|
2022-08-17 08:37:05 +02:00
|
|
|
private bool $stop_loop = true;
|
2022-09-14 11:07:12 +02:00
|
|
|
|
|
|
|
private int $skip = 0;
|
|
|
|
|
2022-09-14 11:12:50 +02:00
|
|
|
public Company $company;
|
2023-12-11 09:15:41 +01:00
|
|
|
public Nordigen $nordigen;
|
|
|
|
public $nordigen_account;
|
2022-09-14 11:12:50 +02:00
|
|
|
|
2022-08-12 05:41:55 +02:00
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*/
|
2023-12-01 14:30:33 +01:00
|
|
|
public function __construct(Account $account, BankIntegration $bank_integration)
|
2022-08-12 05:41:55 +02:00
|
|
|
{
|
2023-12-01 14:30:33 +01:00
|
|
|
$this->account = $account;
|
2022-08-12 05:41:55 +02:00
|
|
|
$this->bank_integration = $bank_integration;
|
2022-09-14 00:59:04 +02:00
|
|
|
$this->from_date = $bank_integration->from_date;
|
2022-09-14 11:12:50 +02:00
|
|
|
$this->company = $this->bank_integration->company;
|
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
if ($this->bank_integration->integration_type != BankIntegration::INTEGRATION_TYPE_NORDIGEN)
|
|
|
|
throw new \Exception("Invalid BankIntegration Type");
|
|
|
|
|
2023-12-11 09:15:41 +01:00
|
|
|
$this->nordigen = new Nordigen($this->account->bank_integration_nordigen_secret_id, $this->account->bank_integration_nordigen_secret_key);
|
|
|
|
|
2022-08-12 05:41:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2022-09-14 01:33:49 +02:00
|
|
|
|
|
|
|
set_time_limit(0);
|
2022-08-12 05:41:55 +02:00
|
|
|
|
2022-09-14 11:49:23 +02:00
|
|
|
//Loop through everything until we are up to date
|
2022-09-21 13:03:04 +02:00
|
|
|
$this->from_date = $this->from_date ?: '2021-01-01';
|
2022-09-14 00:54:59 +02:00
|
|
|
|
2023-12-11 09:15:41 +01:00
|
|
|
// UPDATE ACCOUNT
|
|
|
|
try {
|
|
|
|
$this->updateAccount();
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
nlog("{$this->account->bank_integration_nordigen_secret_id} - exited abnormally => " . $e->getMessage());
|
|
|
|
|
|
|
|
$content = [
|
|
|
|
"Processing transactions for account: {$this->bank_integration->account->key} failed",
|
|
|
|
"Exception Details => ",
|
|
|
|
$e->getMessage(),
|
|
|
|
];
|
|
|
|
|
|
|
|
$this->bank_integration->company->notification(new GenericNinjaAdminNotification($content))->ninja();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!$this->nordigen_account)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// UPDATE TRANSACTIONS
|
2023-12-01 14:30:33 +01:00
|
|
|
do {
|
2022-09-14 01:33:49 +02:00
|
|
|
|
2022-11-04 02:55:17 +01:00
|
|
|
try {
|
|
|
|
$this->processTransactions();
|
2023-12-01 14:30:33 +01:00
|
|
|
} catch (\Exception $e) {
|
2023-12-04 08:14:52 +01:00
|
|
|
nlog("{$this->account->bank_integration_nordigen_secret_id} - exited abnormally => " . $e->getMessage());
|
2023-12-11 09:15:41 +01:00
|
|
|
|
|
|
|
$content = [
|
|
|
|
"Processing transactions for account: {$this->bank_integration->account->key} failed",
|
|
|
|
"Exception Details => ",
|
|
|
|
$e->getMessage(),
|
|
|
|
];
|
|
|
|
|
|
|
|
$this->bank_integration->company->notification(new GenericNinjaAdminNotification($content))->ninja();
|
2022-11-04 02:55:17 +01:00
|
|
|
return;
|
|
|
|
}
|
2022-09-14 01:33:49 +02:00
|
|
|
|
2022-08-17 08:37:05 +02:00
|
|
|
}
|
2023-12-01 14:30:33 +01:00
|
|
|
while ($this->stop_loop);
|
2022-08-17 08:37:05 +02:00
|
|
|
|
2022-11-11 05:28:49 +01:00
|
|
|
BankMatchingService::dispatch($this->company->id, $this->company->db);
|
2022-09-14 11:12:50 +02:00
|
|
|
|
2022-08-17 08:37:05 +02:00
|
|
|
}
|
|
|
|
|
2023-12-11 09:15:41 +01:00
|
|
|
private function updateAccount()
|
2022-08-17 08:37:05 +02:00
|
|
|
{
|
2022-09-14 09:35:13 +02:00
|
|
|
|
2023-12-11 09:23:35 +01:00
|
|
|
if (!$this->nordigen->isAccountActive($this->bank_integration->nordigen_account_id)) {
|
2023-12-01 14:30:33 +01:00
|
|
|
$this->bank_integration->disabled_upstream = true;
|
|
|
|
$this->bank_integration->save();
|
|
|
|
$this->stop_loop = false;
|
2023-12-06 08:27:18 +01:00
|
|
|
// @turbo124 @todo send email for expired account
|
2023-12-01 14:30:33 +01:00
|
|
|
return;
|
2022-11-04 02:55:17 +01:00
|
|
|
}
|
|
|
|
|
2023-12-11 09:23:35 +01:00
|
|
|
$this->nordigen_account = $this->nordigen->getAccount($this->bank_integration->nordigen_account_id);
|
2023-12-11 09:15:41 +01:00
|
|
|
|
|
|
|
$this->bank_integration->bank_account_status = $this->nordigen_account['account_status'];
|
|
|
|
$this->bank_integration->balance = $this->nordigen_account['current_balance'];
|
|
|
|
$this->bank_integration->currency = $this->nordigen_account['account_currency'];
|
|
|
|
|
|
|
|
$this->bank_integration->save();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private function processTransactions()
|
|
|
|
{
|
|
|
|
|
2022-09-14 08:57:47 +02:00
|
|
|
//Get transaction count object
|
2023-12-11 09:23:35 +01:00
|
|
|
$transactions = $this->nordigen->getTransactions($this->bank_integration->nordigen_account_id, $this->from_date);
|
2022-09-14 00:54:59 +02:00
|
|
|
|
2022-09-14 08:57:47 +02:00
|
|
|
//Get int count
|
2023-12-09 17:16:01 +01:00
|
|
|
$count = sizeof($transactions);
|
2022-08-12 05:41:55 +02:00
|
|
|
|
2022-09-14 08:57:47 +02:00
|
|
|
//if no transactions, update the from_date and move on
|
2023-12-01 14:30:33 +01:00
|
|
|
if (count($transactions) == 0) {
|
2022-09-14 08:57:47 +02:00
|
|
|
|
2023-12-11 09:15:41 +01:00
|
|
|
$this->bank_integration->from_date = now()->subDays(5);
|
2022-11-04 02:55:17 +01:00
|
|
|
$this->bank_integration->disabled_upstream = false;
|
2022-09-14 08:57:47 +02:00
|
|
|
$this->bank_integration->save();
|
2022-09-14 09:53:38 +02:00
|
|
|
$this->stop_loop = false;
|
2022-09-14 07:52:54 +02:00
|
|
|
return;
|
2022-09-14 08:57:47 +02:00
|
|
|
}
|
2022-09-14 07:52:54 +02:00
|
|
|
|
2022-09-14 08:57:47 +02:00
|
|
|
//Harvest the company
|
2022-09-14 01:33:49 +02:00
|
|
|
|
2022-09-14 11:14:00 +02:00
|
|
|
MultiDB::setDb($this->company->db);
|
2022-09-14 01:33:49 +02:00
|
|
|
|
2022-09-14 08:57:47 +02:00
|
|
|
/*Get the user */
|
2022-09-14 11:14:00 +02:00
|
|
|
$user_id = $this->company->owner()->id;
|
2023-12-01 14:30:33 +01:00
|
|
|
|
2022-09-14 08:57:47 +02:00
|
|
|
/* Unguard the model to perform batch inserts */
|
2022-08-17 03:52:16 +02:00
|
|
|
BankTransaction::unguard();
|
|
|
|
|
2022-09-14 08:57:47 +02:00
|
|
|
$now = now();
|
2022-08-12 05:41:55 +02:00
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
foreach ($transactions as $transaction) {
|
|
|
|
|
|
|
|
if (BankTransaction::where('transaction_id', $transaction['transaction_id'])->where('company_id', $this->company->id)->withTrashed()->exists())
|
2022-08-12 05:41:55 +02:00
|
|
|
continue;
|
|
|
|
|
2022-08-17 05:43:16 +02:00
|
|
|
//this should be much faster to insert than using ::create()
|
2023-12-11 09:15:41 +01:00
|
|
|
\DB::table('bank_transactions')->insert(
|
2023-12-01 14:30:33 +01:00
|
|
|
array_merge($transaction, [
|
2022-09-14 11:14:00 +02:00
|
|
|
'company_id' => $this->company->id,
|
2022-08-17 03:52:16 +02:00
|
|
|
'user_id' => $user_id,
|
|
|
|
'bank_integration_id' => $this->bank_integration->id,
|
2022-09-14 08:57:47 +02:00
|
|
|
'created_at' => $now,
|
|
|
|
'updated_at' => $now,
|
2022-08-17 03:52:16 +02:00
|
|
|
])
|
2022-08-17 05:43:16 +02:00
|
|
|
);
|
2022-08-12 05:41:55 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-09-14 10:25:30 +02:00
|
|
|
|
2023-12-11 09:15:41 +01:00
|
|
|
// $this->skip = $this->skip + 500;
|
2022-09-14 01:33:49 +02:00
|
|
|
|
2023-12-11 09:15:41 +01:00
|
|
|
// if ($count < 500) {
|
|
|
|
// $this->stop_loop = false;
|
|
|
|
// $this->bank_integration->from_date = now()->subDays(5);
|
|
|
|
// $this->bank_integration->save();
|
2022-09-14 11:07:12 +02:00
|
|
|
|
2023-12-11 09:15:41 +01:00
|
|
|
// }
|
|
|
|
|
|
|
|
$this->stop_loop = false;
|
|
|
|
$this->bank_integration->from_date = now()->subDays(5);
|
|
|
|
$this->bank_integration->save();
|
2022-09-14 01:40:08 +02:00
|
|
|
|
2022-08-12 05:41:55 +02:00
|
|
|
}
|
2023-12-01 14:30:33 +01:00
|
|
|
}
|