另外一篇文章:SMART on FHIR – adding OAuth2英文版
另外一篇文章:SMART on FHIR – adding OAuth2中文版
第七届connectathon眼看着就要开始了, 之前的一篇里我们讨论了其中第一个场景(Patient的访问),其中利用一些开源库进行了简单的实现(btw 你完全可以不使用这些开源框架,使用自己熟悉的平台和编程语言即可).
这篇主要探讨一下第三个场景如何实现SMART on FHIR. 对于这个场景具体的描述请参考7thConnectathon_tracks场景说明 – 其核心是构建一个标准,不同的独立开发APP/应用程序能够安全的访问存储在任何支持这种标准的服务器上的数据-电子病历、患者门户、区域平台相当于这里的应用程序,而类如苹果的HealthKit就是服务器,而苹果定义的HealthKit的接口就是我们所说的标准,这个比方打的不太恰当,但大致上是这么个意思。
第一步,我们先实现一个简单的服务器,主要是参考Smart Server快速入门, 如需深入了解,请细读该文档. 这篇文章中的服务器没有考虑安全性,后续的SMART on FHIR adding OAuth2中会详细介绍如何添加安全性.
这里假设我们的服务器是一个电子病历系统, 用户可以通过SMART团队所开发的儿童成长曲线的APP来访问其中的数据.
最简单的做法,比如在我们的电子病历系统的界面上添加一个按钮“查看儿童成长曲线”.当用户点击该按钮:
在这篇里面,我们要做如下内容:
HTML页面很简单,加入如下的Jquery代码即可。 其他的内容需要大家自己动手。
$(document).ready(function(){
//the url to launch the app (hardcoded patientID, and local server)
var url = "https://fhir.smartplatforms.org/apps/growth-chart/launch.html?";
url += "fhirServiceUrl=http://localhost:8080/fhir";
url += "&patientId=100";
//var iframe = ""; // this line should contain the html for an iframe, if wordpress would allow it...
//the jQuery handler to create an iFrame and launch the app in it
$("#launchApp").on('click',function(){
//$('#launchFrameDiv').append(iframe);
$("#launchIframe").attr("src",url);
})
});
服务器端的话稍微要复杂一些。这里我们使用HAPI开源库 和Tomcat服务器.IDE的话选IntelliJ IDEA IDE.
利用HAPI构建服务器端,首先要为你所支持的每种资源定义一个resource provider , 然后利用 server class来发布服务 ;.
Patient Provider如下:
public class PatientResourceProvider implements IResourceProvider {
//return a single Patient by ID
@Read()
public Patient getResourceById(@IdParam IdDt theId) {
Patient patient = new Patient();
Calendar cal = Calendar.getInstance();
cal.add(Calendar.YEAR, -18); //18 years old
patient.setBirthDate(new DateTimeDt(cal.getTime()));
patient.addName().addFamily("Power");
patient.getName().get(0).addGiven("Cold");
patient.setGender(AdministrativeGenderCodesEnum.M);
return patient;
}
}
为了简单起见,这里的赋值都是硬编码的形式,当然你可以使用数据库来set get.
Observation Provider如下:
public class ObservationResourceProvider implements IResourceProvider {
@Search()
public List<Observation> getObservationBySubject(@RequiredParam(name = Observation.SP_SUBJECT) StringDt theSubject,
@RequiredParam(name = Observation.SP_NAME) TokenOrListParam theObsNames) {
List<Observation> lstObservations = new ArrayList<Observation>();
//emulates calling an existing non-FHIR REST service and getting a JSON object back...
//we'd probably pass across the theObsNames to only return the list that we want
InputStream is = null;
try {
URL url = new URL("http://localhost:4001/dataplatform/obs/"+theSubject);
URLConnection conn = url.openConnection();
conn.connect();
is = conn.getInputStream();
JsonReader rdr = Json.createReader(is);
JsonObject obj = rdr.readObject();
//assume that the json structure is {data[{id:,unit:,code:,value:,date: }]}
JsonArray results = obj.getJsonArray("data");
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
for (JsonObject result : results.getValuesAs(JsonObject.class)) {
//get the basic data for the Observation
String id = result.getJsonString("id").getString();
String unit = result.getJsonString("unit").getString();
String code = result.getJsonString("code").getString();
String display = result.getJsonString("display").getString();
double value = result.getJsonNumber("value").doubleValue();
Date date = format.parse(result.getJsonString("date").getString());
//create an Observation resource
Observation obs = new Observation();
obs.setId(id);
obs.setApplies(new DateTimeDt(date));
obs.setName(new CodeableConceptDt("http://loinc.org", code));
QuantityDt quantityDt = new QuantityDt(value).setUnits(unit).setSystem("http://unitsofmeasure.org").setCode(unit);
obs.setValue(quantityDt);
obs.setStatus(ObservationStatusEnum.FINAL);
obs.setReliability(ObservationReliabilityEnum.OK);
//the text...
obs.getText().setDiv(result.getJsonString("date").getString() + " " + display + " " + value);
obs.getText().setStatus(NarrativeStatusEnum.GENERATED);
//and add to the list...
lstObservations.add(obs);
}
} catch (Exception ex) {
System.out.println("Error during REST call " + ex.toString());
}
finally {
try {
if (is != null) {
is.close();
}
} catch (Exception ex){ //was going to throw an exception - but that seems to need to be in a try/catch loop, which seems to defeat the purpose...
System.out.println("Exception closing stream "+ ex.getMessage());
}
}
return lstObservations;
}
}
这个provider类似于一个代理,现有的FHIR服务器可能支持类似的功能,但接口不是FHIR形式的.对于系统的改造 大多数情况应该是这样的。
server servlet如下:
@WebServlet(urlPatterns= {"/fhir/*"}, displayName="FHIR Server")
public class OrionRestfulServlet extends RestfulServer {
public OrionRestfulServlet() {
List<IResourceProvider> resourceProviders = new ArrayList<IResourceProvider>();
resourceProviders.add(new ConditionResourceProvider(_myMongo));
resourceProviders.add(new ObservationResourceProvider(_myMongo));
resourceProviders.add(new PatientResourceProvider(_myMongo));
setResourceProviders(resourceProviders);
}
}
剩下的就只需要打成war包,发布到tomcat中去即可. 输入URL,点击按钮,即可查看到生长曲线图!
后续的例子我们会使用OAuth2来给服务器添加安全保护。