-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRecalculate.php
524 lines (475 loc) · 18.2 KB
/
Recalculate.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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
<?php
namespace UWMadison\Recalculate;
use ExternalModules\AbstractExternalModule;
use ExternalModules\ExternalModules;
use REDCap;
use Calculate;
use Project;
use RestUtility;
class Recalculate extends AbstractExternalModule
{
private $oneMonth = (60 * 60 * 24 * 30);
private $maxCrons = 120;
private $timeFormat = 'Y-m-d\TH:i:s.000\Z';
/*
Redcap Hook. Allow nav to the index page only if user rights are met
*/
public function redcap_module_link_check_display($project_id, $link)
{
return $this->userHasRights() ? true : null;
}
/*
Redcap Hook. Prevent opening module config on the project if no user rights.
*/
public function redcap_module_configure_button_display()
{
return empty($_GET['pid']) || $this->userHasRights();
}
/*
Process a post request from API or router
*/
public function process($tokenRequired)
{
global $Proj;
$request = RestUtility::processRequest($tokenRequired);
$params = $request->getRequestVars();
$project_id = $params['projectid'];
// API calls need to have a new project instance created
if (!isset($Proj)) {
$Proj = new Project($project_id);
}
// Only really needed for API, but just check for everyone
if (!$this->isModuleEnabledForProject($project_id)) {
RestUtility::sendResponse(400, "The requested module is currently disabled on this project.");
}
// Run core code
$result = [];
$action = $params["action"] ?? "api";
if ($action == "settings") {
$result = $this->loadCrons();
} elseif ($action == "rmCron") {
$result = $this->remove_cron($params["ids"]);
} else {
$config = $this->parse_field_event_record($params["fields"], $params["events"], $params["records"], $Proj);
if ($action == "cron") {
$result = $this->setup_cron($config, $params["batchSize"], $params["time"], $params["repeat"]);
} else { // API, Calc
$this->projectLog($action, $config['field']['post'], $config['event']['post'], $config['record']['post']);
$result = $this->recalculate($config, $action);
}
}
return json_encode($result);
}
/*
Cron job method to check if any user defined recalcs should run
*/
public function run_cron($cronInfo)
{
// Stash original PID, probably not needed, but docs recommend
$originalPid = $_GET['pid'];
$maxTime = $cronInfo["cron_max_run_time"];
global $Proj;
// Loop over every pid using this EM
foreach ($this->getProjectsWithModuleEnabled() as $pid) {
// Act like we are in that project
$_GET['pid'] = $pid;
$Proj = new Project($pid);
// Gather a bunch of info
$time = gmdate($this->timeFormat); // ISO time in same format as JS
$expire = gmdate($this->timeFormat, time() - $maxTime);
$veryOld = gmdate($this->timeFormat, time() - $this->oneMonth);
$crons = $this->getProjectSetting('cron', $pid);
$crons = empty($crons) ? [] : json_decode($crons, true);
$large = count($crons) > $this->maxCrons;
// Loop over all configed crons
foreach ($crons as $id => $cron) {
if (in_array($cron["status"], [0, 1])) { // Running or Scheduled
// Mark the cron as error
if ($expire > $cron["time"]) {
$cron["status"] = -1;
$this->update_cron($id, $cron, $pid);
}
// Run the cron
elseif ($time > $cron["time"] && $cron["status"] == 0) {
// Set to running
$cron["status"] = 1;
$this->update_cron($id, $cron, $pid);
$this->projectLog("cron", $cron["fields"], $cron["events"], $cron["records"], $pid);
// Perform recalcs
$size = $cron["size"] > 0 ? $cron["size"] : 1000;
$config = $this->parse_field_event_record($cron["fields"], $cron["events"], $cron["records"]);
$records = ((count($cron["records"]) == 0) || (count($cron["records"]) == 1 && $cron["records"][0] == "*")) ? $config["record"]["valid"] : $cron["records"];
$batchedRecords = array_chunk($records, $size);
foreach ($batchedRecords as $set) {
$config['record']['post'] = $set;
$this->recalculate($config, "cron", $Proj);
$cron["log"] = [
"time" => gmdate($this->timeFormat),
"records" => array_slice($set, 0, 5)
];
$this->update_cron($id, $cron, $pid);
}
// Check for repeat config
if ($cron["repeat"]) {
$newTime = gmdate($this->timeFormat, strtotime($cron["time"] . ' +' . $cron["repeat"] . ' day'));
$this->setup_cron([
"field" => ["post" => $cron["fields"]],
"event" => ["post" => $cron["events"]],
"record" => ["post" => $cron["records"]]
], $cron["size"], $newTime, $cron["repeat"]);
}
// Done
$cron["status"] = 2;
$cron["completed"] = gmdate($this->timeFormat);
$this->update_cron($id, $cron, $pid);
return; // Only run one at a time
}
} elseif ($large && ($veryOld > $cron["time"])) {
// Remove old entry
unset($crons[$id]);
}
}
}
// Put the pid back the way it was before this cron job
// likely doesn't matter, but is good housekeeping practice
$_GET['pid'] = $originalPid;
return "The \"{$cronInfo['cron_name']}\" cron job completed successfully.";
}
/*
Setup a new user defined cron
*/
private function setup_cron($config, $size, $time, $repeat)
{
$json = $this->getProjectSetting('cron');
$json = empty($json) ? [] : json_decode($json, true);
$json[] = [
"fields" => $config['field']['post'],
"events" => $config['event']['post'],
"records" => $config['record']['post'],
"time" => $time,
"repeat" => $repeat,
"size" => intval($size),
"status" => 0
];
$this->setProjectSetting('cron', json_encode($json));
return [
"errors" => [],
"id" => end($this->loadCrons())["id"]
];
}
/*
Remove a a list of crons by id
*/
private function remove_cron($idList)
{
$json = $this->getProjectSetting('cron');
$json = empty($json) ? [] : json_decode($json, true);
$removed = [];
foreach ($idList as $id) {
if (!empty($json[$id]) && $json[$id]['status'] != 1) { // Don't remove if running
$json[$id]['id'] = $id;
$removed[] = $json[$id];
unset($json[$id]);
}
}
$this->setProjectSetting('cron', json_encode($json));
return [
"errors" => [],
"removed" => $removed
];
}
/*
Re-pull the cron json, update a cron, and save.
Avoids any overlapping cron issues.
*/
private function update_cron($id, $cron, $pid = null)
{
$json = $this->getProjectSetting('cron', $pid);
$json = empty($json) ? [] : json_decode($json, true);
$json[$id] = $cron;
$this->setProjectSetting('cron', json_encode($json), $pid);
}
/*
Formats Fields Events and Records from Ajax into
an array of ready-to-use values
*/
private function parse_field_event_record($fields, $events, $records)
{
// Can't use REDCap:: here as we are called by cron
global $Proj;
$allEvents = $Proj->longitudinal ? array_keys($Proj->eventInfo) : ['all'];
function decode($input)
{
return array_map('trim', is_string($input) ? (json_decode($input, true) ?? []) : $input);
}
return [
"field" => [
"post" => decode($fields),
"valid" => array_keys($this->getAllCalcFields()),
],
"event" => [
"post" => decode($events),
"valid" => $allEvents,
],
"record" => [
"post" => decode($records),
"valid" => $this->getAllRecordIds(),
]
];
}
/*
Performs core functionality. Invoked via ajax/api.
Fire the native redcap calculated field routines.
*/
private function recalculate($config, $action, $proj = null)
{
$errors = [];
$this->checkMemory();
// Validate submission
foreach ($config as $name => $c) {
// Missing param
if (count($c['post']) == 0) {
$errors[] = [
"text" => $this->tt('error_missing', $name),
"display" => true
];
continue;
}
// Substitue in wild cards
if (in_array($c['post'][0], ["all", "*"])) {
$config[$name]['post'] = $c['valid'];
$config[$name]['all'] = true;
continue;
}
// We can't validate events on an API call due to context
if ($action == "api" && $name == "event") {
continue;
}
$intersection = array_intersect($c['post'], $c['valid']);
if (count($intersection) != count($c['post'])) {
$errors[] = [
"text" => $this->tt('error_invalid', $name),
"display" => true
];
}
}
// Execute Calc
$updates = 0;
$preview = [];
if (count($errors) == 0) {
$batchSize = $this->getBatchSize(count($config['field']['post']));
$recordBatches = array_chunk($config['record']['post'], $batchSize);
$fields = $config['field']['all'] ? Null : $config['field']['post'];
foreach ($recordBatches as $recordSubset) {
// Preview generation only
if ($action == "preview") {
$tmp = Calculate::calculateMultipleFields($recordSubset, $fields, false, 'all');
if (count($tmp) > 0) {
// Combine the array with rest of batches
$tmp = array_combine(array_map(function ($a) {
return '_' . $a;
}, array_keys($tmp)), array_values($tmp));
$preview = array_merge_recursive($preview, $tmp);
}
continue;
}
// For specific event writes, flip through events or post 'all'
// We could do all events at once, but we might time out on large recalcs
if ($config['event']['all']) $config['event']['post'] = ['all'];
foreach ($config['event']['post'] as $event_id) {
$exclude_rec_event_field = array_diff($config['event']['valid'], $config['event']['post']);
$exclude_rec_event_field = array_fill_keys($exclude_rec_event_field, ["" => ["" => array_fill_keys($fields, true)]]);
$exclude_rec_event_field = array_fill_keys($recordSubset, $exclude_rec_event_field);
$calcUpdates = Calculate::saveCalcFields($recordSubset, $fields, $event_id, $exclude_rec_event_field, $proj);
if (is_numeric($calcUpdates)) {
$updates += $calcUpdates;
continue;
}
$errors[] = [
"text" => $calcUpdates,
"display" => false
];
}
}
}
// For previews, search for data user can't access
if ($action == "preview") {
$rights = $this->getFieldAccessMap();
foreach ($rights as $field => $frights) {
if (!$frights['access']) {
$this->censorData($preview, $field);
}
}
}
// Return values
$records = $config['record']['all'] ? ['*'] : $config['record']['post'];
return [
'changes' => $updates,
'errors' => $errors,
'records' => $records,
'preview' => $preview
];
}
/*
Log an action for the EM
*/
private function projectLog($action, $fieldList, $eventList, $recordList, $pid = null)
{
$sql = null;
$record = count($recordList) == 1 && $recordList[0] != "*" ? $recordList[0] : NULL;
$event = count($eventList) == 1 && $eventList[0] != "*" ? $eventList[0] : NULL;
$config = [
"calculate" => [
"blurb" => "Recalculate",
"changes" => "Perfromed recalc for ..."
],
"api" => [
"blurb" => "Recalculate API",
"changes" => "Perfromed recalc for ..."
],
"preview" => [
"blurb" => "Recalculate Preview",
"changes" => "Generated preview for ..."
],
"cron" => [
"blurb" => "Scheduled Recalculate",
"changes" => "Perfromed recalc for ..."
]
];
$fields = implode(', ', $fieldList);
$events = implode(', ', $eventList);
$records = implode(', ', $recordList);
$changes = $config[$action]["changes"] . "\nFields = $fields\nEvents = $events\nRecords = $records";
REDCap::logEvent($config[$action]["blurb"], $changes, $sql, $record, $event, $pid);
}
/*
Fetch and return all sever-sourced info
*/
public function loadSettings()
{
return [
"crons" => $this->loadCrons(),
"events" => REDCap::getEventNames(false, true),
"isClassic" => !REDCap::isLongitudinal(),
"fields" => $this->getAllCalcFields(),
"records" => $this->getAllRecordIds(),
"csrf" => $this->getCSRFToken(),
"router" => $this->getUrl('router.php')
];
}
/*
Load all Scheduled Cron info
*/
private function loadCrons()
{
$json = $this->getProjectSetting('cron');
$json = empty($json) ? [] : json_decode($json, true);
foreach ($json as $id => $cron) {
$json[$id]['id'] = $id;
}
return array_values($json);
}
/*
Return a record batch size for calcs. Mostly just guessing.
*/
private function getBatchSize($size)
{
if ($size > 400) return 5;
if ($size > 60) return 20;
return 100;
}
/*
Return a map from fields to forms/access rights to the field
*/
private function getFieldAccessMap()
{
global $Proj;
$rights = reset(REDCap::getUserRights(USERID))['forms'];
$map = [];
foreach ($Proj->metadata as $attr) {
$map[$attr['field_name']] = [
"form" => $attr['form_name'],
"access" => $rights[$attr['form_name']] != "0"
];
}
return $map;
}
/*
Recursively search for a field and redact
*/
private function censorData(array &$arr, $field)
{
foreach ($arr as $key => &$value) {
if (is_array($value)) {
$this->censorData($value, $field);
}
if ($key == $field) {
$value = array_merge(
$value,
[
"saved" => "",
"censor" => true
]
);
}
}
}
/*
Return all field names that are configured as "calc" or via
a calc action tag
*/
private function getAllCalcFields()
{
global $Proj;
$fields = [];
foreach ($Proj->metadata as $attr) {
$actionTag = strtoupper($attr['misc'] ?? "");
if (
$attr['element_type'] == 'calc' ||
strpos($actionTag, "@CALCDATE") !== false ||
strpos($actionTag, "@CALCTEXT") !== false
) {
$fields[$attr['field_name']] = strip_tags($attr['element_label']);
}
}
return $fields;
}
/*
Check system settings, we might want to increase allowed RAM
*/
private function checkMemory()
{
$mb = intval($this->getSystemSetting('memory'));
$current = ini_get('memory_limit');
$current = intval($current) * (stripos($current, 'g') ? 1024 : 1);
if ($mb < 100 || $mb <= $current) return;
ini_set('memory_limit', $mb . 'M');
}
/*
Return all records in the project, optionally pass events to
speed up the data pull
*/
private function getAllRecordIds()
{
global $Proj;
return $this->escape(array_keys(REDCap::getData($Proj->project_id, 'array', null, $Proj->table_pk)));
}
/*
Check if current user is allowed to use the module
*/
private function userHasRights()
{
$user = $this->getUser();
if ($user->isSuperUser()) return true;
$whitelist = array_filter($this->getProjectSetting("user-whitelist") ?? []);
$dataQuality = $user->getRights()["data_quality_execute"] == "1";
return count($whitelist) > 0 ? in_array($user->getUsername(), $whitelist) : $dataQuality;
}
/*
Check if module is enabled on project
*/
private function isModuleEnabledForProject($project_id)
{
return ExternalModules::getProjectSetting($this->PREFIX, $project_id, ExternalModules::KEY_ENABLED);
}
}