-
Notifications
You must be signed in to change notification settings - Fork 5
/
lib.php
356 lines (306 loc) · 13.1 KB
/
lib.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* AB testing admin tool
*
* @package tool_abconfig
* @copyright 2019 Brendan Heywood <brendan@catalyst-au.net>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die;
/**
* After config
* @return void|null
*/
function tool_abconfig_after_config() {
try {
global $SESSION, $USER;
// Setup experiment manager.
$manager = new tool_abconfig_experiment_manager();
// Check if the param to disable ABconfig is present, if so, exit.
if (!optional_param('abconfig', true, PARAM_BOOL)) {
if (is_siteadmin()) {
return null;
}
}
// Get all experiments.
$experiments = $manager->get_experiments();
foreach ($experiments as $experiment => $contents) {
if (defined('CLI_SCRIPT') && CLI_SCRIPT) {
// Check ENV vars set on the cli.
$condition = getenv('ABCONFIG_' . strtoupper($experiment));
} else {
// Check URL params, and fire any experiments in the params.
$condition = optional_param($experiment, null, PARAM_TEXT);
// Only admins can fire additional experiments.
if (!is_siteadmin()) {
break;
}
}
if (empty($condition)) {
continue;
}
// Ensure condition set exists before executing.
if (array_key_exists($condition, $contents['conditions'])) {
tool_abconfig_execute_command_array($contents['conditions'][$condition]['commands'],
$contents['shortname']);
}
}
$commandarray = array();
// First, Build a list of all commands that need to be executed.
// Start with request scope.
$requestexperiments = $manager->get_active_request();
if (!empty($requestexperiments)) {
foreach ($requestexperiments as $record) {
// Make admin immune unless enabled for admin.
if (is_siteadmin()) {
if ($record['adminenabled'] == 0) {
continue;
}
}
$conditionrecords = $record['conditions'];
// Remove all conditions that contain the user ip in the whitelist.
$crecords = array();
foreach ($conditionrecords as $conditionrecord) {
$iplist = $conditionrecord['ipwhitelist'];
$users = !empty($conditionrecord['users']) ? json_decode($conditionrecord['users']) : [];
if (empty($users) || in_array($USER->id, $users)) {
if (!remoteip_in_list($iplist)) {
array_push($crecords, $conditionrecord);
}
}
}
// Increment through conditions until one is selected.
$condition = '';
$num = rand(1, 100);
$prevtotal = 0;
foreach ($crecords as $crecord) {
// If random number is within this range, set condition and break, else increment total.
if ($num > $prevtotal && $num <= ($prevtotal + $crecord['value'])) {
$commandarray[$record['shortname']] = $crecord['commands'];
// Do not select any more conditions.
break;
} else {
// Not this record, increment lower bound, and move on.
$prevtotal += $crecord['value'];
}
}
}
}
// Now session scope.
$sessionexperiments = $manager->get_active_session();
if (!empty($sessionexperiments)) {
foreach ($sessionexperiments as $record) {
// Check if a session var has been set for this experiment, only care if has been set.
$unique = 'abconfig_'.$record['shortname'];
if (property_exists($SESSION, $unique) && $SESSION->$unique != '') {
$commandarray[$record['shortname']] = $record['conditions'][$SESSION->$unique]['commands'];
}
}
}
// Now, execute all commands in the arrays.
foreach ($commandarray as $shortname => $command) {
tool_abconfig_execute_command_array($command, $shortname);
}
} catch (Exception $e) { // @codingStandardsIgnoreStart
// Catch exceptions from stuff not existing during installation process, fail silently
} // @codingStandardsIgnoreEnd
}
/**
* After require login
* @return void|null
* @throws coding_exception
*/
function tool_abconfig_after_require_login() {
global $SESSION, $USER;
// Create experiment manager.
$manager = new tool_abconfig_experiment_manager();
// Check if the param to disable ABconfig is present, if so, exit.
if (optional_param('abconfig', null, PARAM_TEXT) == 'off') {
if (is_siteadmin()) {
return null;
}
}
// Get active session records.
$records = $manager->get_active_session();
if (!empty($records)) {
foreach ($records as $record) {
// Make admin immune unless enabled for admin.
if (is_siteadmin()) {
if ($record['adminenabled'] == 0) {
continue;
}
}
// Create experiment session var identifier.
$unique = 'abconfig_'.$record['shortname'];
// Get condition sets for experiment.
$conditionrecords = $record['conditions'];
// Remove all conditions that contain the user ip in the whitelist.
$crecords = array();
foreach ($conditionrecords as $conditionrecord) {
$iplist = $conditionrecord['ipwhitelist'];
$users = !empty($conditionrecord['users']) ? json_decode($conditionrecord['users']) : [];
if (empty($users) || in_array($USER->id, $users)) {
if (!remoteip_in_list($iplist)) {
array_push($crecords, $conditionrecord);
}
}
}
// If condition set hasnt been selected, select a condition set, or none.
if (!property_exists($SESSION, $unique)) {
// Increment through conditions until one is selected.
$num = rand(1, 100);
$prevtotal = 0;
foreach ($crecords as $crecord) {
// If random number is within this range, set condition and break, else increment total.
if ($num > $prevtotal && $num <= ($prevtotal + $crecord['value'])) {
tool_abconfig_execute_command_array($crecord['commands'], $record['shortname']);
// Set a session var for this command, so it is not executed again this session.
$SESSION->{$unique} = $crecord['condset'];
// Do not execute any more conditions.
break;
} else {
// Not this record, increment lower bound, and move on.
$prevtotal += $crecord['value'];
}
}
// If session var is not set, no set selected, update var.
if (!property_exists($SESSION, $unique)) {
$SESSION->$unique = '';
}
// Now exit condition loop, this call is finished.
break;
}
}
}
}
/**
* Before footer
*
* This is a legacy callback that is used for compatibility with older Moodle versions.
* Moodle 4.4+ will use tool_abconfig\hook_callbacks::before_footer_html_generation instead.
*
* @return void
*/
function tool_abconfig_before_footer() {
tool_abconfig_execute_js('footer');
}
/**
* Before http headers
*
* This is a legacy callback that is used for compatibility with older Moodle versions.
* Moodle 4.4+ will use tool_abconfig\hook_callbacks::before_http_headers instead.
*
* @return void
*/
function tool_abconfig_before_http_headers() {
tool_abconfig_execute_js('header');
}
/**
* Execute command array
* @param string $commandsencoded
* @param string $shortname
* @param bool $js
* @param string $string
* @return void
*/
function tool_abconfig_execute_command_array($commandsencoded, $shortname, $js = false, string $string = null) {
global $CFG, $SESSION;
// Execute any commands passed in.
$commands = json_decode($commandsencoded);
foreach ($commands as $commandstring) {
$command = strtok($commandstring, ',');
// Check for core commands.
if ($command == 'CFG') {
$commandarray = explode(',', $commandstring, 3);
// Ensure that command hasnt already been set in config.php.
if (!array_key_exists($commandarray[1], $CFG->config_php_settings)) {
$CFG->{$commandarray[1]} = $commandarray[2];
$CFG->config_php_settings[$commandarray[1]] = $commandarray[2];
}
}
if ($command == 'forced_plugin_setting') {
// Check for plugin commands.
$commandarray = explode(',', $commandstring, 4);
// Ensure that command hasnt already been forced in config.php.
// If plugin settings array doesnt exist, or the actualy config key doesnt exist.
if (!array_key_exists($commandarray[1], $CFG->forced_plugin_settings) ||
!array_key_exists($commandarray[2], $CFG->forced_plugin_settings[$commandarray[1]])) {
$CFG->forced_plugin_settings[$commandarray[1]][$commandarray[2]] = $commandarray[3];
}
}
if ($command == 'http_header') {
// Check for http header commands.
$commandarray = explode(',', $commandstring, 3);
header("$commandarray[1]: $commandarray[2]");
}
if ($command == 'error_log') {
// Check for error logs.
$commandarray = explode(',', $commandstring, 2);
// Must ignore coding standards as typically error_log is not allowed.
error_log($commandarray[1]); // @codingStandardsIgnoreLine
}
if ($command == 'js_header') {
// Check for JS header scripts.
$commandarray = explode(',', $commandstring, 2);
// Set a unique session variable to be picked up by renderer hooks, to emit JS in the right areas.
$jsheaderunique = 'abconfig_js_header_'.$shortname;
// Store the unique in the session to be picked up by the header render hook.
$SESSION->$jsheaderunique = $commandarray[1];
}
if ($command == 'js_footer') {
// Check for JS footer scripts.
$commandarray = explode(',', $commandstring, 2);
// Set a unique session variable to be picked up by renderer hooks, to emit JS in the right areas.
$jsfooterunique = 'abconfig_js_footer_'.$shortname;
// Store the javascript in the session unique to be picked up by the footer render hook.
$SESSION->$jsfooterunique = $commandarray[1];
}
}
}
/**
* Execute JS
* @param string $type
* @return void|null
*/
function tool_abconfig_execute_js(string $type) {
// Check if the param to disable ABconfig is present, if so, exit.
if (optional_param('abconfig', null, PARAM_TEXT) == 'off') {
if (is_siteadmin()) {
return null;
}
}
global $SESSION;
// Get all experiments.
$manager = new tool_abconfig_experiment_manager();
$records = $manager->get_experiments();
foreach ($records as $record) {
// If called from header.
if ($type == 'header') {
$unique = 'abconfig_js_header_'.$record['shortname'];
} else if ($type == 'footer') {
$unique = 'abconfig_js_footer_'.$record['shortname'];
}
if (property_exists($SESSION, $unique)) {
// Found JS to be executed.
echo "<script type='text/javascript'>{$SESSION->$unique}</script>";
}
// If experiment is request scope, unset var so it doesnt fire again.
if ($record['scope'] == 'request' || $record['enabled'] == 0) {
unset($SESSION->$unique);
}
}
}