* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) */ use PrestaShop\Module\AutoUpgrade\Tools14; use PrestaShop\Module\AutoUpgrade\UpgradeTools\TaskRepository; /** * This file is the entrypoint for all ajax requests during a upgrade, rollback or configuration. * In order to get the admin context, this file is copied to the admin/autoupgrade folder of your shop when the module configuration is reached. * * Calling it from the module/autoupgrade folder will have unwanted consequences on the upgrade and your shop. */ require_once realpath(dirname(__FILE__) . '/../../modules/autoupgrade') . '/ajax-upgradetabconfig.php'; $container = autoupgrade_init_container(dirname(__FILE__)); (new \PrestaShop\Module\AutoUpgrade\ErrorHandler($container->getLogger()))->enable(); if (!$container->getCookie()->check($_COOKIE)) { // If this is an XSS attempt, then we should only display a simple, secure page if (ob_get_level() && ob_get_length() > 0) { ob_clean(); } echo '{wrong token}'; http_response_code(401); die(1); } $controller = TaskRepository::get(Tools14::getValue('action'), $container); $controller->init(); $controller->run(); echo $controller->getJsonResponse();