mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
72 lines
2.1 KiB
PHP
72 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Models\Asset;
|
|
use Illuminate\Console\Command;
|
|
|
|
class SyncAssetCounters extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'snipeit:counter-sync';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Syncs checkedout, checked in, and requested counters for assets';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
$start = microtime(true);
|
|
$assets = Asset::withCount('checkins as checkins_count', 'checkouts as checkouts_count', 'userRequests as user_requests_count')
|
|
->withTrashed()->get();
|
|
|
|
if ($assets) {
|
|
if ($assets->count() > 0) {
|
|
$bar = $this->output->createProgressBar($assets->count());
|
|
|
|
foreach ($assets as $asset) {
|
|
$asset->checkin_counter = (int) $asset->checkins_count;
|
|
$asset->checkout_counter = (int) $asset->checkouts_count;
|
|
$asset->requests_counter = (int) $asset->user_requests_count;
|
|
$asset->unsetEventDispatcher();
|
|
$asset->save();
|
|
$output['info'][] = 'Asset: '.$asset->id.' has '.$asset->checkin_counter.' checkins, '.$asset->checkout_counter.' checkouts, and '.$asset->requests_counter.' requests';
|
|
$bar->advance();
|
|
}
|
|
$bar->finish();
|
|
|
|
foreach ($output['info'] as $key => $output_text) {
|
|
$this->info($output_text);
|
|
}
|
|
|
|
$time_elapsed_secs = microtime(true) - $start;
|
|
$this->info('Sync executed in '.$time_elapsed_secs.' seconds');
|
|
} else {
|
|
$this->info('No assets to sync');
|
|
}
|
|
}
|
|
}
|
|
}
|