FHIR Client¶
fhir_client.py
FHIR client wrapper for connecting to HAPI FHIR server. Provides utility functions for creating and reading FHIR resources including Patient demographics and Communication (messaging).
FhirCommunicationError ¶
Bases: Exception
Raised when a FHIR Communication operation fails.
Source code in app/fhir_client.py
371 372 | |
get_fhir_client ¶
get_fhir_client()
Get configured FHIR client instance.
Returns:
| Name | Type | Description |
|---|---|---|
FHIRClient |
FHIRClient
|
Configured client connected to HAPI FHIR server. |
Raises:
| Type | Description |
|---|---|
FhirCommunicationError
|
If clinical services are disabled. |
Source code in app/fhir_client.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | |
add_avatar_gradient_extension ¶
add_avatar_gradient_extension(patient, gradient_index=None)
Add avatar gradient index extension to FHIR Patient.
Stores a single gradient index (0-29) which maps to predefined gradients in the frontend.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
patient
|
Patient
|
FHIR Patient resource instance. |
required |
gradient_index
|
int | None
|
Index of gradient (0-29), or None to generate random. |
None
|
Example
patient = Patient() add_avatar_gradient_extension(patient, gradient_index=5)
patient.extension now contains gradientIndex = 5¶
Source code in app/fhir_client.py
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 | |
create_fhir_patient ¶
create_fhir_patient(given_name, family_name, birth_date=None, gender=None, nhs_number=None, mrn=None, patient_id=None)
Create a new FHIR Patient resource.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
given_name
|
str
|
Patient's first/given name. |
required |
family_name
|
str
|
Patient's family/last name. |
required |
birth_date
|
str | None
|
Date of birth in YYYY-MM-DD format. |
None
|
gender
|
str | None
|
Gender (male, female, other, unknown). |
None
|
nhs_number
|
str | None
|
NHS number (10-digit UK national identifier). |
None
|
mrn
|
str | None
|
Medical Record Number (local hospital identifier). |
None
|
patient_id
|
str | None
|
Optional ID for the patient. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict[str, Any]
|
Created patient resource as dictionary. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If required fields are empty or invalid. |
Exception
|
If creation fails. |
Source code in app/fhir_client.py
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 | |
read_fhir_patient ¶
read_fhir_patient(patient_id)
Read a FHIR Patient resource by ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
patient_id
|
str
|
FHIR Patient resource ID. |
required |
Returns:
| Type | Description |
|---|---|
dict[str, Any] | None
|
dict | None: Patient resource as dictionary, or None if not found. |
Source code in app/fhir_client.py
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | |
delete_fhir_patient ¶
delete_fhir_patient(patient_id)
Delete a FHIR Patient resource by ID.
WARNING: This function is ONLY for development/testing purposes! It should NOT be exposed via API endpoints in production. Patient data should be soft-deleted (Patient.active = false) instead.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
patient_id
|
str
|
FHIR Patient resource ID to delete. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if deletion successful, False otherwise. |
Source code in app/fhir_client.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | |
list_fhir_patients ¶
list_fhir_patients()
List all FHIR Patient resources.
Returns:
| Type | Description |
|---|---|
list[dict[str, Any]]
|
list[dict]: List of patient resources as dictionaries. |
Source code in app/fhir_client.py
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | |
update_fhir_patient ¶
update_fhir_patient(patient_id, demographics)
Update a FHIR Patient resource with demographics data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
patient_id
|
str
|
FHIR Patient resource ID. |
required |
demographics
|
dict
|
Dictionary containing demographics fields: - given_name (str): First/given name - family_name (str): Family/last name - date_of_birth (str): ISO date string - sex (str): Gender (male|female|other|unknown) - address (dict): Address information - contact (dict): Contact information |
required |
Returns:
| Type | Description |
|---|---|
dict[str, Any] | None
|
dict | None: Updated patient resource as dictionary, or None if not found. |
Raises:
| Type | Description |
|---|---|
Exception
|
If update fails. |
Source code in app/fhir_client.py
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 | |
create_fhir_communication ¶
create_fhir_communication(*, conversation_id, patient_id, sender_display, sender_user_id, body, first_message_fhir_id=None, amends_fhir_id=None)
Create a FHIR Communication resource for a message.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
conversation_id
|
str
|
UUID grouping messages into a thread. |
required |
patient_id
|
str
|
FHIR Patient resource ID the conversation is about. |
required |
sender_display
|
str
|
Human-readable sender name. |
required |
sender_user_id
|
int
|
Auth DB user ID of the sender. |
required |
body
|
str
|
Message text content. |
required |
first_message_fhir_id
|
str | None
|
FHIR ID of the first message in the thread (for partOf linking). None for the first message. |
None
|
amends_fhir_id
|
str | None
|
FHIR ID of a message this one amends. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict[str, Any]
|
Created Communication resource as JSON dict. |
Raises:
| Type | Description |
|---|---|
FhirCommunicationError
|
If creation fails. |
Source code in app/fhir_client.py
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 | |
datetime_module_now_utc_iso ¶
datetime_module_now_utc_iso()
Return current UTC time as ISO-8601 string.
Source code in app/fhir_client.py
461 462 463 464 465 | |