Files
Tony Murray f296464dae validate.php proper exit code (#16274)
some fixes around database & poller checks
2024-08-08 20:00:56 -05:00

64 lines
1.9 KiB
PHP

<?php
/**
* CheckActivePoller.php
*
* -Description-
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
*
* @copyright 2022 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Validations\Poller;
use App\Models\Device;
use App\Models\Poller;
use App\Models\PollerCluster;
use LibreNMS\DB\Eloquent;
use LibreNMS\ValidationResult;
class CheckActivePoller implements \LibreNMS\Interfaces\Validation
{
/**
* @inheritDoc
*/
public function validate(): ValidationResult
{
$dispatcher_exists = PollerCluster::isActive()->exists();
$wrapper_exists = Poller::isActive()->exists();
if (! $dispatcher_exists && ! $wrapper_exists) {
$interval = (int) \LibreNMS\Config::get('rrd.step');
return ValidationResult::fail(trans('validation.validations.poller.CheckActivePoller.fail', ['interval' => $interval]));
}
if ($dispatcher_exists && $wrapper_exists) {
return ValidationResult::fail(trans('validation.validations.poller.CheckActivePoller.both_fail'));
}
return ValidationResult::ok(trans('validation.validations.poller.CheckActivePoller.ok'));
}
/**
* @inheritDoc
*/
public function enabled(): bool
{
return Eloquent::isConnected() && Device::exists();
}
}