mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Automatic fixes for validations * webui * lint fixes * Fix an install issue with ConfigSeeder requesting cli input in web page. * Do not use c_echo in validate.php print_fail()
81 lines
2.2 KiB
PHP
81 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* BaseValidation.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 2018 Tony Murray
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
*/
|
|
|
|
namespace LibreNMS\Validations;
|
|
|
|
use LibreNMS\Interfaces\Validation;
|
|
use LibreNMS\Interfaces\ValidationGroup;
|
|
use LibreNMS\Validator;
|
|
|
|
abstract class BaseValidation implements ValidationGroup
|
|
{
|
|
/** @var bool */
|
|
protected $completed = false;
|
|
/** @var bool */
|
|
protected static $RUN_BY_DEFAULT = true;
|
|
/** @var string */
|
|
protected $directory = null;
|
|
/** @var string */
|
|
protected $name = null;
|
|
|
|
public function validate(Validator $validator): void
|
|
{
|
|
if ($this->directory) {
|
|
foreach (glob(__DIR__ . "/$this->directory/*.php") as $file) {
|
|
$base = basename($file, '.php');
|
|
$class = __NAMESPACE__ . "\\$this->directory\\$base";
|
|
$validation = new $class;
|
|
if ($validation instanceof Validation && $validation->enabled()) {
|
|
$validator->result($validation->validate(), $this->name);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns if this test should be run by default or not.
|
|
*/
|
|
public function isDefault(): bool
|
|
{
|
|
return static::$RUN_BY_DEFAULT;
|
|
}
|
|
|
|
/**
|
|
* Returns true if this group has been run
|
|
*/
|
|
public function isCompleted(): bool
|
|
{
|
|
return $this->completed;
|
|
}
|
|
|
|
/**
|
|
* Mark this group as completed
|
|
*/
|
|
public function markCompleted(): void
|
|
{
|
|
$this->completed = true;
|
|
}
|
|
}
|