131 lines
4.7 KiB
PHP
131 lines
4.7 KiB
PHP
<?php
|
|
/**
|
|
* Copyright since 2007 PrestaShop SA and Contributors
|
|
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Open Software License (OSL 3.0)
|
|
* that is bundled with this package in the file LICENSE.md.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* https://opensource.org/licenses/OSL-3.0
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to https://devdocs.prestashop.com/ for more information.
|
|
*
|
|
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
|
* @copyright Since 2007 PrestaShop SA and Contributors
|
|
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
|
|
*/
|
|
function deactivate_custom_modules(): bool
|
|
{
|
|
$db = Db::getInstance();
|
|
$modules = scandir(_PS_MODULE_DIR_, SCANDIR_SORT_NONE);
|
|
foreach ($modules as $name) {
|
|
if (!in_array($name, ['.', '..', 'index.php', '.htaccess']) && @is_dir(_PS_MODULE_DIR_ . $name . DIRECTORY_SEPARATOR) && @file_exists(_PS_MODULE_DIR_ . $name . DIRECTORY_SEPARATOR . $name . '.php')) {
|
|
if (!preg_match('/^[a-zA-Z0-9_-]+$/', $name)) {
|
|
exit(Tools::displayError() . ' (Module ' . $name . ')');
|
|
}
|
|
}
|
|
}
|
|
|
|
$module_list_xml = _PS_ROOT_DIR_ . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'xml' . DIRECTORY_SEPARATOR . 'modules_list.xml';
|
|
|
|
if (!file_exists($module_list_xml)) {
|
|
$module_list_xml = _PS_ROOT_DIR_ . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'modules_list.xml';
|
|
if (!file_exists($module_list_xml)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$nativeModules = @simplexml_load_file($module_list_xml);
|
|
if ($nativeModules) {
|
|
$nativeModules = $nativeModules->modules;
|
|
}
|
|
$arrNativeModules = [];
|
|
if (!empty($nativeModules)) {
|
|
foreach ($nativeModules as $nativeModulesType) {
|
|
if (in_array($nativeModulesType['type'], ['native', 'partner'])) {
|
|
$arrNativeModules[] = '""';
|
|
foreach ($nativeModulesType->module as $module) {
|
|
$arrNativeModules[] = '"' . pSQL($module['name']) . '"';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$arrNonNative = [];
|
|
if ($arrNativeModules) {
|
|
$arrNonNative = $db->executeS('
|
|
SELECT *
|
|
FROM `' . _DB_PREFIX_ . 'module` m
|
|
WHERE name NOT IN (' . implode(',', $arrNativeModules) . ') ');
|
|
}
|
|
|
|
$uninstallMe = ['undefined-modules'];
|
|
if (is_array($arrNonNative)) {
|
|
foreach ($arrNonNative as $k => $aModule) {
|
|
$uninstallMe[(int) $aModule['id_module']] = $aModule['name'];
|
|
}
|
|
}
|
|
|
|
if (!is_array($uninstallMe)) {
|
|
$uninstallMe = [$uninstallMe];
|
|
}
|
|
|
|
foreach ($uninstallMe as $k => $v) {
|
|
$uninstallMe[$k] = '"' . pSQL($v) . '"';
|
|
}
|
|
|
|
$return = Db::getInstance()->execute('
|
|
UPDATE `' . _DB_PREFIX_ . 'module` SET `active` = 0 WHERE `name` IN (' . implode(',', $uninstallMe) . ')');
|
|
|
|
if (count(Db::getInstance()->executeS('SHOW TABLES LIKE \'' . _DB_PREFIX_ . 'module_shop\'')) > 0) {
|
|
foreach ($uninstallMe as $k => $uninstall) {
|
|
$return &= Db::getInstance()->execute('DELETE FROM `' . _DB_PREFIX_ . 'module_shop` WHERE `id_module` = ' . (int) $k);
|
|
}
|
|
}
|
|
|
|
return $return;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $moduleRepository
|
|
*/
|
|
function deactivate_custom_modules80($moduleRepository): bool
|
|
{
|
|
$nonNativeModulesList = $moduleRepository->getNonNativeModules();
|
|
|
|
$return = Db::getInstance()->execute(
|
|
'UPDATE `' . _DB_PREFIX_ . 'module` SET `active` = 0 WHERE `name` IN (' . implode(',', array_map('add_quotes', $nonNativeModulesList)) . ')'
|
|
);
|
|
|
|
$nonNativeModules = \Db::getInstance()->executeS('
|
|
SELECT *
|
|
FROM `' . _DB_PREFIX_ . 'module` m
|
|
WHERE name IN (' . implode(',', array_map('add_quotes', $nonNativeModulesList)) . ') ');
|
|
|
|
if (!is_array($nonNativeModules) || empty($nonNativeModules)) {
|
|
return $return;
|
|
}
|
|
|
|
$toBeUninstalled = [];
|
|
foreach ($nonNativeModules as $aModule) {
|
|
$toBeUninstalled[] = (int) $aModule['id_module'];
|
|
}
|
|
|
|
$sql = 'DELETE FROM `' . _DB_PREFIX_ . 'module_shop` WHERE `id_module` IN (' . implode(',', array_map('add_quotes', $toBeUninstalled)) . ') ';
|
|
|
|
return $return && Db::getInstance()->execute($sql);
|
|
}
|
|
|
|
function add_quotes(string $str): string
|
|
{
|
|
return sprintf("'%s'", $str);
|
|
}
|