mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Apply code style * Remove explicit call to register policies * Shift core files * Shift config files * Default config files In an effort to make upgrading the constantly changing config files easier, Shift defaulted them and merged your true customizations - where ENV variables may not be used. * Bump Laravel dependencies * Add type hints for Laravel 10 * Shift cleanup * wip * wip * sync translation * Sync back config * Public Path Binding * QueryException * monolog * db::raw * monolog * db::raw * fix larastan collections * fix phpstan bug looping forever * larastan errors * larastan: fix column type * styleci * initialize array * fixes * fixes --------- Co-authored-by: Shift <shift@laravelshift.com>
77 lines
2.0 KiB
PHP
77 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use LibreNMS\Util\Debug;
|
|
use LibreNMS\Util\Version;
|
|
|
|
class Kernel extends ConsoleKernel
|
|
{
|
|
/**
|
|
* Define the application's command schedule.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
* @return void
|
|
*/
|
|
protected function schedule(Schedule $schedule): void
|
|
{
|
|
$this->scheduleMarkWorking($schedule);
|
|
}
|
|
|
|
/**
|
|
* Register the commands for the application.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function commands(): void
|
|
{
|
|
$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');
|
|
/** @phpstan-ignore-next-line */
|
|
$this->artisan->setVersion(Version::VERSION);
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
/**
|
|
* Store in the cache that the schedule is triggered.
|
|
* Used for Validation.
|
|
*/
|
|
private function scheduleMarkWorking(Schedule $schedule): void
|
|
{
|
|
$schedule->call(function () {
|
|
Cache::put('scheduler_working', now(), now()->addMinutes(6));
|
|
})->everyFiveMinutes();
|
|
}
|
|
}
|