File size: 11,731 Bytes
6d12932 |
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 |
# Phase 2.3: EHR/FHIR Integration
## Overview
**Phase 2.3** integrates the application with Electronic Health Record (EHR) systems through:
- **FHIR APIs** (Fast Healthcare Interoperability Resources)
- **HL7 v2 messaging** (legacy EHR systems)
- **Real patient data** from hospital systems
- **Bi-directional data sync**
**Prerequisites:**
- Phase 2.1 (PostgreSQL Database)
- Phase 2.2 (Analytics) - optional
---
## Features
### 1. **FHIR API Integration**
#### Patient Data Retrieval
```python
from ehr_integration import FHIRAPIClient
client = FHIRAPIClient("https://fhir.hospital.com")
# Get patient demographics
patient = client.get_patient("12345")
# Get patient's conditions
conditions = client.get_patient_conditions("12345")
# Get vital signs and labs
observations = client.get_patient_observations("12345")
# Get active care plans
care_plans = client.get_patient_care_plans("12345")
# Get patient goals
goals = client.get_patient_goals("12345")
```
#### Data Submission
```python
# Create new observation (e.g., blood pressure reading)
obs_id = client.create_observation("12345", {
"code": {"coding": [{"code": "85354-9"}]}, # BP
"valueQuantity": {"value": 120, "unit": "mmHg"}
})
# Update care plan
client.update_care_plan("cp-123", updated_data)
```
### 2. **HL7 v2 Messaging**
For integration with legacy EHR systems:
```python
from ehr_integration import HL7Parser
parser = HL7Parser()
# Parse incoming HL7 message
message = """MSH|^~\\&|APP|FAC|APP|FAC|20251129...
PID|||12345||Doe^John||19800101|M
OBX|1|NM|85354-9||120||80-120|N"""
parsed = parser.parse_hl7_message(message)
# Returns: {
# "patient": {"id": "12345", "name": "Doe^John", ...},
# "observations": [{"type": "85354-9", "value": "120", ...}]
# }
```
### 3. **FHIR Resource Building**
Helper functions to create standardized FHIR resources:
```python
from ehr_integration import FHIRResourceBuilder
builder = FHIRResourceBuilder()
# Create condition
condition = builder.build_condition(
patient_id="12345",
code="80891009", # SNOMED code for type 2 diabetes
display="Type 2 Diabetes Mellitus",
onset_date="2020-01-15"
)
# Create observation (lab result)
observation = builder.build_observation(
patient_id="12345",
code="2345-7", # Glucose
value=125,
unit="mg/dL",
reference_range=(70, 100)
)
# Create goal
goal = builder.build_goal(
patient_id="12345",
description="Achieve HbA1c < 7%",
status="in-progress",
target_date="2026-01-15"
)
```
### 4. **EHR Integration Manager**
Comprehensive manager for all EHR operations:
```python
from ehr_integration import EHRIntegrationManager
manager = EHRIntegrationManager(
fhir_url="https://fhir.hospital.com",
api_key="your-api-key"
)
# Sync all patient data
patient_record = manager.sync_patient_data("12345")
# Returns complete record with:
# - Patient demographics
# - Conditions
# - Observations
# - Care plans
# - Goals
# Send observation to EHR
obs_id = manager.send_observation_to_ehr("12345", observation)
# Process incoming HL7
parsed = manager.process_hl7_message(hl7_message)
```
---
## Setup Instructions
### 1. Prerequisites
```bash
# Install FHIR libraries
pip install fhir-parser requests
# Or add to requirements.txt
fhir-parser==1.2.0
requests==2.28.0
```
### 2. Configure FHIR Server Connection
```bash
# Update .env.production
EHR_FHIR_URL=https://fhir.hospital.com
EHR_API_KEY=your_api_key
EHR_TIMEOUT=10
EHR_VERIFY_SSL=true
EHR_SYNC_INTERVAL=3600 # seconds
```
### 3. Register with FHIR Server
Most FHIR servers require:
1. **OAuth 2.0 credentials** or **API key**
2. **Client registration** (get client_id, client_secret)
3. **Scope permissions** (read, write, admin)
Example (Azure Health Data Services):
```bash
# Register application
az ad app create \
--display-name "Nursing Validator" \
--reply-urls "http://localhost:8501"
# Get credentials
AZURE_AD_TENANT_ID=your-tenant-id
AZURE_AD_CLIENT_ID=your-client-id
AZURE_AD_CLIENT_SECRET=your-secret
```
### 4. Initialize EHR Integration
```python
from ehr_integration import EHRIntegrationManager
import os
manager = EHRIntegrationManager(
fhir_url=os.getenv("EHR_FHIR_URL"),
api_key=os.getenv("EHR_API_KEY")
)
# Verify connection
patient = manager.fhir_client.get_patient("test-patient-id")
if patient:
print("β
Connected to FHIR server")
else:
print("β Failed to connect")
```
---
## FHIR Resources Supported
### Patient
- Demographics
- Contact information
- Insurance information
### Condition
- Diagnoses
- Problems
- Chronic conditions
### Observation
- Vital signs (BP, temp, O2)
- Lab results
- Assessment findings
### Goal
- Clinical goals
- Patient goals
- Progress tracking
### CarePlan
- Nursing care plans
- Treatment protocols
- Intervention activities
### Medication
- Current medications
- Dosage information
- Allergies
### Procedure
- Surgical procedures
- Clinical procedures
- Completed interventions
### Appointment
- Scheduled visits
- Follow-ups
- Clinic appointments
---
## Data Synchronization
### Real-time Sync
```python
# Background task to sync patient data
import asyncio
import time
async def sync_patient_data_loop(patient_id, interval=3600):
"""Continuously sync patient data."""
while True:
patient_data = manager.sync_patient_data(patient_id)
# Save to database
from database import save_patient_record
save_patient_record(patient_id, patient_data)
await asyncio.sleep(interval)
# Run in background
asyncio.create_task(sync_patient_data_loop("12345"))
```
### Event-Driven Sync
```python
# Listen for EHR events (webhook)
@st.streamlit_route("/ehr-webhook", methods=["POST"])
def receive_ehr_update(request):
data = request.json
patient_id = data["patient_id"]
# Sync on update
patient_data = manager.sync_patient_data(patient_id)
return {"status": "updated"}
```
---
## HL7 v2 Message Types
### ADT (Admission/Discharge/Transfer)
```
MSH|^~\&|SENDAPP|SENDFAC|RECAPP|RECFAC|20251129120000||ADT^A01
PID|1||12345||Doe^John
```
### ORM (Order Message)
```
MSH|^~\&|SENDAPP|SENDFAC|RECAPP|RECFAC|20251129120000||ORM^O01
ORC|NW|123456
OBX|1|NM|85354-9||120||80-120|N
```
### ORU (Observation/Result - Lab)
```
MSH|^~\&|LAB|HOSPITAL|APP|FACILITY|20251129120000||ORU^R01
OBX|1|NM|2345-7||125||70-100|N
```
---
## Security Considerations
### HIPAA Compliance
- β
Encryption in transit (HTTPS/TLS)
- β
Encryption at rest (database encryption)
- β
API key management
- β
Audit logging
- β
Access controls
- β
Data anonymization
- β
Consent management
### OAuth 2.0 Implementation
```python
from oauthlib.oauth2 import WebApplicationClient
client_id = os.getenv("AZURE_AD_CLIENT_ID")
client_secret = os.getenv("AZURE_AD_CLIENT_SECRET")
client = WebApplicationClient(client_id)
# Get authorization URL
authorization_url, state = client.prepare_request_uri(
"https://login.microsoftonline.com/common/oauth2/v2.0/authorize"
)
# Exchange code for token
token = client.prepare_refresh_token_request_body(
refresh_token, client_id, client_secret
)
```
### Certificate Pinning
```python
import requests
from requests.adapters import HTTPAdapter
from requests.packages.urllib3.util.ssl_ import create_urllib3_context
class SSLAdapter(HTTPAdapter):
def init_poolmanager(self, *args, **kwargs):
ctx = create_urllib3_context()
ctx.load_verify_locations('hospital_ca.pem')
kwargs['ssl_context'] = ctx
return super().init_poolmanager(*args, **kwargs)
session = requests.Session()
session.mount('https://', SSLAdapter())
```
---
## Troubleshooting
### Connection Errors
```python
# Test connection
try:
patient = client.get_patient("test-id")
if patient:
print("β
Connection successful")
else:
print("β Invalid patient ID")
except Exception as e:
print(f"β Connection failed: {e}")
```
### Authentication Issues
```bash
# Verify API key is valid
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://fhir.hospital.com/Patient/test-id
# Check token expiry
# Refresh token if needed
```
### FHIR Server Compatibility
Some common FHIR servers:
- **Azure Health Data Services**: FHIR R4
- **Cerner**: FHIR R4 (with extensions)
- **Epic**: FHIR R4 (limited)
- **InterSystems**: FHIR R3/R4
- **HAPI FHIR**: Full FHIR support
Verify server's FHIR version:
```bash
curl https://fhir.hospital.com/metadata
```
---
## Integration with Main App
### Add Patient Context to Chat
```python
# In app_phase2.py
if st.session_state.get("patient_id"):
manager = EHRIntegrationManager(ehr_fhir_url, api_key)
patient_data = manager.sync_patient_data(patient_id)
# Use in chat context
context = f"""
Patient: {patient_data['patient']['name']}
Conditions: {', '.join([c['code']['text'] for c in patient_data['conditions']])}
"""
# Include in LLM prompt
qa = RetrievalQA.from_chain_type(
llm=AzureOpenAI(),
chain_type="stuff",
retriever=vector_db.as_retriever(),
return_source_documents=True,
)
response = qa.run(f"{context}\n\nQuestion: {user_input}")
```
### Save Assessments Back to EHR
```python
# After nursing assessment
assessment_observation = builder.build_observation(
patient_id=st.session_state.patient_id,
code="84811-6", # Nursing assessment
value="Assessment complete",
unit="text"
)
obs_id = manager.send_observation_to_ehr(
st.session_state.patient_id,
assessment_observation
)
st.success(f"Assessment saved to EHR: {obs_id}")
```
---
## Performance Optimization
### Caching
```python
import streamlit as st
from functools import lru_cache
@st.cache_data(ttl=3600)
def get_patient_data(patient_id):
return manager.sync_patient_data(patient_id)
```
### Batch Operations
```python
# Sync multiple patients
patient_ids = ["123", "456", "789"]
for patient_id in patient_ids:
patient_data = manager.sync_patient_data(patient_id)
# Process...
```
### Pagination
```python
# Most FHIR servers support _count and _offset
url = f"{self.base_url}/Observation?subject=Patient/{patient_id}&_count=100&_offset=0"
```
---
## Next Steps
1. **Get FHIR server credentials** from your EHR vendor
2. **Test connection** to FHIR server
3. **Configure patient sync** frequency
4. **Implement UI** for patient selection
5. **Add audit logging** for all data access
6. **Deploy to staging** and test with real data
7. **Proceed to Phase 2.4** - Mobile App
---
## Files Created/Modified
**New Files:**
- `ehr_integration.py` (400+ lines)
**Integration Points:**
- Update `app_phase2.py` for patient selection
- Add `save_patient_record()` to database.py
- Update requirements.txt with fhir-parser
**Documentation:**
- `PHASE2_FHIR.md` (this file)
---
## References
- [FHIR Specification](http://hl7.org/fhir/R4/)
- [HL7 v2 Reference](http://www.hl7.org/implement/standards/product_brief.cfm?product_id=20)
- [SMART on FHIR](http://docs.smarthealthit.org/)
- [Azure Health Data Services](https://learn.microsoft.com/en-us/azure/healthcare-apis/)
---
*Phase 2.3 Implementation - November 29, 2025*
|