forked from PrestaShop/autoupgrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ajax-upgradetabconfig.php
82 lines (71 loc) · 2.96 KB
/
ajax-upgradetabconfig.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?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 Academic Free License 3.0 (AFL-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/AFL-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 [email protected] 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 <[email protected]>
* @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;
if (function_exists('date_default_timezone_set')) {
// date_default_timezone_get calls date_default_timezone_set, which can provide warning
$timezone = @date_default_timezone_get();
date_default_timezone_set($timezone);
}
/**
* Set constants & general values used by the autoupgrade.
*
* @param string $callerFilePath Path to the caller file. Needed as the two files are not in the same folder
*
* @return \PrestaShop\Module\AutoUpgrade\UpgradeContainer
*/
function autoupgrade_init_container($callerFilePath)
{
if (PHP_SAPI === 'cli') {
$options = getopt('', ['dir:']);
if (isset($options['dir'])) {
$_POST['dir'] = $options['dir'];
}
}
// the following test confirm the directory exists
if (empty($_POST['dir'])) {
echo 'No admin directory provided (dir). Update assistant cannot proceed.';
exit(1);
}
// defines.inc.php can not exists (1.3.0.1 for example)
// but we need _PS_ROOT_DIR_
if (!defined('_PS_ROOT_DIR_')) {
define('_PS_ROOT_DIR_', realpath($callerFilePath . '/../../'));
}
if (!defined('_PS_MODULE_DIR_')) {
define('_PS_MODULE_DIR_', _PS_ROOT_DIR_ . DIRECTORY_SEPARATOR . 'modules' . DIRECTORY_SEPARATOR);
}
define('AUTOUPGRADE_MODULE_DIR', _PS_MODULE_DIR_ . 'autoupgrade' . DIRECTORY_SEPARATOR);
require_once AUTOUPGRADE_MODULE_DIR . 'vendor/autoload.php';
$dir = Tools14::safeOutput(Tools14::getValue('dir'));
define('_PS_ADMIN_DIR_', _PS_ROOT_DIR_ . DIRECTORY_SEPARATOR . $dir);
if (_PS_ADMIN_DIR_ !== realpath(_PS_ADMIN_DIR_)) {
echo 'wrong directory: ' . $dir;
exit(1);
}
$container = new \PrestaShop\Module\AutoUpgrade\UpgradeContainer(_PS_ROOT_DIR_, _PS_ADMIN_DIR_);
$container->getState()->importFromArray(empty($_REQUEST['params']) ? [] : $_REQUEST['params']);
return $container;
}