This repository was archived by the owner on Oct 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathExternalModule.php
More file actions
727 lines (605 loc) · 24.2 KB
/
ExternalModule.php
File metadata and controls
727 lines (605 loc) · 24.2 KB
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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
<?php
/**
* @file
* Provides ExternalModule class for OnCore Client.
*/
namespace OnCoreClient\ExternalModule;
require_once 'classes/OnCoreClient.php';
use ExternalModules\AbstractExternalModule;
use ExternalModules\ExternalModules;
use OnCoreClient\OnCoreClient;
use RCView;
use REDCap;
use REDCapEntity\EntityDB;
use REDCapEntity\EntityFactory;
use REDCapEntity\StatusMessageQueue;
/**
* ExternalModule class for OnCore Client.
*/
class ExternalModule extends AbstractExternalModule {
static public $subjectMappings;
static public $subjectStatuses;
static public $validStatuses;
/**
* @inheritdoc.
*/
function redcap_every_page_top($project_id) {
if ($project_id && strpos(PAGE, 'ExternalModules/manager/project.php') !== false) {
$this->setProtocolFormElement();
}
}
/**
* @inheritdoc.
*/
function redcap_module_system_enable($version) {
EntityDB::buildSchema($this->PREFIX);
}
/**
* @inheritdoc.
*/
function redcap_module_system_disable($version) {
EntityDB::dropSchema($this->PREFIX);
}
function redcap_entity_types() {
$types = [];
$types['oncore_subject_diff'] = [
'label' => 'OnCore Subject Diff',
'label_plural' => 'OnCore Subject Diffs',
'icon' => 'arrow_rotate_clockwise',
'special_keys' => [
'project' => 'project_id',
'label' => 'subject_name',
],
'class' => [
'name' => 'OnCoreClient\Entity\SubjectDiff',
'path' => 'classes/entity/SubjectDiff.php',
],
'properties' => [
'subject_id' => [
'name' => 'OnCore Subject',
'type' => 'entity_reference',
'entity_type' => 'oncore_subject',
],
'record_id' => [
'name' => 'REDCap Record',
'type' => 'record',
],
'project_id' => [
'name' => 'Project ID',
'type' => 'project',
'required' => true,
],
'subject_name' => [
'name' => 'Name',
'type' => 'text',
],
'subject_dob' => [
'name' => 'DOB',
'type' => 'date',
],
'type' => [
'name' => 'Type',
'type' => 'text',
'required' => true,
'choices' => [
'oncore_only' => 'New subject',
'redcap_only' => 'Record not linked',
'data_diff' => 'Needs update',
],
],
'status' => [
'name' => 'OnCore Status',
'type' => 'text',
'choices_callback' => '\OnCoreClient\Entity\SubjectDiff::getStatuses',
],
'diff' => [
'name' => 'Data',
'type' => 'json',
],
],
];
$types['oncore_subject'] = [
'label' => 'OnCore Subject',
'label_plural' => 'OnCore Subjects',
'special_keys' => [
'label' => 'subject_id',
'project' => 'project_id',
],
'properties' => [
'subject_id' => [
'name' => 'OnCore Primary Identifier',
'type' => 'text',
'required' => true,
],
'protocol_no' => [
'name' => 'Protocol number',
'type' => 'text',
'required' => true,
],
'project_id' => [
'name' => 'Project ID',
'type' => 'project',
'required' => true,
],
'status' => [
'name' => 'OnCore Status',
'type' => 'text',
'choices_callback' => '\OnCoreClient\Entity\SubjectDiff::getStatuses',
],
'data' => [
'name' => 'Data',
'type' => 'json',
],
],
];
$types['oncore_api_log'] = [
'label' => 'OnCore API Log',
'label_plural' => 'OnCore API Logs',
'icon' => 'report',
'properties' => [
'success' => [
'name' => 'Success',
'type' => 'boolean',
],
'operation' => [
'name' => 'Operation',
'type' => 'text',
'choices' => [
'getProtocol' => 'getProtocol',
'getProtocolSubjects' => 'getProtocolSubjects',
'createProtocol' => 'createProtocol',
'registerNewSubjectToProtocol' => 'registerNewSubjectToProtocol',
'registerExistingSubjectToProtocol' => 'registerExistingSubjectToProtocol',
],
],
'user_id' => [
'name' => 'User',
'type' => 'user',
'required' => true,
],
'project_id' => [
'name' => 'Project ID',
'type' => 'project',
'required' => true,
],
'request' => [
'name' => 'Request',
'type' => 'data',
],
'response' => [
'name' => 'Response',
'type' => 'data',
],
'error_msg' => [
'name' => 'Error message',
'type' => 'text',
],
],
'special_keys' => [
'project' => 'project_id',
'author' => 'user_id',
],
];
$types['oncore_staff_identifier'] = [
'label' => 'REDCap User Institution ID',
'label_plural' => 'REDCap Users Institution IDs',
'properties' => [
'staff_id' => [
'name' => 'Institution ID',
'type' => 'text',
'required' => true,
],
'user_id' => [
'name' => 'User',
'type' => 'user',
],
],
];
$types['oncore_protocol_staff'] = [
'label' => 'OnCore Protocol Staff Information',
'label_plural' => 'OnCore Protocol Staff Attributes',
'properties' => [
'protocol_no' => [
'name' => 'Protocol Number',
'type' => 'text',
'required' => true,
],
'staff_id' => [
'name' => 'Staff ID',
'type' => 'text',
],
'stop_date' => [
'name' => 'Stop Date',
'type' => 'date',
],
],
];
return $types;
}
/**
* Gets SOAP client, parameterized with configuration data.
*/
function getSoapClient() {
$wsdl = $this->getSystemSetting('wsdl');
$login = $this->getSystemSetting('login');
$password = $this->getSystemSetting('password');
$log_enabled = $this->getSystemSetting('log_enabled');
return new OnCoreClient($wsdl, $login, $password, $log_enabled);
}
function initSubjectsMetadata() {
global $Proj;
$settings = $this->getFormattedSettings($Proj->project_id);
if (!$statuses = array_filter($settings['valid_statuses'])) {
return;
}
$event_id = $settings['mappings_event'];
if (!$event_id || !isset($Proj->eventInfo[$event_id])) {
// Event ID is required.
return;
}
$mappings = [];
foreach ($settings['mappings'] + $settings['mappings']['contact_info'] as $key => $field) {
if (
empty($field) || !is_string($field) || !isset($Proj->metadata[$field]) ||
!in_array($Proj->metadata[$field]['form_name'], $Proj->eventsForms[$event_id])
) {
if ($key == 'primary_identifier') {
// Primary ID is required.
return;
}
continue;
}
// TODO: skip repeating forms.
$mappings[$this->_toCamelCase($key)] = $field;
}
$config = $this->getConfig();
foreach ($config['project-settings'][1]['sub_settings'] as $config_field) {
if (isset($statuses[$config_field['key']])) {
$statuses[$config_field['key']] = $config_field['name'];
}
}
if (isset($statuses['_expired'])) {
// Workaround for a bug on EM that does not allow fields keyed as
// "expired" to exist.
$statuses['expired'] = $statuses['_expired'];
unset($statuses['_expired']);
}
self::$subjectStatuses = $statuses;
$config = $config['project-settings'][3]['sub_settings'];
$labels = [];
foreach (array_merge($config, $config[11]['sub_settings']) as $config_field) {
$key = $this->_toCamelCase($config_field['key']);
if (isset($mappings[$key])) {
$labels[$key] = $config_field['name'];
}
}
// TODO: address lines.
self::$subjectMappings = [
'event_id' => $event_id,
'mappings' => $mappings,
'labels' => $labels,
];
self::$validStatuses = $settings['valid_statuses'];
}
protected function setProtocolFormElement() {
$settings = ['modulePrefix' => $this->PREFIX];
$protocols = [];
$method = $this->getSystemSetting('protocol_lookup_method');
if ($method == 'sip') {
$url = $this->getSystemSetting('sip');
if ($url && ($xml = simplexml_load_file($url . '?hdn_function=SIP_PROTOCOL_LISTINGS&format=xml'))) {
foreach ($xml->protocol as $item) {
$protocols[REDCap::escapeHtml($item->no)] = REDCap::escapeHtml('(' . $item->no . ') ' . $item->title);
}
$settings += ['protocols' => $protocols, 'protocolNo' => $this->getProjectSetting('protocol_no')];
}
else {
if (SUPER_USER) {
$attrs = [
'href' => APP_PATH_WEBROOT . 'ExternalModules/manager/control_center.php',
'style' => 'color: #000066; font-weight: bold;',
];
$link = RCView::a($attrs, 'Contol Center > External Modules');
$settings['msg'] = RCView::p([], 'The SIP URL has not been properly configured. To do that, go to ' . $link . ' and then configure OnCore Client.');
}
else {
$settings['msg'] = RCView::p([], 'OnCore Client global configuration is incomplete or incorrect. Please contact site administrators.');
}
}
}
else if ($method == 'api') {
if ( (!$url = $this->getSystemSetting('ocr_api_url')) || (!$user = $this->getSystemSetting('ocr_api_user')) || (!$api_key = $this->getSystemSetting('ocr_api_key')) ) {
if (SUPER_USER) {
$attrs = [
'href' => APP_PATH_WEBROOT . 'ExternalModules/manager/control_center.php',
'style' => 'color: #000066; font-weight: bold;',
];
$link = RCView::a($attrs, 'Contol Center > External Modules');
$settings['msg'] = RCView::p([], 'The API authorization has not been properly configured. To do that, go to ' . $link . ' and then configure OnCore Client.');
} else {
$settings['msg'] = RCView::p([], 'OnCore Client global configuration is incomplete or incorrect. Please contact site administrators.');
}
}
$headers = [
'x-api-key: ' . $api_key,
'x-api-user: ' . $user
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$client = $this->getSoapClient();
if ($result = json_decode(curl_exec($ch))) {
foreach ($result->protocols as $no => $code){
$protocol = $code[0];
$title = $code[1];
$protocols[$protocol] = REDCap::escapeHtml('(' . $protocol . ') ' . $title);
}
$settings += ['protocols' => $protocols, 'protocolNo' => $this->getProjectSetting('protocol_no')];
}
curl_close($ch);
}
$this->includeJs('js/config.js');
$this->setJsSettings($settings);
}
// TODO: roll this and fillProtocolStaff into another container function to avoid allocating redunandant variables
function clearOnCoreSubjectsCache() {
if (!$mappings = ExternalModule::$subjectMappings) {
return;
}
if (!$protocol_no = $this->getProjectSetting('protocol_no')) {
return;
}
$this->fillProtocolStaff();
$client = $this->getSoapClient();
if (!$result = $client->request('getProtocolSubjects', array('ProtocolNo' => $protocol_no))) {
return;
}
if (empty($result->ProtocolSubjects)) {
return;
}
if (!$this->query('DELETE FROM redcap_entity_oncore_subject WHERE project_id = ' . intval(PROJECT_ID))) {
return;
}
$factory = new EntityFactory();
foreach ($result->ProtocolSubjects as $subject) {
$status = str_replace(' ', '_', strtolower($subject->status));
if (!isset(ExternalModule::$subjectStatuses[$status])) {
// Used to flag if OnCore delivers an unknown status
// if (!array_key_exists($status, self::$validStatuses)) { print_r($status . "</br>"); }
continue;
}
$complete_subject_data = array_merge((array) $subject->Subject, (array) $subject->OnStudyData);
$data = [
'subject_id' => $subject->Subject->PrimaryIdentifier,
'protocol_no' => $result->ProtocolNo,
'status' => $status,
'data' => json_encode($complete_subject_data),
];
$factory->create('oncore_subject', $data);
}
$this->rebuildSubjectsDiffList();
REDCap::logEvent('OnCore Subjects cache clear', '', '', null, null, PROJECT_ID);
StatusMessageQueue::enqueue('The OnCore data cache has been refreshed.');
}
function fillProtocolStaff() {
if (!$protocol_no = $this->getProjectSetting('protocol_no')) {
return;
}
$client = $this->getSoapClient();
if(!$result = $client->request('getProtocolStaff', array('ProtocolNo' => $protocol_no,
'LastName' => ''))) {
return;
}
$factory = new EntityFactory();
$staffList = $result->ProtocolStaff;
// Workaround for EntityDB not having a unique columns option
if (!$this->query('DELETE FROM redcap_entity_oncore_protocol_staff WHERE protocol_no = \'' . $protocol_no . '\'')) {
return;
}
foreach($staffList as $key => $value) {
$staff_id = $value->Staff->InstitutionStaffId;
$epoch = strtotime($value->StopDate);
$epoch = ($epoch) ? ($epoch) : null; // strtotime drops null values
$data = [
'protocol_no' => $protocol_no,
'staff_id' => $staff_id,
'stop_date' => $epoch,
];
$factory->create('oncore_protocol_staff', $data);
}
}
function rebuildSubjectsDiffList() {
if (!$mappings = ExternalModule::$subjectMappings) {
return;
}
if (!$this->query('DELETE FROM redcap_entity_oncore_subject_diff WHERE project_id = ' . intval(PROJECT_ID))) {
return;
}
global $table_pk;
$subject_id_field = $mappings['mappings']['PrimaryIdentifier'];
$records_data = REDCap::getData(PROJECT_ID, 'array', null, $subject_id_field, $mappings['event_id']);
$not_linked = array_keys($records_data);
$not_linked = array_combine($not_linked, $not_linked);
if ($subject_id_field == $table_pk) {
$records = $not_linked;
}
else {
$records = [];
foreach ($records_data as $record => $data) {
$data = $data[$mappings['event_id']];
if (!empty($data[$subject_id_field])) {
$records[$data[$subject_id_field]] = $record;
}
}
}
$factory = new EntityFactory();
if (!$subjects = $factory->query('oncore_subject')->execute()) {
return;
}
$linked = [];
foreach ($subjects as $id => $subject) {
$data = $subject->getData() + ['id' => $subject->getId()];
$subject_id = $data['subject_id'];
if ($data['project_id'] != PROJECT_ID) {
continue;
}
if (isset($records[$subject_id])) {
$record = $records[$subject_id];
$linked[$record] = $data;
unset($not_linked[$record]);
continue;
}
$data = [
'subject_id' => $data['id'],
'subject_name' => trim($data['data']->FirstName . ' ' . $data['data']->LastName),
'subject_dob' => strtotime($data['data']->BirthDate),
'status' => $data['status'],
'type' => 'oncore_only',
];
$factory->create('oncore_subject_diff', $data);
}
if (!empty($linked)) {
$records_data = REDCap::getData(PROJECT_ID, 'array', array_keys($linked), $mappings['mappings'], $mappings['event_id']);
foreach ($records_data as $record => $data) {
$subject_data = $linked[$record];
$data = $data[$mappings['event_id']];
$diff = [];
$subject_data_array = json_decode(json_encode($subject_data), true); // needed for flattening nested properties
foreach ($mappings['mappings'] as $key => $field) {
$value = trim($this->digNestedData($subject_data_array, $key)); // trim to avoid erroneous diffs on _all_ values
if ($value === null) {
$value = '';
}
if ($value !== $data[$field]) {
$diff[$key] = [$data[$field], $value];
}
}
if (!empty($diff)) {
$data = [
'subject_id' => $subject_data['id'],
'record_id' => (string) $record,
'subject_name' => trim($subject_data['data']->FirstName . ' ' . $subject_data['data']->LastName),
'subject_dob' => $subject_data['data']->BirthDate ? strtotime($subject_data['data']->BirthDate) : null,
'status' => $subject_data['status'],
'type' => 'data_diff',
'diff' => json_encode($diff),
];
$factory->create('oncore_subject_diff', $data);
}
}
}
if (!empty($not_linked)) {
$full_name_enabled = isset($mappings['mappings']['FirstName']) && isset($mappings['mappings']['LastName']);
$dob_enabled = isset($mappings['mappings']['BirthDate']);
foreach ($not_linked as $record) {
$data = [
'record_id' => (string) $record,
'type' => 'redcap_only',
];
$record_data = $records_data[$record][$mappings['event_id']];
if ($full_name_enabled) {
$data['subject_name'] = trim($record_data[$mappings['mappings']['FirstName']] . ' ' . $record_data[$mappings['mappings']['LastName']]);
}
if ($dob_enabled) {
$dob = $record_data[$mappings['mappings']['BirthDate']];
$data['subject_dob'] = $dob ? strtotime($dob) : null;
}
$factory->create('oncore_subject_diff', $data);
}
}
REDCap::logEvent('OnCore Subjects Diff rebuild', '', '', null, null, PROJECT_ID);
}
/**
* Formats settings into a hierarchical key-value pair array.
*
* @param int $project_id
* Enter a project ID to get project settings.
* Leave blank to get system settings.
*
* @return array
* The formatted settings.
*/
function getFormattedSettings($project_id = null) {
$settings = $this->getConfig();
if ($project_id) {
$settings = $settings['project-settings'];
$values = ExternalModules::getProjectSettingsAsArray($this->PREFIX, $project_id);
}
else {
$settings = $settings['system-settings'];
$values = ExternalModules::getSystemSettingsAsArray($this->PREFIX);
}
return $this->_getFormattedSettings($settings, $values);
}
/**
* Auxiliary function for getFormattedSettings().
*/
protected function _getFormattedSettings($settings, $values, $inherited_deltas = array()) {
$formatted = array();
foreach ($settings as $setting) {
$key = $setting['key'];
$value = $values[$key]['value'];
foreach ($inherited_deltas as $delta) {
$value = $value[$delta];
}
if ($setting['type'] == 'sub_settings') {
$deltas = array_keys($value);
$value = array();
foreach ($deltas as $delta) {
$sub_deltas = array_merge($inherited_deltas, array($delta));
$value[$delta] = $this->_getFormattedSettings($setting['sub_settings'], $values, $sub_deltas);
}
if (empty($setting['repeatable'])) {
$value = $value[0];
}
}
$formatted[$key] = $value;
}
return $formatted;
}
/**
* Includes a local JS file.
*
* @param string $path
* The relative path to the js file.
*/
protected function includeJs($path) {
echo '<script src="' . $this->getUrl($path) . '"></script>';
}
/**
* Sets JS settings.
*
* @param array $settings
* A keyed array containing settings for the current page.
*/
protected function setJsSettings($settings) {
echo '<script>onCoreClient = ' . json_encode($settings) . ';</script>';
}
/**
* Aux function that converts a snake case string into camel case.
*/
protected function _toCamelCase($string) {
$output = '';
foreach (explode('_', $string) as $part) {
$output .= ucfirst($part);
}
return $output;
}
function digNestedData($subject_data_array, $key) {
$value = null;
if (property_exists($subject_data_array, $key)) {
$value = $subject_data_array->{$key};
} else {
// keys nested in objects were not being found
array_walk_recursive($subject_data_array,
function($v, $k) use ($key, &$value) {
if ("$key" == "$k") {
$value = $v;
}
}
);
}
return $value;
}
}