1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-24 01:20:40 +01:00

[ticket/14938] Inconsistency in ext_mgr all_available vs is_available

Made is_available much more strict, in line with the checks in all_available

PHPBB3-14938
This commit is contained in:
javiexin 2016-12-26 21:07:31 +01:00
parent 3322117c38
commit efc2b46303

View File

@ -524,7 +524,29 @@ class manager
*/
public function is_available($name)
{
return file_exists($this->get_extension_path($name, true));
// Not available if the folder does not exist
if (!file_exists($this->get_extension_path($name, true)))
{
return false;
}
$composer_file = $this->get_extension_path($name, true) . '/composer.json';
// Not available if there is no composer.json.
if (!is_readable($composer_file) || !($ext_info = file_get_contents($composer_file)))
{
return false;
}
$ext_info = json_decode($ext_info, true);
// Not available if malformed name or if the directory structure
// does not match the name value specified in composer.json.
if (substr_count($name, '/') !== 1 || !isset($ext_info['name']) || $name != $ext_info['name'])
{
return false;
}
return true;
}
/**