-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExternalModule.php
248 lines (217 loc) · 7.64 KB
/
ExternalModule.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
<?php
namespace SP\ExternalModule;
use ExternalModules\AbstractExternalModule;
use REDCap;
use Exception;
const ymdFormat = "%Y-%m-%d";
class ExternalModule extends AbstractExternalModule
{
// An attempt at catching the exit() statement for self::checkProjectContext(__METHOD__);
function shutdown()
{
echo 'Script executed with success', PHP_EOL;
}
// Does not get called for Control Center Plugins
// Neither does redcap_control_center
function redcap_every_page_top()
{
$project_settings = $this->framework->getProjectSettings();
// Limit this to projects where this is activated
if (!$project_settings['active']['value']) {
return;
}
// echo 'hello world';
/*
* Inline JS
?>
<script>
$(function(){
var module = ExternalModules;
// module.log('Hello from JavaScript!');
console.log(module);
})
</script>
<?php
*/
}
function createProject()
{
// REDCap::
}
function getAllData($data = '')
{
// Create anonymous object
$response = (object)[];
try {
// $params = array('return_format' => 'json', 'filterLogic' => '[age] >= 18', 'fields' => array('dob','record_id'));
$params = array('return_format' => 'json');
$data = REDCap::getData($params);
$response->data = $data;
} catch (Exception $e) {
$response->error = 'Caught exception: ' . $e->getMessage() . "\n";
}
echo json_encode($response);
}
// Dummy function for unit tests
function getValue($val)
{
return $val;
}
function getEvents($data = '')
{
// Create anonymous object
$response = (object)[];
try {
$sql = "SELECT
all_event_logs.log_event_id,
all_event_logs.project_id,
all_event_logs.user,
all_event_logs.page,
all_event_logs.event,
all_event_logs.description
FROM (
select * from redcap_log_event
union all
select * from redcap_log_event2
union all
select * from redcap_log_event3
union all
select * from redcap_log_event4
union all
select * from redcap_log_event5
) all_event_logs";
$result = $this->framework->query($sql);
$response->data = $result->fetch_all(MYSQLI_ASSOC);
} catch (Exception $e) {
$response->error = $this->parseException($e);
}
// For AJAX call
echo json_encode($response);
// For unit tests
return $response;
}
function getExternalModules($data = '')
{
// Create anonymous object
$response = (object)[];
try {
$sql = "SELECT *
FROM redcap_external_modules
ORDER BY external_module_id asc";
$result = $this->framework->query($sql);
$response->data = $result->fetch_all(MYSQLI_ASSOC);
} catch (Exception $e) {
$response->error = $this->parseException($e);
}
// For AJAX call
echo json_encode($response);
// For unit tests
return $response;
}
function getProjects($data = '')
{
// Create anonymous object
$response = (object)[];
try {
$sql = "SELECT
concat('" . APP_PATH_WEBROOT . "ProjectSetup/index.php?pid=', projects.project_id) as url,
projects.project_id,
projects.project_name,
projects.app_title,
if(projects.status=1, 'prod', 'dev') as status,
date_format(projects.creation_time, \"%Y-%m-%d\") as creation_time,
date_format(projects.production_time, \"%Y-%m-%d\") as production_time
FROM redcap_projects projects
ORDER BY project_id asc";
$result = $this->framework->query($sql);
$response->data = $result->fetch_all(MYSQLI_ASSOC);
} catch (Exception $e) {
$response->error = $this->parseException($e);
}
// For AJAX call
echo json_encode($response);
// For unit tests
return $response;
}
function getTemplates($data = '')
{
// Create anonymous object
$response = (object)[];
try {
$sql = "SELECT
project_id,
title,
description
FROM redcap_projects_templates";
$result = $this->framework->query($sql);
$response->data = $result->fetch_all(MYSQLI_ASSOC);
} catch (Exception $e) {
$response->error = $this->parseException($e);
}
// For AJAX call
echo json_encode($response);
// For unit tests
return $response;
}
function getUsers($data = '')
{ //, $pid) {
// TODO: Figure out how to catch the error when getUsers is called without pid context
// self::checkProjectContext(__METHOD__);
// register_shutdown_function('shutdown');
// Create anonymous object
$response = (object)[];
try {
$users = REDCap::getUsers();
$response->data = $users;
} catch (Exception $e) {
$response->error = $this->parseException($e);
}
// For AJAX call
echo json_encode($response);
// For unit tests
return $response;
}
function renderEmailPage()
{
$this->initializeJavascriptModuleObject();
$this->tt_addToJavascriptModuleObject('ajaxPage', json_encode($this->framework->getUrl("handler.php")));
$this->includeVue();
$this->includeSource('js/email.js');
include('html/email.html');
}
function renderSearchPage()
{
$this->initializeJavascriptModuleObject();
// TODO: This page does not exist from a control center page
$this->tt_addToJavascriptModuleObject('ajaxPage', json_encode($this->framework->getUrl("handler.php")));
$this->includeVue();
$this->includeSource('js/search.js');
include('html/search.html');
}
function sendEmail($data = '')
{
$response = (object)[];
try {
$response->data = REDCap::email('[email protected]', '[email protected]', 'sample email', 'sample text');
} catch (Exception $e) {
$response->error = $e;
}
echo json_encode($response);
return $response;
}
function includeVue()
{
echo '<link href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" rel="stylesheet">';
echo '<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.min.css" rel="stylesheet">';
echo '<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>';
echo '<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.js"></script>';
}
function includeSource($path)
{
echo '<script src="' . $this->getUrl($path) . '"></script>';
}
private function parseException($e)
{
return 'Caught exception: ' . $e->getMessage() . "\n";
}
}