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

96 lines
2.8 KiB
PHP
Raw Normal View History

2020-07-05 10:59:28 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-07-05 10:59:28 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2020-07-05 10:59:28 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-07-05 10:59:28 +02:00
*/
namespace App\Jobs\Ninja;
use App\Libraries\MultiDB;
2022-08-22 03:07:11 +02:00
use App\Models\Client;
2020-07-05 10:59:28 +02:00
use App\Models\Company;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
class CompanySizeCheck 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()
{
if (! config('ninja.db.multi_db_enabled')) {
Company::where('is_large', false)->withCount(['invoices', 'clients', 'products'])->cursor()->each(function ($company) {
if ($company->invoices_count > 500 || $company->products_count > 500 || $company->clients_count > 500) {
nlog("Marking company {$company->id} as large");
$company->account->companies()->update(['is_large' => true]);
}
});
nlog("updating all client credit balances");
Client::where('updated_at', '>', now()->subDay())
->cursor()
->each(function ($client){
$client->credit_balance = $client->service()->getCreditBalance();
$client->save();
});
2020-07-05 10:59:28 +02:00
} else {
//multiDB environment, need to
foreach (MultiDB::$dbs as $db) {
MultiDB::setDB($db);
nlog("Company size check db {$db}");
2020-07-05 10:59:28 +02:00
Company::where('is_large', false)->withCount(['invoices', 'clients', 'products'])->cursor()->each(function ($company) {
if ($company->invoices_count > 500 || $company->products_count > 500 || $company->clients_count > 500) {
nlog("Marking company {$company->id} as large");
2021-06-24 05:22:46 +02:00
$company->account->companies()->update(['is_large' => true]);
}
});
nlog("updating all client credit balances");
2022-08-22 03:07:11 +02:00
Client::where('updated_at', '>', now()->subDay())
->cursor()
->each(function ($client){
2022-08-22 03:07:11 +02:00
$client->credit_balance = $client->service()->getCreditBalance();
$client->save();
2022-08-22 03:07:11 +02:00
});
2022-08-22 03:07:11 +02:00
}
}
2020-07-05 10:59:28 +02:00
}
2020-07-05 10:59:28 +02:00
}