修复模块服务发现导致的兼容问题

This commit is contained in:
JaguarJack
2020-06-22 12:36:25 +08:00
parent 51d237d0f0
commit d873ba10f9
3 changed files with 19 additions and 10 deletions

View File

@@ -205,8 +205,8 @@ class CatchAdmin
*/
public static function getModuleInfo($module)
{
if (file_exists(self::moduleDirectory($module) . DIRECTORY_SEPARATOR . 'module.json')) {
return \json_decode(file_get_contents(self::moduleDirectory($module) . DIRECTORY_SEPARATOR . 'module.json'), true);
if (file_exists($module . DIRECTORY_SEPARATOR . 'module.json')) {
return \json_decode(file_get_contents($module. DIRECTORY_SEPARATOR . 'module.json'), true);
}
return [];

View File

@@ -75,18 +75,17 @@ PHP
*/
protected function getServices($module)
{
$services = [];
foreach ($this->getModules($module) as $module) {
$information = CatchAdmin::getModuleInfo($module);
if (!empty($information)) {
if (isset($information['services']) && !empty($information['services'])) {
$services = array_merge($services, $information['services']);
}
if ($module) {
$moduleInfo = CatchAdmin::getModuleInfo(CatchAdmin::directory() . $module);
if (isset($moduleInfo['services']) && !empty($moduleInfo['services'])) {
return $moduleInfo['services'];
} else {
return [];
}
}
return $services;
return CatchAdmin::getServices();
}
/**