From aba8c4a8ba902b3dd739b8038089832bbe9b752c Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 13 Nov 2020 11:12:54 +0100 Subject: [PATCH] Manager: Add method `hasUnmetDependencies($name)` --- .../Icinga/Application/Modules/Manager.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/library/Icinga/Application/Modules/Manager.php b/library/Icinga/Application/Modules/Manager.php index 52f337975..9729de74f 100644 --- a/library/Icinga/Application/Modules/Manager.php +++ b/library/Icinga/Application/Modules/Manager.php @@ -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 *