-
Notifications
You must be signed in to change notification settings - Fork 61
/
vtiger-install.php
230 lines (213 loc) · 6.84 KB
/
vtiger-install.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<?php
/**
* Vtiger Installation Script.
*
* @author Francesco Bianco <[email protected]>
*/
date_default_timezone_set('America/Los_Angeles');
define('VT_VERSION', getenv('VT_VERSION'));
if (version_compare(VT_VERSION, '7.0.0', '>=')) {
define('DB_TYPE', 'mysqli');
define('DB_HOST', '127.0.0.1');
define('DB_PORT', '3306');
define('DB_NAME', 'vtiger');
define('DB_USER', 'vtiger');
define('DB_PASS', 'vtiger');
define('DB_ROOT', '');
} elseif (version_compare(VT_VERSION, '6.0.0', '>=') && version_compare(VT_VERSION, '7.0.0', '<')) {
define('DB_TYPE', 'mysql');
define('DB_HOST', '127.0.0.1');
define('DB_PORT', '3306');
define('DB_NAME', 'vtiger');
define('DB_USER', 'root');
define('DB_PASS', 'root');
define('DB_ROOT', 'root');
} else {
echo "[vtiger] Error unsupported version.";
exit(1);
}
require_once '/usr/src/vtiger/vendor/autoload.php';
use Javanile\HttpRobot\HttpRobot;
echo "[vtiger] Testing installation...\n";
echo '[vtiger] Database params: '.DB_TYPE.' '.DB_HOST.' '.DB_PORT.' '.DB_NAME.' '.DB_USER.' '.DB_PASS."\n";
$link = mysqli_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME, DB_PORT);
if (mysqli_connect_errno()) {
echo '[vtiger] Database error: '.mysqli_connect_errno().' - '.mysqli_connect_error()."\n";
exit(1);
}
$robot = new HttpRobot([
'base_uri' => 'http://localhost/',
'cookies' => true,
]);
// Check if cookie are working...
$data = $robot->get('health.php', ['@html']);
$data = $robot->post('health.php?setcookie=yes', ['cookie_name' => 'test', 'cookie_value' => '1234'], ['@html']);
$data = $robot->get('health.php', ['@html']);
/**
* Get session token
*/
echo "[vtiger] (#1) Get session token";
$values = $robot->get('index.php?module=Install&view=Index&mode=Step4', ['__vtrftk', '@text']);
echo " -> token: '{$values['__vtrftk']}'\n";
if (version_compare(VT_VERSION, '7.0.0', '>=')) {
if (empty($values['__vtrftk'])) {
echo " -> [ERROR] Session token not found\n";
echo $values['@text'];
exit(1);
}
}
/**
* Submit installation params
*/
echo "[vtiger] (#2) Sending installation parameters";
$values = $robot->post(
'index.php',
[
'__vtrftk' => $values['__vtrftk'],
'module' => 'Install',
'view' => 'Index',
'mode' => 'Step5',
'db_type' => DB_TYPE,
'db_hostname' => DB_HOST,
'db_username' => DB_USER,
'db_password' => DB_PASS,
'db_name' => DB_NAME,
'db_root_username' => DB_ROOT,
'db_root_password' => DB_ROOT,
'currency_name' => 'USA, Dollars',
'admin' => 'admin',
'password' => 'admin',
'retype_password' => 'admin',
'firstname' => '',
'lastname' => 'Administrator',
'admin_email' => '[email protected]',
'dateformat' => 'dd-mm-yyyy',
'timezone' => 'America/Los_Angeles',
],
['__vtrftk', 'auth_key', '@text']
);
echo " -> form-token: '{$values['__vtrftk']}' auth-key: '{$values['auth_key']}'\n";
echo "[vtiger] (#3) Confirm installation parameters";
$values = $robot->post(
'index.php',
[
'__vtrftk' => $values['__vtrftk'],
'auth_key' => $values['auth_key'],
'module' => 'Install',
'view' => 'Index',
'mode' => 'Step6',
],
['__vtrftk', 'auth_key', '@text']
);
echo " -> form-token: '{$values['__vtrftk']}' auth-key: '{$values['auth_key']}'\n";
/**
* Selecting industry
*/
echo "[vtiger] (#4) Selecting industry";
$values = $robot->post(
'index.php',
[
'__vtrftk' => $values['__vtrftk'],
'auth_key' => $values['auth_key'],
'module' => 'Install',
'view' => 'Index',
'mode' => 'Step7',
'industry' => 'Accounting',
],
['__vtrftk', 'auth_key', '@text']
);
echo " -> form-token: '{$values['__vtrftk']}' auth-key: '{$values['auth_key']}'\n";
if (version_compare(VT_VERSION, '7.0.0', '>=')) {
if (empty($values['__vtrftk'])) {
echo " -> [ERROR] install error on industry selector\n";
$mysqli = mysqli_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME, DB_PORT);
$error = mysqli_connect_error();
$result = mysqli_query($mysqli, "SHOW TABLES");
while ($table = mysqli_fetch_row($result)) {
echo "Table: $table[0]\n";
}
echo $values['@text'];
if (file_exists('/var/lib/vtiger/logs/php.log')) {
echo file_get_contents('/var/lib/vtiger/logs/php.log');
}
#exit(1);
}
}
/**
* First login seems required only for >7
*/
echo "[vtiger] (#5) First login";
$values = $robot->post(
'index.php?module=Users&action=Login',
[
'__vtrftk' => $values['__vtrftk'],
'username' => 'admin',
'password' => 'admin',
]
//,
//['__vtrftk', '@text']
);
if (version_compare(VT_VERSION, '7.0.0', '>=')) {
if (empty($values['__vtrftk'])) {
echo " -> [ERROR] install error on first login.\n";
#echo $values['@text'];
echo file_get_contents('/var/www/html/logs/php.log');
#exit(1);
}
}
echo " -> form-token: '{$values['__vtrftk']}' auth-key: '{$values['auth_key']}'\n";
/**
* Select crm modules
*/
echo "[vtiger] (#6) Select modules and packages";
$values = $robot->post(
'index.php?module=Users&action=SystemSetupSave',
[
'__vtrftk' => $values['__vtrftk'],
'packages[Tools]' => 'on',
'packages[Sales]' => 'on',
'packages[Marketing]' => 'on',
'packages[Support]' => 'on',
'packages[Inventory]' => 'on',
'packages[Project]' => 'on',
],
['__vtrftk', '@text']
);
echo " -> form-token: '{$values['__vtrftk']}' auth-key: '{$values['auth_key']}'\n";
// Save user settings
echo "[vtiger] (#7) Save user settings";
$values = $robot->post(
'index.php?module=Users&action=UserSetupSave',
[
'__vtrftk' => $values['__vtrftk'],
'currency_name' => 'Euro',
'lang_name' => 'en_us',
'time_zone' => 'Europe/Amsterdam',
'date_format' => 'dd-mm-yyyy',
],
['__vtrftk', '@text']
);
echo " -> form-token: '{$values['__vtrftk']}' auth-key: '{$values['auth_key']}'\n";
// =================================================================
// Select Modules
/*
$modules = [
'Documents' => false,
];
foreach ($modules as $module => $status) {
echo "[vtiger] ".($status?'enable':'disable')." module '${module}': ";
$resp = $robot->post(
'index.php',
[
'__vtrftk' => $vtrftk,
'module' => 'ModuleManager',
'parent' => 'Settings',
'action' => 'Basic',
'mode' => 'updateModuleStatus',
'forModule' => $module,
'updateStatus' => $status,
]
);
echo trim($resp)."\n";
}
*/