-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakeFhirRequest.js
660 lines (599 loc) · 20.3 KB
/
makeFhirRequest.js
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
require('dotenv').config();
const express = require('express');
const cors = require('cors');
const axios = require('axios');
const getAzureADToken = require('./getAzureADToken');
const app = express();
// Use CORS middleware with specific configuration to allow requests from any origin
// and to enable credentials and various HTTPS methods
app.use(cors({
origin: "*", // Allow all origins
credentials: true, // Allow cookies to be sent with requests
methods: ["GET", "PUT", "POST", "PATCH", "DELETE", "OPTIONS"] // Allowed HTTPS methods
}));
app.use(express.json()); // Parse JSON bodies in requests
// Retrieve the FHIR server URL from environment variables
const fhirServerURL = process.env.FHIR_SERVER_URL;
// Middleware to obtain an Azure AD token and attach it to the request object
app.use(async (req, res, next) => {
try {
const accessToken = await getAzureADToken();
req.accessToken = accessToken;
next();
} catch (error) {
next(error);
}
});
// Function to make requests to the FHIR server for a specific resource type
const makeFHIRRequest = async (req, resourceType) => {
const headers = {
headers: { 'Authorization': `Bearer ${req.accessToken}` },
params: { '_count': '10000' } // Query parameter to specify number of results
};
return axios.get(`${fhirServerURL}/${resourceType}`, headers); // Make GET request
};
// Error handling middleware to handle any errors that occur during request processing
app.use((error, req, res, next) => {
console.error('Error:', error);
if (error.response) {
res.status(error.response.status).send({ message: 'FHIR Server Error', error: error.response.data });
} else if (error.request) {
res.status(500).send({ message: 'No response received from FHIR Server', error: error.message });
} else {
res.status(500).send({ message: 'Error processing your request', error: error.message });
}
});
// Dynamically create route handlers for different FHIR resources
const resources = ['Task', 'Patient', 'ServiceRequest', 'PractitionerRole', 'Organization', 'Practitioner'];
resources.forEach(resource => {
app.get(`/${resource}`, async (req, res, next) => {
try {
const response = await makeFHIRRequest(req, resource);
res.status(200).json(response.data.entry);
} catch (error) {
next(error);
}
});
});
// Function to search for patients by last name and date of birth
const searchPatients = async (accessToken, lastName, dob) => {
const headers = {
headers: { 'Authorization': `Bearer ${accessToken}` },
params: {
'family': lastName,
'birthdate': dob
}
};
const patients = axios.get(`${fhirServerURL}/Patient?${lastName}&${dob}`, headers);
return patients
};
// Route handler for searching patients by last name and date of birth
app.get('/search/Patient', async (req, res, next) => {
try {
const accessToken = req.accessToken;
const { lastName, dob } = req.query;
const response = await searchPatients(accessToken, lastName, dob); // Call the function to search for patients
res.status(200).json(response.data.entry);
} catch (error) {
next(error);
}
});
// Fetch ServiceRequest resources for the given patient ID
const getServiceRequestsForPatient = async (accessToken, patientId) => {
const headers = {
headers: { 'Authorization': `Bearer ${accessToken}` },
params: { 'subject': `Patient/${patientId}` }
};
return axios.get(`${fhirServerURL}/ServiceRequest`, headers);
};
// Fetch Task resources for a given ServiceRequest ID
const getTasksForServiceRequest = async (accessToken, serviceRequestId) => {
const queryUrl = `${fhirServerURL}/Task?focus:ServiceRequest=${serviceRequestId}`;
return axios.get(queryUrl, {
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${accessToken}`
}
});
};
// Combine the logic in the route handler
app.get('/modal/:patientId', async (req, res, next) => {
const { patientId } = req.params;
try {
const accessToken = req.accessToken;
// Fetch ServiceRequest resources for the patient
const serviceRequestsResponse = await getServiceRequestsForPatient(accessToken, patientId);
const serviceRequests = serviceRequestsResponse.data.entry || [];
// Extract ServiceRequest IDs
const serviceRequestIds = serviceRequests.map(entry => entry.resource.id);
// Fetch Task resources for each ServiceRequest ID
const taskPromises = serviceRequestIds.map(serviceRequestId => getTasksForServiceRequest(accessToken, serviceRequestId));
const tasksResponses = await Promise.all(taskPromises);
const tasks = tasksResponses.flatMap(response => response.data.entry || []);
// Combine results
const combinedResults = {
serviceRequests,
tasks
};
res.status(200).json(combinedResults);
} catch (error) {
next(error);
}
});
// Language code mapping
const languageCodeMapping = {
"Polish": "pl",
"Chinese": "zh",
"Tagalog": "tl",
"Arabic": "ar",
"Urdu": "ur",
"Gujarati": "gu",
"Russian": "ru",
"Hindi": "hi",
"Korean": "ko",
"English": "en"
};
const ethnicityCodeMapping = {
"Asked but unknown": "ASKU",
"Hispanic or Latino": "2135-2",
"Not Hispanic or Latino": "2186-5",
"Unknown": "UNK"
}
const raceCodeMapping = {
"American Indian or Alaska Native": "1002-5",
"Asian": "2028-9",
"Asked but unknown": "ASKU",
"Black or African American": "2054-5",
"Native Hawaiian or Other Pacific Islander": "2076-8",
"Other Race": "2131-1",
"Unknown": "UNK",
"White": "2106-3"
}
const sexAtBirthCodeMapping = {
"Asked but unknown": "ASKU",
"Female": "F",
"Male": "M",
"Other": "OTH",
"Unknown": "UNK"
}
//this fucntion creates a patient with the values coming from UI
function createPatientObject(
firstName,
lastName,
dateOfBirth,
gender,
race,
sex_at_birth,
ethnicity,
genderIdentity,
sexualOrientation,
language,
phoneNumber,
email,
address1,
address2,
city,
state,
zipcode
) {
const LanguageCode = languageCodeMapping[language] || "UNK";
const ethnicityCode = ethnicityCodeMapping[ethnicity] || "UNK";
const raceCode = raceCodeMapping[race] || "UNK";
const sexAtBirthCode = sexAtBirthCodeMapping[sex_at_birth] || "UNK";
const patient = {
"resourceType": "Patient",
"active": true,
"name": [
{
"use": "official",
"family": lastName,
"given": [firstName]
}
],
"gender": gender,
"birthDate": dateOfBirth,
"telecom": [
{
"system": "phone",
"value": phoneNumber
},
{
"system": "email",
"value": email
}
],
"address": [
{
"use": "home",
"line": [address1, address2],
"city": city,
"state": state,
"postalCode": zipcode
}
],
"communication": [
{
"language": {
"coding": [
{
"system": "urn:ietf:bcp:47",
"code": LanguageCode,
"display":language
}
],
"text": language
},
"preferred": true
}
],
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/us-core-race",
"extension": [
{
"url": "ombCategory",
"valueCoding": {
"system": "urn:oid:2.16.840.1.113883.6.238",
"code": raceCode,
"display": race
}
},
{
"url": "text",
"valueString": race
}
]
},
{
"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
"extension": [
{
"url": "ombCategory",
"valueCoding": {
"system": "urn:oid:2.16.840.1.113883.6.238",
"code": ethnicityCode,
"display": ethnicity
}
},
{
"url": "text",
"valueString": ethnicity
}
]
},
{
"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
"valueCode": sexAtBirthCode
}
]
};
if (genderIdentity) {
patient.extension.push({
"url": "https://docs.mydata.athenahealth.com/fhir-r4/StructureDefinition/athena-patient-extension-genderIdentity",
"valueCodeableConcept": {
"coding": [
{
"system": "https://docs.mydata.athenahealth.com/fhir-r4/athenaFlex/genderIdentity",
"display": genderIdentity
}
],
"text": genderIdentity
}
});
}
if (sexualOrientation) {
patient.extension.push({
"url": "https://docs.mydata.athenahealth.com/fhir-r4/StructureDefinition/athena-patient-extension-sexualOrientation",
"valueCodeableConcept": {
"coding": [
{
"system": "https://docs.mydata.athenahealth.com/fhir-r4/athenaFlex/sexualOrientation",
"display": sexualOrientation
}
],
"text": sexualOrientation
}
});
}
return patient;
}
//this fucntion creates a Service Request with the values coming from UI
function createServiceRequestObject(
patientID,
practitionerId,
practitionerName,
organizationId,
organizationName,
referralText,
serviceRequestText
) {
const serviceRequest = {
"resourceType": "ServiceRequest",
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "codesystem/ordercategory",
"code": "referrals",
"display": "Referrals"
}
],
"text": "Referrals"
}
],
"code": {
"text": `${serviceRequestText}`
},
"subject": {
"reference": `Patient/${patientID}`
},
"requester": {
"reference": `Practitioner/${practitionerId}`,
"display": practitionerName
},
"performer": [
{
"reference": `Organization/${organizationId}`,
"display": organizationName
}
],
"note": [
{
"text": referralText
}
]
};
return serviceRequest;
}
//this fucntion creates a Task with the values coming from UI
function createTaskObject(
patientId,
serviceRequest,
practitionerId,
practitionerName,
organizationId,
organizationName
) {
task = {
"resourceType": "Task",
"meta": {
"profile": [
"http://hl7.org/fhir/us/sdoh-clinicalcare/StructureDefinition/SDOHCC-TaskForReferralManagement"
]
},
"status": "requested",
"intent": "order",
"code": {
"coding": [
{
"system": "http://hl7.org/fhir/CodeSystem/task-code",
"code": "fulfill",
"display": "Fulfill the service request"
}
]
},
"focus": {
"reference": `ServiceRequest/${serviceRequest}`
},
"for": {
"reference": `Patient/${patientId}`
},
"authoredOn": new Date().toISOString(),
"requester": {
"reference": `Practitioner/${organizationId}`,
"display": organizationName
},
"businessStatus": {
"text": "Received"
},
"owner": {
"reference": "PractitionerRole/example-practitionerRole",
"display": "Dr. Owners"
},
};
return task;
}
// POST endpoint for creating a patient
app.post('/createPatient', async (req, res) => {
try {
const {
firstName,
lastName,
dateOfBirth,
gender,
race,
sex_at_birth,
ethnicity,
genderIdentity,
sexualOrientation,
language,
phoneNumber,
email,
address1,
address2,
city,
state,
zipcode
} = req.body;
const patient = createPatientObject(
firstName,
lastName,
dateOfBirth,
gender,
race,
sex_at_birth,
ethnicity,
genderIdentity,
sexualOrientation,
language,
phoneNumber,
email,
address1,
address2,
city,
state,
zipcode
);
const fhirServerURL = process.env.FHIR_SERVER_URL;
const accessToken = await getAzureADToken();
const response = await axios.post(`${fhirServerURL}/Patient`, patient, {
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${accessToken}`
}
});
res.status(201).json(response.data);
} catch (error) {
console.error('Error creating patient:', error);
res.status(500).json({ error: 'Internal Server Error' });
throw error;
}
});
// POST endpoint for creating a ServiceRequest and also task
app.post('/createServiceRequestandtask', async (req, res) => {
try {
const {
patientID,
practitionerId,
practitionerName,
organizationId,
organizationName,
referralText,
serviceRequestText
} = req.body;
const serviceRequest = createServiceRequestObject(
patientID,
practitionerId,
practitionerName,
organizationId,
organizationName,
referralText,
serviceRequestText
);
const fhirServerURL = process.env.FHIR_SERVER_URL;
const accessToken = await getAzureADToken();
const serviceRequestResponse = await axios.post(`${fhirServerURL}/ServiceRequest`, serviceRequest, {
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${accessToken}`
}
});
const serviceRequestId = serviceRequestResponse.data.id;
// Create Task
const task = createTaskObject(
patientID,
serviceRequestId,
practitionerId,
practitionerName,
organizationId,
organizationName
);
const taskResponse = await axios.post(`${fhirServerURL}/Task`, task, {
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${accessToken}`
}
});
res.status(201).json({
serviceRequest: serviceRequestResponse.data,
task: taskResponse.data
});
} catch (error) {
console.error('Error creating service request:', error);
res.status(500).json({ error: 'Internal Server Error' });
}
});
// Route handler for PUT requests on the Task resource
app.post('/update/Task/:taskId', async (req, res, next) => {
try {
const {taskId} = req.params;
const updateData = req.body;
const response = await updateTask(taskId, updateData); // Update the Task in the FHIR server
// Respond with the updated Task data
res.status(200).json(response);
} catch (error) {
next(error);
}
});
async function updateTask(taskId, patchBody) {
try {
// Retrieve the FHIR server URL from environment variables
const fhirServerURL = process.env.FHIR_SERVER_URL;
const taskUrl = `${fhirServerURL}/Task/${taskId}`;
const accessToken = await getAzureADToken();
const headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': 'application/json-patch+json'
};
// Send the PATCH request to update the Task
await axios.patch(taskUrl, JSON.stringify(patchBody), {headers});
} catch (error) {
console.error('Failed to update Task', error.response ? error.response.data : error.message);
throw new Error('Error updating Task: ' + (error.response ? error.response.data : error.message));
}
}
async function fetchAllBundles() {
try {
// Retrieve the FHIR server URL from environment variables
const fhirServerURL = process.env.FHIR_SERVER_URL;
const bundleUrl = `${fhirServerURL}/Bundle`;
// Assuming getAzureADToken function is defined somewhere to retrieve Azure AD token
const accessToken = await getAzureADToken();
const headers = {
'Authorization': `Bearer ${accessToken}`
};
// Make GET request to fetch Bundles
const response = await axios.get(bundleUrl, { headers });
// Check if response is successful and has data
if (!response || !response.data || !response.data.entry) {
throw new Error('No Bundles found or invalid response.');
}
const bundles = response.data.entry;
return bundles; // Return array of Bundles
} catch (error) {
console.error('Error fetching Bundles:', error);
throw error;
}
}
// Express route handler
app.get('/PractitionerID/:practitionerId', async (req, res) => {
const { practitionerId } = req.params; // Extract practitionerId from URL params
try {
// Fetch all Bundles using the access token
const bundles = await fetchAllBundles();
let foundPractitioner = null;
// Iterate through bundles to find the Practitioner by ID
for (let i = 0; i < bundles.length; i++) {
const entries = bundles[i].resource.entry; // Assuming 'entry' is an array of entries in each bundle
for (let j = 0; j < entries.length; j++) {
const entry = entries[j];
if (entry.resource && entry.resource.resourceType === 'Practitioner' && entry.resource.id === practitionerId) {
foundPractitioner = `${entry.resource.name[0].given[0]} ${entry.resource.name[0].family}`;
break; // Exit the inner loop once the Practitioner is found
}
}
if (foundPractitioner) {
break; // Exit the outer loop once the Practitioner is found
}
}
if (foundPractitioner) {
res.status(200).json(foundPractitioner); // Send JSON response with the found Practitioner
} else {
res.status(404).json({ error: `Practitioner with ID '${practitionerId}' not found in any Bundle.` });
}
} catch (error) {
console.error('Error in GET /PractitionerID:', error);
res.status(500).json({ error: 'Failed to fetch or process data.' });
}
});
// Simple route handler for '/health' to confirm the service is running
app.get('/health', (req, res) => {
res.status(200).json({ "message": "Backend Service is healthy" });
});
// Start the server on a specified port, defaulting to 3000 if not specified
const port = process.env.PORT;
app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});