2020-07-05 10:59:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-07-05 10:59:28 +02:00
|
|
|
*
|
|
|
|
* @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)
|
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')) {
|
2022-11-26 21:52:49 +01:00
|
|
|
|
2023-01-30 07:08:21 +01:00
|
|
|
Company::where('is_large', false)->withCount(['invoices', 'clients', 'products', 'quotes'])->cursor()->each(function ($company) {
|
2022-11-26 21:52:49 +01:00
|
|
|
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);
|
|
|
|
|
2022-11-26 21:52:49 +01:00
|
|
|
nlog("Company size check db {$db}");
|
2020-07-05 10:59:28 +02:00
|
|
|
|
2023-01-30 07:08:21 +01:00
|
|
|
Company::where('is_large', false)->withCount(['invoices', 'clients', 'products', 'quotes'])->cursor()->each(function ($company) {
|
|
|
|
if ($company->invoices_count > 500 || $company->products_count > 500 || $company->clients_count > 500 || $company->quotes_count > 500) {
|
2022-11-26 21:52:49 +01:00
|
|
|
nlog("Marking company {$company->id} as large");
|
2021-06-24 05:22:46 +02:00
|
|
|
|
2022-11-26 21:52:49 +01:00
|
|
|
$company->account->companies()->update(['is_large' => true]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
nlog("updating all client credit balances");
|
2022-08-22 03:07:11 +02:00
|
|
|
|
2022-11-26 21:52:49 +01:00
|
|
|
Client::where('updated_at', '>', now()->subDay())
|
|
|
|
->cursor()
|
|
|
|
->each(function ($client){
|
2022-08-22 03:07:11 +02:00
|
|
|
|
2022-11-26 21:52:49 +01:00
|
|
|
$client->credit_balance = $client->service()->getCreditBalance();
|
|
|
|
$client->save();
|
2022-08-22 03:07:11 +02:00
|
|
|
|
2022-11-26 21:52:49 +01:00
|
|
|
});
|
2022-08-22 03:07:11 +02:00
|
|
|
|
2022-11-26 21:52:49 +01:00
|
|
|
}
|
|
|
|
}
|
2020-07-05 10:59:28 +02:00
|
|
|
}
|
2022-11-26 21:52:49 +01:00
|
|
|
|
2020-07-05 10:59:28 +02:00
|
|
|
}
|