1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 01:41:34 +02:00
invoiceninja/app/Jobs/Ninja/BankTransactionSync.php

84 lines
3.1 KiB
PHP
Raw Normal View History

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;
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-12-18 16:20:14 +01:00
// multiDB environment, need to @turbo124 do we need any changes here for selfhosted non-multidb envs
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-10 16:10:36 +01:00
if (Ninja::isHosted()) { // @turbo124 @todo I migrated the schedule for the job within the kernel to execute on all platforms and use the same expression here to determine if yodlee can run or not. Please chek/verify
2023-12-10 16:09:23 +01:00
nlog("syncing transactions - yodlee");
2022-09-14 07:50:44 +02:00
Account::with('bank_integrations')->whereNotNull('bank_integration_account_id')->cursor()->each(function ($account) {
2022-08-12 05:41:55 +02:00
2023-12-10 16:09:23 +01:00
if ($account->isPaid() && $account->plan == 'enterprise') {
$account->bank_integrations()->where('integration_type', BankIntegration::INTEGRATION_TYPE_YODLEE)->where('auto_sync', true)->where('is_deleted', false)->cursor()->each(function ($bank_integration) use ($account) {
2023-12-10 16:09:23 +01:00
(new ProcessBankTransactionsYodlee($account, $bank_integration))->handle();
});
}
2023-12-10 16:09:23 +01:00
});
}
2023-12-01 14:30:33 +01:00
2023-12-13 15:38:37 +01:00
if (config("ninja.nordigen.secret_id") && config("ninja.nordigen.secret_key")) { // @turbo124 check condition, when to execute this should be placed here (isSelfHosted || isPro/isEnterprise)
nlog("syncing transactions - nordigen");
2023-12-01 14:30:33 +01:00
2023-12-11 13:23:28 +01:00
Account::with('bank_integrations')->cursor()->each(function ($account) {
if ((Ninja::isSelfHost() || (Ninja::isHosted() && $account->isPaid() && $account->plan == 'enterprise'))) {
$account->bank_integrations()->where('integration_type', BankIntegration::INTEGRATION_TYPE_NORDIGEN)->where('auto_sync', true)->where('is_deleted', false)->cursor()->each(function ($bank_integration) {
(new ProcessBankTransactionsNordigen($bank_integration))->handle();
});
}
});
}
2023-12-01 14:30:33 +01:00
nlog("syncing transactions - done");
}
2022-08-12 05:41:55 +02:00
}
}