mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Remove $debug global and $vdebug global makes these variables more accessible and protects from collisions. * the on boot set sends application as the first parameter, just handle that * Relocate other debug related functions * Log debug to stdout * Wrong output * remove stupid constants * Fix lint and style issues
75 lines
1.8 KiB
PHP
75 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
use LibreNMS\Util\Debug;
|
|
use LibreNMS\Util\Version;
|
|
|
|
class Kernel extends ConsoleKernel
|
|
{
|
|
/**
|
|
* The Artisan commands provided by your application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $commands = [
|
|
//
|
|
];
|
|
|
|
/**
|
|
* Define the application's command schedule.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
* @return void
|
|
*/
|
|
protected function schedule(Schedule $schedule)
|
|
{
|
|
// $schedule->command('inspire')
|
|
// ->hourly();
|
|
}
|
|
|
|
/**
|
|
* Register the commands for the application.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function commands()
|
|
{
|
|
$this->load(__DIR__ . '/Commands');
|
|
|
|
require base_path('routes/console.php');
|
|
|
|
if ($this->app->environment() !== 'production') {
|
|
require base_path('routes/dev-console.php');
|
|
}
|
|
}
|
|
|
|
public function getArtisan()
|
|
{
|
|
if (is_null($this->artisan)) {
|
|
parent::getArtisan();
|
|
/** @phpstan-ignore-next-line */
|
|
$this->artisan->setName(\LibreNMS\Config::get('project_name', 'LibreNMS'));
|
|
/** @phpstan-ignore-next-line */
|
|
$this->artisan->setVersion(Version::get()->local());
|
|
}
|
|
|
|
return $this->artisan;
|
|
}
|
|
|
|
public function handle($input, $output = null)
|
|
{
|
|
// intercept input and check for debug
|
|
if ($input->hasParameterOption(['-d', '--debug', '-vv', '-vvv'], true)) {
|
|
if ($input->hasParameterOption(['-vvv'], true)) {
|
|
Debug::setVerbose();
|
|
}
|
|
$this->app->booted('\LibreNMS\Util\Debug::set');
|
|
}
|
|
|
|
return parent::handle($input, $output);
|
|
}
|
|
}
|