forked from LibreHealthIO/lh-ehr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acl_setup.php
458 lines (427 loc) · 17.6 KB
/
acl_setup.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
<?php
// Copyright (C) 2005-2006 Rod Roark <[email protected]>
//
// This program 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 2
// of the License, or (at your option) any later version.
//
// This program is run by the LibreHealth EHR setup.php script to install phpGACL
// and creates the Access Control Objects and their sections.
// See libreehr/library/acl.inc file for the list of
// currently supported Access Control Objects(ACO), which this
// script will install. This script also creates several
// ARO groups, an "admin" ARO, and some reasonable ACL entries for
// the groups.
// ARO groups include:
// Administrators
// Physicians (Doctors)
// Clinicians (Nurses, Physician Assistants, etc.)
// Front Office (Receptionist)
// Accounting
//
// Upgrade Howto
// When upgrading to a new version of LibreHealth EHR, run the acl_upgrade.php
// script to update the phpGACL access controls. This is required to
// ensure the database includes all the required Access Control
// Objects(ACO).
//
// On 06/2009, added pertinent comments below each entry to allow capture
// of these terms by the translation engine.
require_once(dirname(__FILE__).'/library/acl.inc');
if (! $phpgacl_location) die("You must first set up library/acl.inc to use phpGACL!");
require_once("$phpgacl_location/gacl_api.class.php");
$gacl = new gacl_api();
// Create the ACO sections. Every ACO must have a section.
//
if ($gacl->add_object_section('Accounting', 'acct', 10, 0, 'ACO') === FALSE) {
echo "Unable to create the access controls for LibreHealth EHR. You have likely already run this script (acl_setup.php) successfully.<br>Other possible problems include php-GACL configuration file errors (gacl.ini.php or gacl.class.php).<br>";
return;
}
// xl('Accounting')
$gacl->add_object_section('Administration', 'admin' , 10, 0, 'ACO');
// xl('Administration')
$gacl->add_object_section('Encounters' , 'encounters' , 10, 0, 'ACO');
// xl('Encounters')
$gacl->add_object_section('Lists' , 'lists' , 10, 0, 'ACO');
// xl('Lists')
$gacl->add_object_section('Patients' , 'patients' , 10, 0, 'ACO');
// xl('Patients')
$gacl->add_object_section('Squads' , 'squads' , 10, 0, 'ACO');
// xl('Squads')
$gacl->add_object_section('Sensitivities' , 'sensitivities', 10, 0, 'ACO');
// xl('Sensitivities')
$gacl->add_object_section('Placeholder' , 'placeholder' , 10, 0, 'ACO');
// xl('Placeholder')
$gacl->add_object_section('Patient Portal','patientportal' , 10, 0, 'ACO');
// xl('Patient Portal')
$gacl->add_object_section('Menus','menus' , 10, 0, 'ACO');
// xl('Menus')
// Create Accounting ACOs.
//
$gacl->add_object('acct', 'Billing (write optional)' , 'bill' , 10, 0, 'ACO');
// xl('Billing (write optional)')
$gacl->add_object('acct', 'Price Discounting' , 'disc' , 10, 0, 'ACO');
// xl('Price Discounting')
$gacl->add_object('acct', 'EOB Data Entry' , 'eob' , 10, 0, 'ACO');
// xl('EOB Data Entry')
$gacl->add_object('acct', 'Financial Reporting - my encounters', 'rep' , 10, 0, 'ACO');
// xl('Financial Reporting - my encounters')
$gacl->add_object('acct', 'Financial Reporting - anything' , 'rep_a', 10, 0, 'ACO');
// xl('Financial Reporting - anything')
// Create Administration ACOs.
//
$gacl->add_object('admin', 'Superuser' , 'super' , 10, 0, 'ACO');
// xl('Superuser')
$gacl->add_object('admin', 'Calendar Settings' , 'calendar' , 10, 0, 'ACO');
// xl('Calendar Settings')
$gacl->add_object('admin', 'Database Reporting' , 'database' , 10, 0, 'ACO');
// xl('Database Reporting')
$gacl->add_object('admin', 'Forms Administration' , 'forms' , 10, 0, 'ACO');
// xl('Forms Administration')
$gacl->add_object('admin', 'Practice Settings' , 'practice' , 10, 0, 'ACO');
// xl('Practice Settings')
$gacl->add_object('admin', 'Superbill Codes Administration' , 'superbill', 10, 0, 'ACO');
// xl('Superbill Codes Administration')
$gacl->add_object('admin', 'Users/Groups/Logs Administration', 'users' , 10, 0, 'ACO');
// xl('Users/Groups/Logs Administration')
$gacl->add_object('admin', 'Batch Communication Tool' , 'batchcom' , 10, 0, 'ACO');
// xl('Batch Communication Tool')
$gacl->add_object('admin', 'Language Interface Tool' , 'language' , 10, 0, 'ACO');
// xl('Language Interface Tool')
$gacl->add_object('admin', 'Pharmacy Dispensary' , 'drugs' , 10, 0, 'ACO');
// xl('Pharmacy Dispensary')
$gacl->add_object('admin', 'ACL Administration' , 'acl' , 10, 0, 'ACO');
// xl('ACL Administration')
// Create ACOs for encounters.
//
$gacl->add_object('encounters', 'Authorize - my encounters' , 'auth' , 10, 0, 'ACO');
// xl('Authorize - my encounters')
$gacl->add_object('encounters', 'Authorize - any encounters' , 'auth_a' , 10, 0, 'ACO');
// xl('Authorize - any encounters')
$gacl->add_object('encounters', 'Coding - my encounters (write,wsome optional)' , 'coding' , 10, 0, 'ACO');
// xl('Coding - my encounters (write,wsome optional)')
$gacl->add_object('encounters', 'Coding - any encounters (write,wsome optional)' , 'coding_a', 10, 0, 'ACO');
// xl('Coding - any encounters (write,wsome optional)')
$gacl->add_object('encounters', 'Notes - my encounters (write,addonly optional)' , 'notes' , 10, 0, 'ACO');
// xl('Notes - my encounters (write,addonly optional)')
$gacl->add_object('encounters', 'Notes - any encounters (write,addonly optional)' , 'notes_a' , 10, 0, 'ACO');
// xl('Notes - any encounters (write,addonly optional)')
$gacl->add_object('encounters', 'Fix encounter dates - any encounters' , 'date_a' , 10, 0, 'ACO');
// xl('Fix encounter dates - any encounters')
$gacl->add_object('encounters', 'Less-private information (write,addonly optional)', 'relaxed' , 10, 0, 'ACO');
// xl('Less-private information (write,addonly optional)')
// Create ACOs for lists.
//
$gacl->add_object('lists', 'Default List (write,addonly optional)' , 'default' , 10, 0, 'ACO');
// xl('Default List (write,addonly optional)')
$gacl->add_object('lists', 'State List (write,addonly optional)' , 'state' , 10, 0, 'ACO');
// xl('State List (write,addonly optional)')
$gacl->add_object('lists', 'Country List (write,addonly optional)' , 'country' , 10, 0, 'ACO');
// xl('Country List (write,addonly optional)')
$gacl->add_object('lists', 'Language List (write,addonly optional)' , 'language' , 10, 0, 'ACO');
// xl('Language List (write,addonly optional)')
$gacl->add_object('lists', 'Ethnicity-Race List (write,addonly optional)' , 'ethrace' , 10, 0, 'ACO');
// xl('Ethnicity-Race List (write,addonly optional)')
// Create ACOs for patientportal.
//
$gacl->add_object('patientportal', 'Patient Portal' , 'portal' , 10, 0, 'ACO');
// xl('Patient Portal')
// Create ACOs for modules.
//
$gacl->add_object('menus', 'Modules' , 'modle' , 10, 0, 'ACO');
// xl('Modules')
// Create ACOs for patients.
//
$gacl->add_object('patients', 'Appointments (write,wsome optional)' , 'appt' , 10, 0, 'ACO');
// xl('Appointments (write,wsome optional)')
$gacl->add_object('patients', 'Demographics (write,addonly optional)' , 'demo' , 10, 0, 'ACO');
// xl('Demographics (write,addonly optional)')
$gacl->add_object('patients', 'Medical/History (write,addonly optional)' , 'med' , 10, 0, 'ACO');
// xl('Medical/History (write,addonly optional)')
$gacl->add_object('patients', 'Transactions (write optional)' , 'trans', 10, 0, 'ACO');
// xl('Transactions (write optional)')
$gacl->add_object('patients', 'Documents (write,addonly optional)' , 'docs' , 10, 0, 'ACO');
// xl('Documents (write,addonly optional)')
$gacl->add_object('patients', 'Patient Notes (write,addonly optional)' , 'notes', 10, 0, 'ACO');
// xl('Patient Notes (write,addonly optional)')
$gacl->add_object('patients', 'Sign Lab Results (write,addonly optional)', 'sign' , 10, 0, 'ACO');
// xl('Sign Lab Results (write,addonly optional)')
// Create ACOs for sensitivities.
//
$gacl->add_object('sensitivities', 'Normal', 'normal', 10, 0, 'ACO');
// xl('Normal')
$gacl->add_object('sensitivities', 'High' , 'high' , 20, 0, 'ACO');
// xl('High')
// Create ACO for placeholder.
//
$gacl->add_object('placeholder', 'Placeholder (Maintains empty ACLs)', 'filler', 10, 0, 'ACO');
// xl('Placeholder (Maintains empty ACLs)')
// Create ARO groups.
//
$users = $gacl->add_group('users', 'LibreEHR Users' , 0 , 'ARO');
// xl('LibreEHR Users')
$admin = $gacl->add_group('admin', 'Administrators', $users, 'ARO');
// xl('Administrators')
$clin = $gacl->add_group('clin' , 'Clinicians' , $users, 'ARO');
// xl('Clinicians')
$doc = $gacl->add_group('doc' , 'Physicians' , $users, 'ARO');
// xl('Physicians')
$front = $gacl->add_group('front', 'Front Office' , $users, 'ARO');
// xl('Front Office')
$back = $gacl->add_group('back' , 'Accounting' , $users, 'ARO');
// xl('Accounting')
$breakglass = $gacl->add_group('breakglass' , 'Emergency Login' , $users, 'ARO');
// xl('Emergency Login')
$pqrsreporter = $gacl->add_group('pqrsreporter', 'MIPS Reporter', $users, 'ARO');
// xl('PQRS Reporter')
// Create a Users section for the AROs (humans).
//
$gacl->add_object_section('Users', 'users', 10, 0, 'ARO');
// xl('Users')
// Create the Administrator in the above-created "users" section
// and add him/her to the above-created "admin" group.
// If this script is being used by LibreHealth EHR's setup, then will
// incorporate the installation values. Otherwise will
// hardcode the 'admin' user.
if (isset($this) && isset($this->iuser)) {
$gacl->add_object('users', $this->iuname, $this->iuser, 10, 0, 'ARO');
$gacl->add_group_object($admin, 'users', $this->iuser, 'ARO');
}
else {
$gacl->add_object('users', 'Administrator', 'admin' ,10, 0, 'ARO');
$gacl->add_group_object($admin, 'users', 'admin', 'ARO');
}
// Declare return terms for language translations
// xl('write') xl('wsome') xl('addonly') xl('view')
// Set permissions for administrators.
//
$gacl->add_acl(
array(
'acct'=>array('bill', 'disc', 'eob', 'rep', 'rep_a'),
'admin'=>array('calendar', 'database', 'forms', 'practice', 'superbill', 'users', 'batchcom', 'language', 'super', 'drugs', 'acl'),
'encounters'=>array('auth_a', 'coding_a', 'notes_a', 'date_a'),
'lists'=>array('default','state','country','language','ethrace'),
'patients'=>array('appt', 'demo', 'med', 'trans', 'docs', 'notes'),
'sensitivities'=>array('normal', 'high'),
'patientportal'=>array('portal'),
'menus'=>array('modle')
),
NULL, array($admin), NULL, NULL,
1, 1, 'write', 'Administrators can do anything'
);
// xl('Administrators can do anything')
// Set permissions for physicians.
//
$gacl->add_acl(
array(
'placeholder'=>array('filler')
),
NULL, array($doc), NULL, NULL,
1, 1, 'view', 'Things that physicians can only read'
);
// xl('Things that physicians can only read')
$gacl->add_acl(
array(
'placeholder'=>array('filler')
),
NULL, array($doc), NULL, NULL,
1, 1, 'addonly', 'Things that physicians can read and enter but not modify'
);
// xl('Things that physicians can read and enter but not modify')
$gacl->add_acl(
array(
'placeholder'=>array('filler')
),
NULL, array($doc), NULL, NULL,
1, 1, 'wsome', 'Things that physicians can read and partly modify'
);
// xl('Things that physicians can read and partly modify')
$gacl->add_acl(
array(
'acct'=>array('disc', 'rep'),
'admin'=>array('drugs'),
'encounters'=>array('auth_a', 'coding_a', 'notes_a', 'date_a'),
'patients'=>array('appt', 'demo', 'med', 'trans', 'docs', 'notes', 'sign'),
'sensitivities'=>array('normal', 'high')
),
NULL, array($doc), NULL, NULL,
1, 1, 'write', 'Things that physicians can read and modify'
);
// xl('Things that physicians can read and modify')
// Set permissions for clinicians.
//
$gacl->add_acl(
array(
'placeholder'=>array('filler')
),
NULL, array($clin), NULL, NULL,
1, 1, 'view', 'Things that clinicians can only read'
);
// xl('Things that clinicians can only read')
$gacl->add_acl(
array(
'encounters'=>array('notes', 'relaxed'),
'patients'=>array('demo', 'med', 'docs', 'notes'),
'sensitivities'=>array('normal')
),
NULL, array($clin), NULL, NULL,
1, 1, 'addonly', 'Things that clinicians can read and enter but not modify'
);
// xl('Things that clinicians can read and enter but not modify')
$gacl->add_acl(
array(
'placeholder'=>array('filler')
),
NULL, array($clin), NULL, NULL,
1, 1, 'wsome', 'Things that clinicians can read and partly modify'
);
// xl('Things that clinicians can read and partly modify')
$gacl->add_acl(
array(
'admin'=>array('drugs'),
'encounters'=>array('coding'),
'patients'=>array('appt')
),
NULL, array($clin), NULL, NULL,
1, 1, 'write', 'Things that clinicians can read and modify'
);
// xl('Things that clinicians can read and modify')
// Set permissions for front office staff.
//
$gacl->add_acl(
array(
'placeholder'=>array('filler')
),
NULL, array($front), NULL, NULL,
1, 1, 'view', 'Things that front office can only read'
);
// xl('Things that front office can only read')
$gacl->add_acl(
array(
'placeholder'=>array('filler')
),
NULL, array($front), NULL, NULL,
1, 1, 'addonly', 'Things that front office can read and enter but not modify'
);
// xl('Things that front office can read and enter but not modify')
$gacl->add_acl(
array(
'placeholder'=>array('filler')
),
NULL, array($front), NULL, NULL,
1, 1, 'wsome', 'Things that front office can read and partly modify'
);
// xl('Things that front office can read and partly modify')
$gacl->add_acl(
array(
'patients'=>array('appt', 'demo', 'trans', 'notes')
),
NULL, array($front), NULL, NULL,
1, 1, 'write', 'Things that front office can read and modify'
);
// xl('Things that front office can read and modify')
// Set permissions for back office staff.
//
$gacl->add_acl(
array(
'placeholder'=>array('filler')
),
NULL, array($back), NULL, NULL,
1, 1, 'view', 'Things that back office can only read'
);
// xl('Things that back office can only read')
$gacl->add_acl(
array(
'placeholder'=>array('filler')
),
NULL, array($back), NULL, NULL,
1, 1, 'addonly', 'Things that back office can read and enter but not modify'
);
// xl('Things that back office can read and enter but not modify')
$gacl->add_acl(
array(
'placeholder'=>array('filler')
),
NULL, array($back), NULL, NULL,
1, 1, 'wsome', 'Things that back office can read and partly modify'
);
// xl('Things that back office can read and partly modify')
$gacl->add_acl(
array(
'acct'=>array('bill', 'disc', 'eob', 'rep', 'rep_a'),
'admin'=>array('practice', 'superbill'),
'encounters'=>array('auth_a', 'coding_a', 'date_a'),
'patients'=>array('appt', 'demo')
),
NULL, array($back), NULL, NULL,
1, 1, 'write', 'Things that back office can read and modify'
);
// xl('Things that back office can read and modify')
// Set permissions for MIPS reporters.
//
$gacl->add_acl(
array(
'placeholder' => array('filler')
),
NULL, array($pqrsreporter), NULL, NULL,
1, 1, 'view', 'Things that PQRS reporters can only read'
);
// xl('Things that MIPS reporters can only read')
$gacl->add_acl(
array(
'placeholder' => array('filler')
),
NULL, array($pqrsreporter), NULL, NULL,
1, 1, 'addonly', 'Things that MIPS reporters can read and enter but not modify'
);
// xl('Things that MIPS reporters can read and enter but not modify')
$gacl->add_acl(
array(
'placeholder' => array('filler')
),
NULL, array($pqrsreporter), NULL, NULL,
1, 1, 'wsome', 'Things that MIPS reporters can read and partly modify'
);
// xl('Things that MIPS reporters can read and partly modify')
$gacl->add_acl(
array(
'acct' => array('disc', 'rep'),
'admin' => array('drugs'),
'encounters' => array('auth_a', 'coding_a', 'notes_a', 'date_a'),
'patients' => array('appt', 'demo', 'med', 'trans', 'docs', 'notes', 'sign'),
'sensitivities' => array('normal', 'high')
),
NULL, array($pqrsreporter), NULL, NULL,
1, 1, 'write', 'Things that MIPS reporters can read and modify'
);
// xl('Things that MIPS reporters can read and modify')
// Set permissions for Emergency Login.
//
$gacl->add_acl(
array(
'acct'=>array('bill', 'disc', 'eob', 'rep', 'rep_a'),
'admin'=>array('calendar', 'database', 'forms', 'practice', 'superbill', 'users', 'batchcom', 'language', 'super', 'drugs', 'acl'),
'encounters'=>array('auth_a', 'coding_a', 'notes_a', 'date_a'),
'lists'=>array('default','state','country','language','ethrace'),
'patients'=>array('appt', 'demo', 'med', 'trans', 'docs', 'notes'),
'sensitivities'=>array('normal', 'high'),
'patientportal'=>array('portal'),
'menus'=>array('modle')
),
NULL, array($breakglass), NULL, NULL,
1, 1, 'write', 'Emergency Login user can do anything'
);
// xl('Emergency Login user can do anything')
?>
<html>
<head>
<title>LibreHealth EHR ACL Setup</title>
<link rel=STYLESHEET href="interface/themes/style_setup.css">
</head>
<body>
<b>LibreHealth EHR ACL Setup</b>
<br>
All done configuring and installing access controls (php-GACL)!
</body>
</html>