1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Jobs/Ninja/CompanySizeCheck.php

132 lines
4.6 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
*
2024-04-12 06:15:41 +02:00
* @copyright Copyright (c) 2024. 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;
use App\Models\Account;
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
{
2024-01-14 05:05:00 +01:00
use Dispatchable;
use InteractsWithQueue;
use Queueable;
use SerializesModels;
2020-07-05 10:59:28 +02:00
/**
* 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')) {
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) {
nlog("Marking company {$company->id} as large");
$company->account->companies()->update(['is_large' => true]);
}
});
nlog("updating all client credit balances");
2023-12-20 06:55:33 +01:00
Client::query()
->where('updated_at', '>', now()->subDay())
->cursor()
2023-02-16 02:36:09 +01:00
->each(function ($client) {
2023-12-20 06:55:33 +01:00
2024-01-14 05:05:00 +01:00
$old_credit_balance = $client->credit_balance;
$new_credit_balance = $client->service()->getCreditBalance();
if(floatval($old_credit_balance) !== floatval($new_credit_balance)) {
$client->credit_balance = $client->service()->getCreditBalance();
$client->saveQuietly();
}
2023-12-20 06:55:33 +01:00
});
/* Ensures lower permissioned users return the correct dataset and refresh responses */
2023-02-16 02:36:09 +01:00
Account::whereHas('companies', function ($query) {
$query->where('is_large', 0);
})
->whereHas('company_users', function ($query) {
$query->where('is_admin', 0);
})
2023-02-16 02:36:09 +01:00
->cursor()->each(function ($account) {
$account->companies()->update(['is_large' => true]);
});
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
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) {
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
2023-12-20 06:55:33 +01:00
Client::query()->where('updated_at', '>', now()->subDay())
->cursor()
2023-02-16 02:36:09 +01:00
->each(function ($client) {
2024-01-14 05:05:00 +01:00
$old_credit_balance = $client->credit_balance;
$new_credit_balance = $client->service()->getCreditBalance();
if(floatval($old_credit_balance) !== floatval($new_credit_balance)) {
$client->credit_balance = $client->service()->getCreditBalance();
$client->saveQuietly();
}
2023-12-20 06:55:33 +01:00
});
2022-08-22 03:07:11 +02:00
Account::where('plan', 'enterprise')
->whereDate('plan_expires', '>', now())
2023-02-16 02:36:09 +01:00
->whereHas('companies', function ($query) {
$query->where('is_large', 0);
})
2023-02-16 02:36:09 +01:00
->whereHas('company_users', function ($query) {
$query->where('is_admin', 0);
})
->cursor()->each(function ($account) {
$account->companies()->update(['is_large' => true]);
});
}
}
2020-07-05 10:59:28 +02:00
}
}