use of org.openehealth.ipf.commons.ihe.xds.core.metadata.CXiAssigningAuthority in project MobileAccessGateway by i4mi.
the class BaseQueryResponseConverter method transform.
/**
* XDS ReferenceId -> FHIR Reference
* @param ref
* @return
*/
public Reference transform(ReferenceId ref) {
String id = ref.getId();
CXiAssigningAuthority authority = ref.getAssigningAuthority();
// TODO handle authority not given
if (authority != null) {
return new Reference().setIdentifier(new Identifier().setValue(id).setSystem(getSystem(authority.getUniversalId())));
} else {
return new Reference().setIdentifier(new Identifier().setValue(id));
}
}
use of org.openehealth.ipf.commons.ihe.xds.core.metadata.CXiAssigningAuthority in project MobileAccessGateway by i4mi.
the class Iti65RequestConverter method processDocumentReference.
/**
* ITI-65: process DocumentReference resource from Bundle
* @param reference
* @param entry
*/
private void processDocumentReference(DocumentReference reference, DocumentEntry entry) {
entry.assignEntryUuid();
reference.setId(entry.getEntryUuid());
Identifier masterIdentifier = reference.getMasterIdentifier();
entry.setUniqueId(noPrefix(masterIdentifier.getValue()));
// limitedMetadata -> meta.profile canonical [0..*]
// No action
// availabilityStatus -> status code {DocumentReferenceStatus} [1..1]
// approved -> status=current
// deprecated -> status=superseded
// Other status values are allowed but are not defined in this mapping to XDS.
DocumentReferenceStatus status = reference.getStatus();
switch(status) {
case CURRENT:
entry.setAvailabilityStatus(AvailabilityStatus.APPROVED);
break;
case SUPERSEDED:
entry.setAvailabilityStatus(AvailabilityStatus.DEPRECATED);
break;
default:
throw new InvalidRequestException("Unknown document status");
}
// contentTypeCode -> type CodeableConcept [0..1]
CodeableConcept type = reference.getType();
entry.setTypeCode(transform(type));
// classCode -> category CodeableConcept [0..*]
List<CodeableConcept> category = reference.getCategory();
entry.setClassCode(transform(category));
// patientId -> subject Reference(Patient| Practitioner| Group| Device) [0..1],
Reference subject = reference.getSubject();
entry.setPatientId(transformReferenceToIdentifiable(subject, reference));
// creationTime -> date instant [0..1]
entry.setCreationTime(timestampFromDate(reference.getDateElement()));
// PractitionerRole| Organization| Device| Patient| RelatedPerson) [0..*]
for (Reference authorRef : reference.getAuthor()) {
entry.getAuthors().add(transformAuthor(authorRef, reference.getContained(), null));
}
if (reference.hasAuthenticator()) {
Reference authenticatorRef = reference.getAuthenticator();
Resource authenticator = findResource(authenticatorRef, reference.getContained());
if (authenticator instanceof Practitioner) {
entry.setLegalAuthenticator(transform((Practitioner) authenticator));
} else if (authenticator instanceof PractitionerRole) {
Practitioner practitioner = (Practitioner) findResource(((PractitionerRole) authenticator).getPractitioner(), reference.getContained());
if (practitioner != null)
entry.setLegalAuthenticator(transform(practitioner));
} else
throw new InvalidRequestException("No authenticator of type Organization supported.");
}
// title -> description string [0..1]
String title = reference.getDescription();
if (title != null)
entry.setTitle(localizedString(title));
// confidentialityCode -> securityLabel CodeableConcept [0..*] Note: This
// is NOT the DocumentReference.meta, as that holds the meta tags for the
// DocumentReference itself.
List<CodeableConcept> securityLabels = reference.getSecurityLabel();
transformCodeableConcepts(securityLabels, entry.getConfidentialityCodes());
// mimeType -> content.attachment.contentType [1..1] code [0..1]
DocumentReferenceContentComponent content = reference.getContentFirstRep();
if (content == null)
throw new InvalidRequestException("Missing content field in DocumentReference");
Attachment attachment = content.getAttachment();
if (attachment == null)
throw new InvalidRequestException("Missing attachment field in DocumentReference");
entry.setMimeType(attachment.getContentType());
// languageCode -> content.attachment.language code [0..1]
entry.setLanguageCode(attachment.getLanguage());
// size -> content.attachment.size integer [0..1] The size is calculated
if (attachment.hasSize())
entry.setSize((long) attachment.getSize());
// on the data prior to base64 encoding, if the data is base64 encoded.
// hash -> content.attachment.hash string [0..1]
byte[] hash = attachment.getHash();
if (hash != null)
entry.setHash(Hex.encodeHexString(hash));
// comments -> content.attachment.title string [0..1]
String comments = attachment.getTitle();
if (comments != null)
entry.setComments(localizedString(comments));
// creationTime -> content.attachment.creation dateTime [0..1]
if (attachment.hasCreation()) {
if (entry.getCreationTime() == null)
entry.setCreationTime(timestampFromDate(attachment.getCreationElement()));
else if (!timestampFromDate(attachment.getCreationElement()).equals(entry.getCreationTime()))
throw new InvalidRequestException("DocumentReference.date does not match attachment.creation element");
}
// formatCode -> content.format Coding [0..1]
Coding coding = content.getFormat();
entry.setFormatCode(transform(coding));
DocumentReferenceContextComponent context = reference.getContext();
// Instead: referenceIdList -> related.identifier
for (Reference ref : context.getRelated()) {
Identifiable refId = transformReferenceToIdentifiable(ref, reference);
if (refId != null) {
ReferenceId referenceId = new ReferenceId();
referenceId.setAssigningAuthority(new CXiAssigningAuthority(null, refId.getAssigningAuthority().getUniversalId(), refId.getAssigningAuthority().getUniversalIdType()));
referenceId.setId(refId.getId());
entry.getReferenceIdList().add(referenceId);
}
}
// Currently not mapped
/*for (Reference encounterRef : context.getEncounter()) {
ReferenceId referenceId = new ReferenceId();
Identifiable id = transformReferenceToIdentifiable(encounterRef, reference);
if (id != null) {
referenceId.setIdTypeCode(ReferenceId.ID_TYPE_ENCOUNTER_ID);
referenceId.setId(id.getId());
//referenceId.setAssigningAuthority(new CXiAid.getAssigningAuthority().getUniversalId());
entry.getReferenceIdList().add(referenceId );
}*/
// eventCodeList -> context.event CodeableConcept [0..*]
List<CodeableConcept> events = context.getEvent();
transformCodeableConcepts(events, entry.getEventCodeList());
// serviceStartTime serviceStopTime -> context.period Period [0..1]
Period period = context.getPeriod();
if (period != null) {
entry.setServiceStartTime(timestampFromDate(period.getStartElement()));
entry.setServiceStopTime(timestampFromDate(period.getEndElement()));
}
// healthcareFacilityTypeCode -> context.facilityType CodeableConcept
// [0..1]
entry.setHealthcareFacilityTypeCode(transformCodeableConcept(context.getFacilityType()));
// practiceSettingCode -> context.practiceSetting CodeableConcept [0..1]
entry.setPracticeSettingCode(transformCodeableConcept(context.getPracticeSetting()));
Extension originalRole = reference.getExtensionByUrl("http://fhir.ch/ig/ch-epr-mhealth/StructureDefinition/ch-ext-author-authorrole");
if (originalRole != null) {
if (originalRole.getValue() instanceof Coding) {
Coding value = (Coding) originalRole.getValue();
String system = noPrefix(value.getSystem());
String code = value.getCode();
entry.setExtraMetadata(Collections.singletonMap("urn:e-health-suisse:2020:originalProviderRole", Collections.singletonList(code + "^^^&" + system + "&ISO")));
}
}
// Patient.identifier.use element set to ‘usual’.
if (context.hasSourcePatientInfo()) {
entry.setSourcePatientId(transformReferenceToIdentifiable(context.getSourcePatientInfo(), reference));
entry.setSourcePatientInfo(transformReferenceToPatientInfo(context.getSourcePatientInfo(), reference));
}
}
Aggregations