librenms/LibreNMS/Validations/Dependencies.php

89 lines
3.1 KiB
PHP
Raw Permalink Normal View History

<?php
/**
* Dependencies.php
*
* Checks libraries
*
* 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
2021-09-10 18:09:53 +00:00
*
* @copyright 2018 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Validations;
use LibreNMS\Util\EnvHelper;
use LibreNMS\Util\Git;
use LibreNMS\ValidationResult;
use LibreNMS\Validator;
class Dependencies extends BaseValidation
{
/**
* Validate this module.
* To return ValidationResults, call ok, warn, fail, or result methods on the $validator
*
2021-09-08 21:35:56 +00:00
* @param Validator $validator
*/
public function validate(Validator $validator): void
{
if (EnvHelper::librenmsDocker()) {
2020-09-21 13:59:34 +00:00
$validator->ok('Installed from the official Docker image; no Composer required');
return;
}
// if git is not installed, do not assume composer is either
if (! Git::make()->repoPresent()) {
2020-09-21 13:59:34 +00:00
$validator->ok('Installed from package; no Composer required');
return;
}
$composer_output = trim(shell_exec("'" . $validator->getBaseDir() . "/scripts/composer_wrapper.php' --version"));
$found = preg_match(
'/Composer.*(\d+\.\d+\.\d+(-RC\d*|-beta\d?|-alpha\d+)?)/',
$composer_output,
$matches
);
if (! $found) {
2020-09-21 13:59:34 +00:00
$validator->fail('No composer available, please install composer', 'https://getcomposer.org/');
return;
} else {
2020-09-21 13:59:34 +00:00
$validator->ok('Composer Version: ' . $matches[1]);
}
$dep_check = shell_exec("'" . $validator->getBaseDir() . "/scripts/composer_wrapper.php' install --no-dev --dry-run");
preg_match_all('/Installing ([^ ]+\/[^ ]+) \(/', $dep_check, $dep_missing);
if (! empty($dep_missing[0])) {
2020-09-21 13:59:34 +00:00
$result = ValidationResult::fail('Missing dependencies!', $validator->getBaseDir() . '/scripts/composer_wrapper.php install --no-dev');
$result->setList('Dependencies', $dep_missing[1]);
$validator->result($result);
}
preg_match_all('/Updating ([^ ]+\/[^ ]+) \(/', $dep_check, $dep_outdated);
if (! empty($dep_outdated[0])) {
2020-09-21 13:59:34 +00:00
$result = ValidationResult::fail('Outdated dependencies', $validator->getBaseDir() . '/scripts/composer_wrapper.php install --no-dev');
$result->setList('Dependencies', $dep_outdated[1]);
}
if (empty($dep_missing[0]) && empty($dep_outdated[0])) {
2020-09-21 13:59:34 +00:00
$validator->ok('Dependencies up-to-date.');
}
}
}