Open-source FHIR Server to support patient- and clinician-facing apps.
Still highly experimental, but has limited support for:
- GET, POST, and PUT resources
transaction
(POST a bundle of resources)- Search resources based on FHIR's defined search params
- Download and install Grails 2.3.5
- Install Postgres 9.1+ (locally or use a remote service)
- Oracle Java 7 JDK (not JRE)
$ git clone https://github.com/jmandel/smart-on-fhir
$ cd smart-on-fhir
Ensure that /etc/postgresql/9.1/main/pg_hba.conf
contains a line like:
local all all md5
(If you have local all all peer
, for excample, peer
with md5
.)
$ sudo -u postgres -i
postgres@$ createuser -R -P -S -D fhir
[at password prompt: fhir]
postgres@$ createuser -R -P -S -D fhir
postgres@$ createdb -O fhir fhir
postgres@$ logout
$ grails compile
$ grails -DnoTomcat=true run-script scripts/CreateDatabase.groovy
$ grails run-app
Key settings files are:
- Turn authentication or off with
fhir.oauth.enabled
:true | false
- Configure authentication with
fhir.oauth
- Configure your Postgres
dataSource
Add new data to the server via HTTP PUT or POST. For example, with default authentication settings and a server running at http://localhost:8080, you can add a new Diagnostic Order via:
curl 'http://localhost:8080/DiagnosticOrder/example' \
-X PUT \
-H 'Authorization: Basic Y2xpZW50OnNlY3JldA=='\
-H 'Content-Type: text/xml' \
--data @grails-app/conf/examples/diagnosticorder.xml
And then you can retrieve a feed of diagnostic orders via:
curl 'http://localhost:8080/DiagnosticOrder' \
-H 'Authorization: Basic Y2xpZW50OnNlY3JldA=='
or fetch a single resource as JSON via:
curl 'http://localhost:8080/DiagnosticOrder/example' \
-H 'Authorization: Basic Y2xpZW50OnNlY3JldA==' \
-H 'Accept: application/json'
You can load sample data from SMART's Sample Patients:
$ sudo apt-get install python-jinja2
$ git clone --recursive https://github.com/chb/smart_sample_patients
$ cd smart_sample_patients/bin
$ git checkout fhir
$ python generate.py --write-fhir ../generated-data
$ ls ../generated-data # a bunch of XML files
cd ../generated
for i in *.xml; do
curl 'http://localhost:8080/?'
-H 'Content-Type: text/xml'
--data-binary @$i;
done
There's very rudimentary support for adding C-CDA documents to the server, with a client-side loader script. The loader will:
- Store the raw content of your C-CDA
- Create a FHIR DocumentReference for your C-CDA, with a
location
pointing to the raw content. - Create an empty patient if needed
Here's how to invoke it (note the awkward use of environment variables to pass arguments):
BASE_URL="http://localhost:8080" \
CLIENT_ID=client \
CLIENT_SECRET=secret \
PATIENT_ID="1234" \
CCDA="grails-app/conf/examples/ccda.xml"\
grails run-script scripts/LoadCCDA.groovy
To load a collection of >600 C-CDA documents (and a FHIR DocumentReference
for each), you can do:
cd load-emerge-patients
git clone https://github.com/chb/sample_ccdas
./gradlew -PemergeDir=sample_ccdas/EMERGE/ -PfhirBase="http://localhost:8080" loadPatients
And load a single patient with id of example
:
./gradlew -PemergeDir=../grails-app/conf/examples -PfhirBase="http://localhost:8080" loadPatients