Manager: Add method `hasUnmetDependencies($name)`

This commit is contained in:
Johannes Meyer 2020-11-13 11:12:54 +01:00
parent baaf663db3
commit aba8c4a8ba
1 changed files with 30 additions and 0 deletions

View File

@ -531,6 +531,36 @@ class Manager
return $info;
}
/**
* Check if the given module has unmet dependencies
*
* @param string $name
*
* @return bool
*/
public function hasUnmetDependencies($name)
{
$module = $this->getModule($name, false);
$requiredMods = $module->getRequiredModules();
foreach ($requiredMods as $moduleName => $moduleVersion) {
if (! $this->has($moduleName, $moduleVersion)) {
return true;
}
}
$libraries = Icinga::app()->getLibraries();
$requiredLibs = $module->getRequiredLibraries();
foreach ($requiredLibs as $libraryName => $libraryVersion) {
if (! $libraries->has($libraryName, $libraryVersion)) {
return true;
}
}
return false;
}
/**
* Return an array containing all enabled module names as strings
*