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

154 lines
4.5 KiB
PHP
Raw Normal View History

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;
use App\Helpers\Bank\Yodlee\Yodlee;
2022-08-12 07:25:18 +02:00
use App\Libraries\MultiDB;
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;
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;
class ProcessBankTransactions implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
private string $bank_integration_account_id;
private BankIntegration $bank_integration;
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;
2022-08-12 05:41:55 +02:00
/**
* Create a new job instance.
*/
2022-09-14 00:54:59 +02:00
public function __construct(string $bank_integration_account_id, BankIntegration $bank_integration)
2022-08-12 05:41:55 +02:00
{
$this->bank_integration_account_id = $bank_integration_account_id;
$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;
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
$this->from_date = $this->from_date ?: '2021-01-01';
2022-09-14 00:54:59 +02:00
2023-02-16 02:36:09 +01:00
do {
try {
$this->processTransactions();
2023-02-16 02:36:09 +01:00
} catch(\Exception $e) {
nlog("{$this->bank_integration_account_id} - exited abnormally => ". $e->getMessage());
return;
}
2023-02-16 02:36:09 +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-08-17 08:37:05 +02:00
}
private function processTransactions()
{
2022-08-12 05:41:55 +02:00
$yodlee = new Yodlee($this->bank_integration_account_id);
2023-02-16 02:36:09 +01:00
if (!$yodlee->getAccount($this->bank_integration->bank_account_id)) {
$this->bank_integration->disabled_upstream = true;
$this->bank_integration->save();
$this->stop_loop = false;
return;
}
2022-08-12 05:41:55 +02:00
$data = [
'top' => 500,
2022-09-14 11:07:12 +02:00
'fromDate' => $this->from_date,
2022-08-12 05:41:55 +02:00
'accountId' => $this->bank_integration->bank_account_id,
2022-09-14 11:07:12 +02:00
'skip' => $this->skip,
2022-08-12 05:41:55 +02:00
];
2022-09-14 08:57:47 +02:00
//Get transaction count object
2022-08-17 08:37:05 +02:00
$transaction_count = $yodlee->getTransactionCount($data);
2022-09-14 00:54:59 +02:00
2022-09-14 08:57:47 +02:00
//Get int count
2022-08-17 08:37:05 +02:00
$count = $transaction_count->transaction->TOTAL->count;
2022-09-14 08:57:47 +02:00
//get transactions array
2023-02-16 02:36:09 +01:00
$transactions = $yodlee->getTransactions($data);
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-02-16 02:36:09 +01:00
if (count($transactions) == 0) {
$this->bank_integration->from_date = now()->subDays(2);
$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;
2022-08-12 05:41:55 +02: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();
2023-02-16 02:36:09 +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;
2023-02-16 02:36:09 +01:00
}
2022-08-12 05:41:55 +02:00
2022-08-17 05:43:16 +02:00
//this should be much faster to insert than using ::create()
$bt = \DB::table('bank_transactions')->insert(
2023-02-16 02:36:09 +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
2022-09-14 11:07:12 +02:00
$this->skip = $this->skip + 500;
2022-09-14 01:33:49 +02:00
2023-02-16 02:36:09 +01:00
if ($count < 500) {
2022-08-17 08:37:05 +02:00
$this->stop_loop = false;
$this->bank_integration->from_date = now()->subDays(2);
2022-09-14 11:07:12 +02:00
$this->bank_integration->save();
2022-09-14 09:35:13 +02:00
}
2022-08-12 05:41:55 +02:00
}
2023-02-16 02:36:09 +01:00
}