2022-08-12 05:41:55 +02: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-08-12 05:41:55 +02:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Jobs\Ninja;
|
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
use App\Jobs\Bank\ProcessBankTransactionsYodlee;
|
|
|
|
use App\Jobs\Bank\ProcessBankTransactionsNordigen;
|
2022-08-12 05:41:55 +02:00
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use App\Models\Account;
|
2023-12-01 14:30:33 +01:00
|
|
|
use App\Models\BankIntegration;
|
2022-08-12 05:41:55 +02:00
|
|
|
use App\Utils\Ninja;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
|
|
|
|
class BankTransactionSync implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2023-01-17 23:22:08 +01:00
|
|
|
|
2022-08-12 05:41:55 +02:00
|
|
|
//multiDB environment, need to
|
2023-12-01 14:30:33 +01:00
|
|
|
foreach (MultiDB::$dbs as $db) {
|
2022-08-12 05:41:55 +02:00
|
|
|
MultiDB::setDB($db);
|
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
nlog("syncing transactions - yodlee");
|
2022-09-14 07:50:44 +02:00
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
Account::with('bank_integrations')->whereNotNull('bank_integration_yodlee_account_id')->cursor()->each(function ($account) {
|
2022-08-12 05:41:55 +02:00
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
if ($account->isPaid() && $account->plan == 'enterprise') {
|
2022-08-12 05:41:55 +02:00
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
$account->bank_integrations()->where('integration_type', BankIntegration::INTEGRATION_TYPE_YODLEE)->andWhere('auto_sync', true)->cursor()->each(function ($bank_integration) use ($account) {
|
2022-08-12 05:41:55 +02:00
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
(new ProcessBankTransactionsYodlee($account, $bank_integration))->handle();
|
2022-08-12 05:41:55 +02:00
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
});
|
2022-08-12 05:41:55 +02:00
|
|
|
|
2023-12-01 14:30:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
nlog("syncing transactions - nordigen");
|
|
|
|
|
|
|
|
Account::with('bank_integrations')->whereNotNull('bank_integration_nordigen_client_id')->andWhereNotNull('bank_integration_nordigen_client_secret')->cursor()->each(function ($account) {
|
|
|
|
|
|
|
|
$account->bank_integrations()->where('integration_type', BankIntegration::INTEGRATION_TYPE_NORDIGEN)->andWhere('auto_sync', true)->cursor()->each(function ($bank_integration) use ($account) {
|
|
|
|
|
|
|
|
(new ProcessBankTransactionsNordigen($account, $bank_integration))->handle();
|
2022-08-12 05:41:55 +02:00
|
|
|
|
2022-11-26 04:38:09 +01:00
|
|
|
});
|
2023-12-01 14:30:33 +01:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
nlog("syncing transactions - done");
|
2022-11-26 04:38:09 +01:00
|
|
|
}
|
2022-08-12 05:41:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|