forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PatientService.php
1078 lines (971 loc) · 43.9 KB
/
PatientService.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
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
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Patient Service
*
* @package OpenEMR
* @link http://www.open-emr.org
* @author Victor Kofia <[email protected]>
* @author Brady Miller <[email protected]>
* @author Jerry Padgett <[email protected]>
* @copyright Copyright (c) 2017 Victor Kofia <[email protected]>
* @copyright Copyright (c) 2018 Brady Miller <[email protected]>
* @copyright Copyright (c) 2020 Jerry Padgett <[email protected]>
* @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
*/
namespace OpenEMR\Services;
use OpenEMR\Common\Database\QueryPagination;
use OpenEMR\Common\Database\QueryUtils;
use OpenEMR\Common\ORDataObject\Address;
use OpenEMR\Common\ORDataObject\ContactAddress;
use OpenEMR\Common\Uuid\UuidRegistry;
use OpenEMR\Events\Patient\BeforePatientCreatedEvent;
use OpenEMR\Events\Patient\BeforePatientUpdatedEvent;
use OpenEMR\Events\Patient\PatientCreatedEvent;
use OpenEMR\Events\Patient\PatientUpdatedEvent;
use OpenEMR\Services\Search\FhirSearchWhereClauseBuilder;
use OpenEMR\Services\Search\ISearchField;
use OpenEMR\Services\Search\SearchConfigClauseBuilder;
use OpenEMR\Services\Search\SearchQueryConfig;
use OpenEMR\Services\Search\TokenSearchField;
use OpenEMR\Services\Search\SearchModifier;
use OpenEMR\Services\Search\StringSearchField;
use OpenEMR\Services\Search\TokenSearchValue;
use OpenEMR\Validators\PatientValidator;
use OpenEMR\Validators\ProcessingResult;
class PatientService extends BaseService
{
public const TABLE_NAME = 'patient_data';
private const PATIENT_HISTORY_TABLE = "patient_history";
/**
* In the case where a patient doesn't have a picture uploaded,
* this value will be returned so that the document controller
* can return an empty response.
*/
private $patient_picture_fallback_id = -1;
/**
* @var PatientValidator
*/
private $patientValidator;
/**
* Key of translated suffix values that can be in a patient's name.
* @var array|null
*/
private $patientSuffixKeys = null;
/**
* Default constructor.
*/
public function __construct($base_table = null)
{
parent::__construct($base_table ?? self::TABLE_NAME);
$this->patientValidator = new PatientValidator();
}
/**
* TODO: This should go in the ChartTrackerService and doesn't have to be static.
*
* @param $pid unique patient id
* @return recordset
*/
public static function getChartTrackerInformationActivity($pid)
{
$sql = "SELECT ct.ct_when,
ct.ct_userid,
ct.ct_location,
u.username,
u.fname,
u.mname,
u.lname
FROM chart_tracker AS ct
LEFT OUTER JOIN users AS u ON u.id = ct.ct_userid
WHERE ct.ct_pid = ?
ORDER BY ct.ct_when DESC";
return sqlStatement($sql, array($pid));
}
/**
* TODO: This should go in the ChartTrackerService and doesn't have to be static.
*
* @return recordset
*/
public static function getChartTrackerInformation()
{
$sql = "SELECT ct.ct_when,
u.username,
u.fname AS ufname,
u.mname AS umname,
u.lname AS ulname,
p.pubpid,
p.fname,
p.mname,
p.lname
FROM chart_tracker AS ct
JOIN cttemp ON cttemp.ct_pid = ct.ct_pid AND cttemp.ct_when = ct.ct_when
LEFT OUTER JOIN users AS u ON u.id = ct.ct_userid
LEFT OUTER JOIN patient_data AS p ON p.pid = ct.ct_pid
WHERE ct.ct_userid != 0
ORDER BY p.pubpid";
return sqlStatement($sql);
}
public function getFreshPid()
{
$pid = sqlQuery("SELECT MAX(pid)+1 AS pid FROM patient_data");
return $pid['pid'] === null ? 1 : intval($pid['pid']);
}
/**
* Insert a patient record into the database
*
* returns the newly-created patient data array, or false in the case of
* an error with the sql insert
*
* @param $data
* @return false|int
*/
public function databaseInsert($data)
{
$freshPid = $this->getFreshPid();
$data['pid'] = $freshPid;
$data['uuid'] = (new UuidRegistry(['table_name' => 'patient_data']))->createUuid();
// The 'date' is the updated-date, and 'regdate' is the created-date
// so set both to the current datetime.
$data['date'] = date("Y-m-d H:i:s");
$data['regdate'] = date("Y-m-d H:i:s");
// we should never be null here but for legacy reasons we are going to default to this
$createdBy = $_SESSION['authUserID'] ?? null; // we don't let anyone else but the current user be the createdBy
$data['created_by'] = $createdBy;
$data['updated_by'] = $createdBy; // for an insert this is the same
if (empty($data['pubpid'])) {
$data['pubpid'] = $freshPid;
}
// Before a patient is inserted, fire the "before patient created" event so listeners can do extra processing
$beforePatientCreatedEvent = new BeforePatientCreatedEvent($data);
$GLOBALS["kernel"]->getEventDispatcher()->dispatch($beforePatientCreatedEvent, BeforePatientCreatedEvent::EVENT_HANDLE, 10);
$data = $beforePatientCreatedEvent->getPatientData();
$query = $this->buildInsertColumns($data);
$sql = " INSERT INTO patient_data SET ";
$sql .= $query['set'];
$results = sqlInsert($sql, $query['bind']);
$data['id'] = $results;
// Tell subscribers that a new patient has been created
$patientCreatedEvent = new PatientCreatedEvent($data);
$GLOBALS["kernel"]->getEventDispatcher()->dispatch($patientCreatedEvent, PatientCreatedEvent::EVENT_HANDLE, 10);
// If we have a result-set from our insert, return the PID,
// otherwise return false
if ($results) {
return $data;
} else {
return false;
}
}
/**
* Inserts a new patient record.
*
* @param $data The patient fields (array) to insert.
* @return ProcessingResult which contains validation messages, internal error messages, and the data
* payload.
*/
public function insert($data)
{
$processingResult = $this->patientValidator->validate($data, PatientValidator::DATABASE_INSERT_CONTEXT);
if (!$processingResult->isValid()) {
return $processingResult;
}
$data = $this->databaseInsert($data);
if (false !== $data['pid']) {
$processingResult->addData(array(
'pid' => $data['pid'],
'uuid' => UuidRegistry::uuidToString($data['uuid'])
));
} else {
$processingResult->addInternalError("error processing SQL Insert");
}
return $processingResult;
}
/**
* Do a database update using the pid from the input
* array
*
* Return the data that was updated into the database,
* or false if there was an error with the update
*
* @param array $data
* @return mixed
*/
public function databaseUpdate($data)
{
// Get the data before update to send to the event listener
$dataBeforeUpdate = $this->findByPid($data['pid']);
// The `date` column is treated as an updated_date
$data['date'] = date("Y-m-d H:i:s");
// we should never be null here but for legacy reasons we are going to default to this
$updatedBy = $_SESSION['authUserID'] ?? null; // we don't let anyone else but the current user be the updatedBy
$data['updated_by'] = $updatedBy; // for an insert this is the same
$table = PatientService::TABLE_NAME;
// Fire the "before patient updated" event so listeners can do extra processing before data is updated
$beforePatientUpdatedEvent = new BeforePatientUpdatedEvent($data);
$GLOBALS["kernel"]->getEventDispatcher()->dispatch($beforePatientUpdatedEvent, BeforePatientUpdatedEvent::EVENT_HANDLE, 10);
$data = $beforePatientUpdatedEvent->getPatientData();
$query = $this->buildUpdateColumns($data);
$sql = " UPDATE $table SET ";
$sql .= $query['set'];
$sql .= " WHERE `pid` = ?";
array_push($query['bind'], $data['pid']);
$sqlResult = sqlStatement($sql, $query['bind']);
if (
$dataBeforeUpdate['care_team_provider'] != ($data['care_team_provider'] ?? '')
|| ($dataBeforeUpdate['care_team_facility'] ?? '') != ($data['care_team_facility'] ?? '')
) {
// need to save off our care team
$this->saveCareTeamHistory($data, $dataBeforeUpdate['care_team_provider'], $dataBeforeUpdate['care_team_facility']);
}
if ($sqlResult) {
// Tell subscribers that a new patient has been updated
$patientUpdatedEvent = new PatientUpdatedEvent($dataBeforeUpdate, $data);
$GLOBALS["kernel"]->getEventDispatcher()->dispatch($patientUpdatedEvent, PatientUpdatedEvent::EVENT_HANDLE, 10);
return $data;
} else {
return false;
}
}
/**
* Updates an existing patient record.
*
* @param $puuidString - The patient uuid identifier in string format used for update.
* @param $data - The updated patient data fields
* @return ProcessingResult which contains validation messages, internal error messages, and the data
* payload.
*/
public function update($puuidString, $data)
{
$data["uuid"] = $puuidString;
$processingResult = $this->patientValidator->validate($data, PatientValidator::DATABASE_UPDATE_CONTEXT);
if (!$processingResult->isValid()) {
return $processingResult;
}
// Get the data before update to send to the event listener
$dataBeforeUpdate = $this->getOne($puuidString);
// The `date` column is treated as an updated_date
$data['date'] = date("Y-m-d H:i:s");
// Fire the "before patient updated" event so listeners can do extra processing before data is updated
$beforePatientUpdatedEvent = new BeforePatientUpdatedEvent($data);
$GLOBALS["kernel"]->getEventDispatcher()->dispatch($beforePatientUpdatedEvent, BeforePatientUpdatedEvent::EVENT_HANDLE, 10);
$data = $beforePatientUpdatedEvent->getPatientData();
$query = $this->buildUpdateColumns($data);
$sql = " UPDATE patient_data SET ";
$sql .= $query['set'];
$sql .= " WHERE `uuid` = ?";
$puuidBinary = UuidRegistry::uuidToBytes($puuidString);
array_push($query['bind'], $puuidBinary);
$sqlResult = sqlStatement($sql, $query['bind']);
if (!$sqlResult) {
$processingResult->addErrorMessage("error processing SQL Update");
} else {
$processingResult = $this->getOne($puuidString);
// Tell subscribers that a new patient has been updated
// We have to do this here and in the databaseUpdate() because this lookup is
// by uuid where the databseUpdate updates by pid.
$originalData = [];
if ($dataBeforeUpdate->hasData()) {
$originalData = $dataBeforeUpdate->getData()[0]; // so wierd the findOne returns an array
}
// in order to be consistent and backwards compatible with the other PatientUpdatedEvent event
// we need the uuid to be the same binary fomrat as the other event firing.
if (!empty($originalData['uuid'])) {
$originalData['uuid'] = UuidRegistry::uuidToBytes($originalData['uuid']);
}
$patientUpdatedEvent = new PatientUpdatedEvent($originalData, $processingResult->getData());
$GLOBALS["kernel"]->getEventDispatcher()->dispatch($patientUpdatedEvent, PatientUpdatedEvent::EVENT_HANDLE, 10);
}
return $processingResult;
}
protected function createResultRecordFromDatabaseResult($record)
{
if (!empty($record['uuid'])) {
$record['uuid'] = UuidRegistry::uuidToString($record['uuid']);
}
if (!empty($record['patient_history_uuid'])) {
$record['patient_history_uuid'] = UuidRegistry::uuidToString($record['patient_history_uuid']);
}
if (!empty($record['provider_uuid'])) {
$record['provider_uuid'] = UuidRegistry::uuidToString($record['provider_uuid']);
}
return $record;
}
/**
* Returns a list of patients matching optional search criteria.
* Search criteria is conveyed by array where key = field/column name, value = field value.
* If no search criteria is provided, all records are returned.
*
* @param $search search array parameters
* @param $isAndCondition specifies if AND condition is used for multiple criteria. Defaults to true.
* @param $puuidBind - Optional variable to only allow visibility of the patient with this puuid.
* @param $config - Search Query Config has sorting, pagination and other query configuration options for the request.
* @return ProcessingResult which contains validation messages, internal error messages, and the data
* payload.
*/
public function getAll($search = array(), $isAndCondition = true, $puuidBind = null, SearchQueryConfig $config = null)
{
$querySearch = [];
if (!empty($search)) {
if (isset($puuidBind)) {
$querySearch['uuid'] = new TokenSearchField('uuid', $puuidBind);
} elseif (isset($search['uuid'])) {
$querySearch['uuid'] = new TokenSearchField('uuid', $search['uuid']);
}
$wildcardFields = array('fname', 'mname', 'lname', 'street', 'city', 'state','postal_code','title'
, 'contact_address_line1', 'contact_address_city', 'contact_address_state','contact_address_postalcode');
foreach ($wildcardFields as $field) {
if (isset($search[$field])) {
$querySearch[$field] = new StringSearchField($field, $search[$field], SearchModifier::CONTAINS, $isAndCondition);
}
}
// for backwards compatability, we will make sure we do exact matches on the keys using string comparisons if no object is used
foreach ($search as $field => $key) {
if (!isset($querySearch[$field]) && !($key instanceof ISearchField)) {
$querySearch[$field] = new StringSearchField($field, $search[$field], SearchModifier::EXACT, $isAndCondition);
}
}
}
return $this->search($querySearch, $isAndCondition, $config);
}
public function search($search, $isAndCondition = true, SearchQueryConfig $config = null)
{
// we run two queries in this search. The first query is to grab all of the uuids of the patients that match
// the search. Because we are joining several tables with a 1:m relationship on several tables (previous name,
// patient history, address) we have to grab all of our patients uuids and then run our query AGAIN without any
// search filters so that we can make sure to grab the ENTIRE patient record (all of their names, addresses, etc).
$sqlSelectIds = "SELECT DISTINCT patient_data.uuid ";
$sqlSelectIdsCount = "SELECT COUNT(DISTINCT patient_data.uuid) AS cnt ";
$sqlSelectData = "SELECT
patient_data.*
,patient_history_uuid
,patient_history_type_key
,patient_history_created_by
,previous_name_first
,previous_name_prefix
,previous_name_first
,previous_name_middle
,previous_name_last
,previous_name_suffix
,previous_name_enddate
,patient_additional_addresses.*
,provider_uuid
";
$sql = "
FROM patient_data
LEFT JOIN (
SELECT
pid AS patient_history_pid
,history_type_key AS patient_history_type_key
,created_by AS patient_history_created_by
,previous_name_prefix
,previous_name_first
,previous_name_middle
,previous_name_last
,previous_name_suffix
,previous_name_enddate
,`date` AS previous_creation_date
,uuid AS patient_history_uuid
FROM patient_history
) patient_history ON patient_data.pid = patient_history.patient_history_pid
LEFT JOIN (
select
id AS provider_id
,uuid AS provider_uuid
FROM users
) provider ON patient_data.providerID = provider.provider_id
LEFT JOIN (
SELECT
contact.id AS contact_address_contact_id
,contact.foreign_id AS contact_address_patient_id
,contact_address.`id` AS contact_address_id
,contact_address.`priority` AS contact_address_priority
,contact_address.`type` AS contact_address_type
,contact_address.`use` AS contact_address_use
,contact_address.`is_primary` AS contact_address_is_primary
,contact_address.`created_date` AS contact_address_created_date
,contact_address.`period_start` AS contact_address_period_start
,contact_address.`period_end` AS contact_address_period_end
,addresses.id AS contact_address_address_id
,addresses.`line1` AS contact_address_line1
,addresses.`line2` AS contact_address_line2
,addresses.`city` AS contact_address_city
,addresses.`district` AS contact_address_district
,addresses.`state` AS contact_address_state
,addresses.`zip` AS contact_address_postal_code
,addresses.`country` AS contact_address_country
FROM contact
INNER JOIN contact_address ON contact.id = contact_address.contact_id
INNER JOIN addresses ON contact_address.address_id = addresses.id
WHERE `contact_address`.`status`='A' AND contact.foreign_table_name='patient_data'
) patient_additional_addresses ON patient_data.pid = patient_additional_addresses.contact_address_patient_id";
$whereUuidClause = FhirSearchWhereClauseBuilder::build($search, $isAndCondition);
if (!empty($config)) {
$pagination = $config->getPagination();
$orderBy = SearchConfigClauseBuilder::buildSortOrderClauseFromConfig($config);
$offset = SearchConfigClauseBuilder::buildQueryPaginationClause($pagination);
} else {
$orderBy = "";
$offset = "";
$pagination = new QueryPagination();
}
$sqlUUidsCount = $sqlSelectIdsCount . $sql . $whereUuidClause->getFragment() . " " . $orderBy;
$uuidCount = QueryUtils::fetchSingleValue($sqlUUidsCount, 'cnt', $whereUuidClause->getBoundValues());
if (empty($uuidCount) || intval($uuidCount) <= 0) {
return new ProcessingResult();
}
$sqlUuids = $sqlSelectIds . $sql . $whereUuidClause->getFragment() . " " . $orderBy . " " . $offset;
$uuidResults = QueryUtils::fetchTableColumn($sqlUuids, 'uuid', $whereUuidClause->getBoundValues());
if (!empty($uuidResults)) {
// now we are going to run through this again and grab all of our data w only the uuid search as our filter
// this makes sure we grab the entire patient record and associated data
$whereClause = " WHERE patient_data.uuid IN (" . implode(",", array_map(function ($uuid) {
return "?";
}, $uuidResults)) . ") " . $orderBy; // make sure we keep our sort order
$statementResults = QueryUtils::sqlStatementThrowException($sqlSelectData . $sql . $whereClause, $uuidResults);
$processingResult = $this->hydrateSearchResultsFromQueryResource($statementResults, $pagination);
$processingResult->getPagination()->setTotalCount($uuidCount);
return $processingResult;
} else {
return new ProcessingResult();
}
}
private function hydrateSearchResultsFromQueryResource($queryResource, QueryPagination $pagination = null)
{
$processingResult = new ProcessingResult();
if (!empty($pagination)) {
$processingResult->setPagination($pagination);
}
$patientsByUuid = [];
$alreadySeenPatientHistoryUuids = [];
$alreadySeenContactAddressIds = [];
$patientFields = array_combine($this->getFields(), $this->getFields());
$previousNameColumns = ['previous_name_prefix', 'previous_name_first', 'previous_name_middle'
, 'previous_name_last', 'previous_name_suffix', 'previous_name_enddate'];
$previousNamesFields = array_combine($previousNameColumns, $previousNameColumns);
$patientOrderedList = [];
while ($row = sqlFetchArray($queryResource)) {
$record = $this->createResultRecordFromDatabaseResult($row);
$patientUuid = $record['uuid'];
if (!isset($patientsByUuid[$patientUuid])) {
$patient = array_intersect_key($record, $patientFields);
$patient['suffix'] = $this->parseSuffixForPatientRecord($patient);
$patient['previous_names'] = [];
$patientOrderedList[] = $patientUuid;
} else {
$patient = $patientsByUuid[$patientUuid];
}
// we only want to populate our patient history records if we haven't seen this uuid before and we are working
// with a name history record...
if (
!empty($record['patient_history_type_key'])
&& empty($alreadySeenPatientHistoryUuids[$record['patient_history_uuid']])
&& $record['patient_history_type_key'] == 'name_history'
) {
$alreadySeenPatientHistoryUuids[$record['patient_history_uuid']] = $record['patient_history_uuid'];
$previousName = array_intersect_key($record, $previousNamesFields);
$previousName['formatted_name'] = $this->formatPreviousName($previousName);
$patient['previous_names'][] = $previousName;
}
if (empty($patient['addresses'])) {
$patient['addresses'] = [$this->hydratedPatientInitialAddressInformation($patient)];
}
// now we are going to keep track of our address information
if (!empty($record['contact_address_id']) && empty($alreadySeenContactAddressIds[$record['contact_address_id']])) {
$patient['addresses'][] = $this->hydratePatientAdditionalAddressInformation($record);
}
// now let's grab our history
$patientsByUuid[$patientUuid] = $patient;
}
foreach ($patientOrderedList as $uuid) {
$patient = $patientsByUuid[$uuid];
$processingResult->addData($patient);
}
return $processingResult;
}
private function hydratePatientAdditionalAddressInformation(&$record)
{
$address = [
'id' => $record['contact_address_address_id'] ?? null
,'contact_id' => $record['contact_address_contact_id'] ?? null
,'contact_address_id' => $record['contact_address_id'] ?? null
,'period_start' => $record['contact_address_period_start'] ?? date("Y-m-d 00:00:00")
,'period_end' => $record['contact_address_period_end'] ?? null
,'type' => $record['contact_address_type'] ?? ContactAddress::DEFAULT_TYPE
,'use' => $record['contact_address_use'] ?? ContactAddress::DEFAULT_USE
,'priority' => $record['contact_address_address_priority'] ?? 0
,'line1' => $record['contact_address_line1'] ?? ''
,'line2' => $record['contact_address_line2'] ?? ''
,'city' => $record['contact_address_city'] ?? ''
,'district' => $record['contact_address_district'] ?? ''
,'state' => $record['contact_address_state'] ?? ''
,'postal_code' => $record['contact_address_postal_code'] ?? ''
,'country_code' => $record['contact_address_country'] ?? ''
];
return $address;
}
private function hydratedPatientInitialAddressInformation(&$patient)
{
// we need to setup our initial address from the patient records if we have one
$address = [
'id' => null
,'contact_id' => null
,'contact_address_id' => null
,'period_start' => $patient['date'] // we go off the patient date as for when the address was here as we don't have any other good date to go off of.
,'period_end' => null
,'type' => ContactAddress::DEFAULT_TYPE
,'use' => ContactAddress::DEFAULT_USE
,'priority' => 0
,'line1' => $patient['street'] ?? ''
,'line2' => $patient['street_line_2'] ?? ''
,'city' => $patient['city'] ?? ''
,'district' => $patient['county'] ?? ''
,'state' => $patient['state'] ?? ''
,'postal_code' => $patient['postal_code'] ?? ''
,'country_code' => $patient['country_code'] ?? ''
];
return $address;
}
/**
* Returns a single patient record by patient id.
* @param $puuidString - The patient uuid identifier in string format.
* @return ProcessingResult which contains validation messages, internal error messages, and the data
* payload.
*/
public function getOne($puuidString)
{
$processingResult = new ProcessingResult();
$isValid = $this->patientValidator->isExistingUuid($puuidString);
if (!$isValid) {
$validationMessages = [
'uuid' => ["invalid or nonexisting value" => " value " . $puuidString]
];
$processingResult->setValidationMessages($validationMessages);
return $processingResult;
}
return $this->search(['uuid' => new TokenSearchField('uuid', [$puuidString], true)]);
}
/**
* Given a pid, find the patient record
*
* @param $pid
*/
public function findByPid($pid)
{
$table = PatientService::TABLE_NAME;
$patientRow = self::selectHelper("SELECT * FROM `$table`", [
'where' => 'WHERE pid = ?',
'limit' => 1,
'data' => [$pid]
]);
return $patientRow;
}
/**
* @return number
*/
public function getPatientPictureDocumentId($pid)
{
$sql = "SELECT doc.id AS id
FROM documents doc
JOIN categories_to_documents cate_to_doc
ON doc.id = cate_to_doc.document_id
JOIN categories cate
ON cate.id = cate_to_doc.category_id
WHERE cate.name LIKE ? and doc.foreign_id = ?";
$result = sqlQuery($sql, array($GLOBALS['patient_photo_category_name'], $pid));
if (empty($result) || empty($result['id'])) {
return $this->patient_picture_fallback_id;
}
return $result['id'];
}
/**
* Fetch UUID for the patient id
*
* @param string $id - ID of Patient
* @return false if nothing found otherwise return UUID (in binary form)
*/
public function getUuid($pid)
{
return self::getUuidById($pid, self::TABLE_NAME, 'pid');
}
public function getPidByUuid($uuid)
{
return self::getIdByUuid($uuid, self::TABLE_NAME, 'pid');
}
private function saveCareTeamHistory($patientData, $oldProviders, $oldFacilities)
{
$careTeamService = new CareTeamService();
$careTeamService->createCareTeamHistory($patientData['pid'], $oldProviders, $oldFacilities);
}
public function getPatientNameHistory($pid)
{
$sql = "SELECT pid,
id,
previous_name_prefix,
previous_name_first,
previous_name_middle,
previous_name_last,
previous_name_suffix,
previous_name_enddate
FROM patient_history
WHERE pid = ? AND history_type_key = ?";
$results = QueryUtils::sqlStatementThrowException($sql, array($pid, 'name_history'));
$rows = [];
while ($row = sqlFetchArray($results)) {
$row['formatted_name'] = $this->formatPreviousName($row);
$rows[] = $row;
}
return $rows;
}
public function deletePatientNameHistoryById($id)
{
$sql = "DELETE FROM patient_history WHERE id = ?";
return sqlQuery($sql, array($id));
}
public function getPatientNameHistoryById($pid, $id)
{
$sql = "SELECT pid,
id,
previous_name_prefix,
previous_name_first,
previous_name_middle,
previous_name_last,
previous_name_suffix,
previous_name_enddate
FROM patient_history
WHERE pid = ? AND id = ? AND history_type_key = ?";
$result = sqlQuery($sql, array($pid, $id, 'name_history'));
$result['formatted_name'] = $this->formatPreviousName($result);
return $result;
}
/**
* Create a previous patient name history
* Updates not allowed for this history feature.
*
* @param string $pid patient internal id
* @param array $record array values to insert
* @return int | false new id or false if name already exist
*/
public function createPatientNameHistory($pid, $record)
{
// we should never be null here but for legacy reasons we are going to default to this
$createdBy = $_SESSION['authUserID'] ?? null; // we don't let anyone else but the current user be the createdBy
if ($pid <= 0) {
return false;
}
$insertData = [
'pid' => $pid,
'history_type_key' => 'name_history',
'previous_name_prefix' => $record['previous_name_prefix'],
'previous_name_first' => $record['previous_name_first'],
'previous_name_middle' => $record['previous_name_middle'],
'previous_name_last' => $record['previous_name_last'],
'previous_name_suffix' => $record['previous_name_suffix'],
'previous_name_enddate' => $record['previous_name_enddate']
];
$sql = "SELECT pid FROM " . self::PATIENT_HISTORY_TABLE . " WHERE
pid = ? AND
history_type_key = ? AND
previous_name_prefix = ? AND
previous_name_first = ? AND
previous_name_middle = ? AND
previous_name_last = ? AND
previous_name_suffix = ? AND
previous_name_enddate = ?
";
$go_flag = QueryUtils::fetchSingleValue($sql, 'pid', $insertData);
// return false which calling routine should understand as existing name record
if (!empty($go_flag)) {
return false;
}
// finish up the insert
$insertData['created_by'] = $createdBy;
$insertData['uuid'] = UuidRegistry::getRegistryForTable(self::PATIENT_HISTORY_TABLE)->createUuid();
$insert = $this->buildInsertColumns($insertData);
$sql = "INSERT INTO " . self::PATIENT_HISTORY_TABLE . " SET " . $insert['set'];
return QueryUtils::sqlInsert($sql, $insert['bind']);
}
public function formatPreviousName($item)
{
if (
$item['previous_name_enddate'] === '0000-00-00'
|| $item['previous_name_enddate'] === '00/00/0000'
) {
$item['previous_name_enddate'] = '';
}
$item['previous_name_enddate'] = oeFormatShortDate($item['previous_name_enddate']);
$name = ($item['previous_name_prefix'] ? $item['previous_name_prefix'] . " " : "") .
$item['previous_name_first'] .
($item['previous_name_middle'] ? " " . $item['previous_name_middle'] . " " : " ") .
$item['previous_name_last'] .
($item['previous_name_suffix'] ? " " . $item['previous_name_suffix'] : "") .
($item['previous_name_enddate'] ? " " . $item['previous_name_enddate'] : "");
return text($name);
}
/**
* Returns a string to be used to display a patient's age
*
* @param type $dobYMD
* @param type $asOfYMD
* @return string suitable for displaying patient's age based on preferences
*/
public function getPatientAgeDisplay($dobYMD, $asOfYMD = null)
{
if ($GLOBALS['age_display_format'] == '1') {
$ageYMD = $this->getPatientAgeYMD($dobYMD, $asOfYMD);
if (isset($GLOBALS['age_display_limit']) && $ageYMD['age'] <= $GLOBALS['age_display_limit']) {
return $ageYMD['ageinYMD'];
} else {
return $this->getPatientAge($dobYMD, $asOfYMD);
}
} else {
return $this->getPatientAge($dobYMD, $asOfYMD);
}
}
// Returns Age
// in months if < 2 years old
// in years if > 2 years old
// given YYYYMMDD from MySQL DATE_FORMAT(DOB,'%Y%m%d')
// (optional) nowYMD is a date in YYYYMMDD format
public function getPatientAge($dobYMD, $nowYMD = null)
{
if (empty($dobYMD)) {
return '';
}
// strip any dashes from the DOB
$dobYMD = preg_replace("/-/", "", $dobYMD);
$dobDay = substr($dobYMD, 6, 2);
$dobMonth = substr($dobYMD, 4, 2);
$dobYear = (int) substr($dobYMD, 0, 4);
// set the 'now' date values
if ($nowYMD == null) {
$nowDay = date("d");
$nowMonth = date("m");
$nowYear = date("Y");
} else {
$nowDay = substr($nowYMD, 6, 2);
$nowMonth = substr($nowYMD, 4, 2);
$nowYear = substr($nowYMD, 0, 4);
}
$dayDiff = $nowDay - $dobDay;
$monthDiff = $nowMonth - $dobMonth;
$yearDiff = $nowYear - $dobYear;
$ageInMonths = (($nowYear * 12) + $nowMonth) - (($dobYear * 12) + $dobMonth);
// We want the age in FULL months, so if the current date is less than the numerical day of birth, subtract a month
if ($dayDiff < 0) {
$ageInMonths -= 1;
}
if ($ageInMonths > 24) {
$age = $yearDiff;
if (($monthDiff == 0) && ($dayDiff < 0)) {
$age -= 1;
} elseif ($monthDiff < 0) {
$age -= 1;
}
} else {
$age = "$ageInMonths " . xl('month');
}
return $age;
}
/**
*
* @param type $dob
* @param type $date
* @return array containing
* age - decimal age in years
* age_in_months - decimal age in months
* ageinYMD - formatted string #y #m #d
*/
public function getPatientAgeYMD($dob, $date = null)
{
if ($date == null) {
$daynow = date("d");
$monthnow = date("m");
$yearnow = date("Y");
$datenow = $yearnow . $monthnow . $daynow;
} else {
$datenow = preg_replace("/-/", "", $date);
$yearnow = substr($datenow, 0, 4);
$monthnow = substr($datenow, 4, 2);
$daynow = substr($datenow, 6, 2);
$datenow = $yearnow . $monthnow . $daynow;
}
$dob = preg_replace("/-/", "", $dob);
$dobyear = substr($dob, 0, 4);
$dobmonth = substr($dob, 4, 2);
$dobday = substr($dob, 6, 2);
$dob = $dobyear . $dobmonth . $dobday;
//to compensate for 30, 31, 28, 29 days/month
$mo = $monthnow; //to avoid confusion with later calculation
if ($mo == 05 or $mo == 07 or $mo == 10 or $mo == 12) { // determined by monthnow-1
$nd = 30; // nd = number of days in a month, if monthnow is 5, 7, 9, 12 then
} elseif ($mo == 03) { // look at April, June, September, November for calculation. These months only have 30 days.
// for march, look to the month of February for calculation, check for leap year
$check_leap_Y = $yearnow / 4; // To check if this is a leap year.
if (is_int($check_leap_Y)) { // If it true then this is the leap year
$nd = 29;
} else { // otherwise, it is not a leap year.
$nd = 28;
}
} else { // other months have 31 days
$nd = 31;
}
$bdthisyear = $yearnow . $dobmonth . $dobday; //Date current year's birthday falls on
if ($datenow < $bdthisyear) { // if patient hasn't had birthday yet this year
$age_year = $yearnow - $dobyear - 1;
if ($daynow < $dobday) {
$months_since_birthday = 12 - $dobmonth + $monthnow - 1;
$days_since_dobday = $nd - $dobday + $daynow; //did not take into account for month with 31 days
} else {
$months_since_birthday = 12 - $dobmonth + $monthnow;
$days_since_dobday = $daynow - $dobday;
}
} else // if patient has had birthday this calandar year
{
$age_year = (int) $yearnow - (int) $dobyear;
if ($daynow < $dobday) {
$months_since_birthday = $monthnow - $dobmonth - 1;
$days_since_dobday = $nd - $dobday + $daynow;
} else {
$months_since_birthday = $monthnow - $dobmonth;
$days_since_dobday = $daynow - $dobday;
}
}
$day_as_month_decimal = $days_since_dobday / 30;
$months_since_birthday_float = $months_since_birthday + $day_as_month_decimal;
$month_as_year_decimal = $months_since_birthday_float / 12;
$age_float = $age_year + $month_as_year_decimal;
$age_in_months = $age_year * 12 + $months_since_birthday_float;
$age_in_months = round($age_in_months, 2); //round the months to xx.xx 2 floating points
$age = round($age_float, 2);
// round the years to 2 floating points
$ageinYMD = $age_year . "y " . $months_since_birthday . "m " . $days_since_dobday . "d";
return compact('age', 'age_in_months', 'ageinYMD');
}
public function getProviderIDsForPatientPids(array $patientPids)
{
// get integer only filtered pids for sql safety
$pids = array_map('intval', $patientPids);
$pids = array_filter($pids, function ($pid) {
return $pid > 0;
});
$sql = "SELECT pid,providerID FROM patient_data WHERE pid IN (" . implode(",", $pids) . ") "
. " AND providerID IS NOT NULL AND providerID != 0 ORDER BY pid";
$providerIds = QueryUtils::fetchRecords($sql, []);
$mappedPids = [];
if (!empty($providerIds)) {
foreach ($providerIds as $record) {
$mappedPids[$record['pid']] = $record['providerID'];
}
}
return $mappedPids;
}
public function getProviderIDsForPatientUuids(array $patientUuids)
{
// get integer only filtered pids for sql safety
$bindString = rtrim(str_repeat("?,", count($patientUuids) - 1)) . "?";
$patientUuids = array_map(function ($uuid) {
return UuidRegistry::uuidToBytes($uuid);
}, $patientUuids);
$sql = "SELECT uuid,providerID FROM patient_data WHERE uuid IN (" . $bindString . ") "
. " AND providerID IS NOT NULL AND providerID != 0 ORDER BY uuid";
$providerIds = QueryUtils::fetchRecords($sql, $patientUuids);
$mappedUuids = [];
if (!empty($providerIds)) {
foreach ($providerIds as $record) {
$uuid = UuidRegistry::uuidToString($record['uuid']);
$mappedUuids[$uuid] = $record['providerID'];
}
}
return $mappedUuids;
}
private function parseSuffixForPatientRecord($patientRecord)
{
// if we have a suffix populated (that wasn't entered into last name) let's use that.
if (!empty($patientRecord['suffix'])) {
return $patientRecord['suffix'];
}
// parse suffix from last name. saves messing with LBF
$suffixes = $this->getPatientSuffixKeys();
$suffix = null;
foreach ($suffixes as $s) {
if (stripos($patientRecord['lname'], $s) !== false) {
$suffix = $s;
$result['lname'] = trim(str_replace($s, '', $patientRecord['lname']));
break;
}
}
return $suffix;
}
private function getPatientSuffixKeys()
{
if (!isset($this->patientSuffixKeys)) {
$this->patientSuffixKeys = array(xl('Jr.'), ' ' . xl('Jr'), xl('Sr.'), ' ' . xl('Sr'), xl('II{{patient suffix}}'), xl('III{{patient suffix}}'), xl('IV{{patient suffix}}'));
}