Search in sources :

Example 6 with CpClientException

use of org.hl7.gravity.refimpl.sdohexchange.service.CpService.CpClientException in project Gravity-SDOH-Exchange-RI by FHIR.

the class TaskService method newTask.

public String newTask(NewTaskRequestDto taskRequest, UserDto user) {
    Assert.notNull(SmartOnFhirContext.get().getPatient(), "Patient id cannot be null.");
    TaskPrepareBundleFactory taskPrepareBundleFactory = new TaskPrepareBundleFactory(SmartOnFhirContext.get().getPatient(), user.getId(), taskRequest.getPerformerId(), taskRequest.getConsent(), taskRequest.getConditionIds(), taskRequest.getGoalIds());
    Bundle taskRelatedResources = ehrClient.transaction().withBundle(taskPrepareBundleFactory.createPrepareBundle()).execute();
    TaskPrepareInfoHolder taskPrepareInfoHolder = new TaskPrepareBundleExtractor().extract(taskRelatedResources);
    TaskBundleFactory taskBundleFactory = new TaskBundleFactory();
    taskBundleFactory.setName(taskRequest.getName());
    taskBundleFactory.setPatient(taskPrepareInfoHolder.getPatient());
    taskBundleFactory.setCategory(sdohMappings.findCategoryCoding(taskRequest.getCategory()));
    taskBundleFactory.setRequestCode(sdohMappings.findResourceCoding(ServiceRequest.class, taskRequest.getCode()));
    taskBundleFactory.setPriority(taskRequest.getPriority());
    taskBundleFactory.setOccurrence(taskRequest.getOccurrence());
    taskBundleFactory.setPerformer(taskPrepareInfoHolder.getPerformerOrganization());
    taskBundleFactory.setRequester(taskPrepareInfoHolder.getPerformer());
    taskBundleFactory.setComment(taskRequest.getComment());
    taskBundleFactory.setUser(user);
    taskBundleFactory.setConsent(taskPrepareInfoHolder.getConsent());
    taskBundleFactory.setConditions(taskPrepareInfoHolder.getConditions(taskRequest.getConditionIds()));
    taskBundleFactory.setGoals(taskPrepareInfoHolder.getGoals(taskRequest.getGoalIds()));
    Bundle taskCreateBundle = ehrClient.transaction().withBundle(taskBundleFactory.createBundle()).execute();
    IdType taskId = FhirUtil.getFromResponseBundle(taskCreateBundle, Task.class);
    TaskInfoHolder createInfo = new TaskInfoBundleExtractor().extract(getTask(taskId.getIdPart(), Task.INCLUDE_FOCUS)).stream().findFirst().orElseThrow(() -> new TaskCreateException("Task/ServiceRequest are not found in the response bundle."));
    Task task = createInfo.getTask();
    try {
        cpService.create(task, taskPrepareInfoHolder.getEndpoint());
    } catch (CpClientException exc) {
        log.warn("Task '{}' creation failed at CP. Failing a local Task and related ServiceRequest.", task.getIdElement().getIdPart(), exc);
        ehrClient.transaction().withBundle(new TaskFailBundleFactory(task, createInfo.getServiceRequest(), exc.getMessage()).createFailBundle()).execute();
    }
    return task.getIdElement().getIdPart();
}
Also used : TaskInfoHolder(org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TaskInfoBundleExtractor.TaskInfoHolder) Task(org.hl7.fhir.r4.model.Task) TaskPrepareBundleExtractor(org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TaskPrepareBundleExtractor) TaskPrepareBundleFactory(org.hl7.gravity.refimpl.sdohexchange.fhir.factory.TaskPrepareBundleFactory) IBaseBundle(org.hl7.fhir.instance.model.api.IBaseBundle) Bundle(org.hl7.fhir.r4.model.Bundle) TaskPrepareInfoHolder(org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TaskPrepareBundleExtractor.TaskPrepareInfoHolder) TaskCreateException(org.hl7.gravity.refimpl.sdohexchange.exception.TaskCreateException) ServiceRequest(org.hl7.fhir.r4.model.ServiceRequest) TaskBundleFactory(org.hl7.gravity.refimpl.sdohexchange.fhir.factory.TaskBundleFactory) IdType(org.hl7.fhir.r4.model.IdType) TaskFailBundleFactory(org.hl7.gravity.refimpl.sdohexchange.fhir.factory.TaskFailBundleFactory) CpClientException(org.hl7.gravity.refimpl.sdohexchange.service.CpService.CpClientException) TaskInfoBundleExtractor(org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TaskInfoBundleExtractor)

Example 7 with CpClientException

use of org.hl7.gravity.refimpl.sdohexchange.service.CpService.CpClientException in project Gravity-SDOH-Exchange-RI by FHIR.

the class CpService method sync.

public void sync(final Task ehrTask, final ServiceRequest ehrServiceRequest, final Endpoint endpoint) throws CpClientException {
    Bundle cpUpdateBundle = new Bundle();
    cpUpdateBundle.setType(BundleType.TRANSACTION);
    TaskInfoHolder cpTaskInfo = read(ehrTask.getIdElement().getIdPart(), endpoint);
    Task cpTask = cpTaskInfo.getTask();
    cpTask.setStatus(ehrTask.getStatus());
    cpTask.setStatusReason(ehrTask.getStatusReason());
    cpTask.setLastModifiedElement(ehrTask.getLastModifiedElement());
    cpTask.setNote(ehrTask.getNote());
    cpUpdateBundle.addEntry(FhirUtil.createPutEntry(cpTask));
    ServiceRequest cpServiceRequest = cpTaskInfo.getServiceRequest();
    if (!ehrServiceRequest.getStatus().equals(cpServiceRequest.getStatus())) {
        cpServiceRequest.setStatus(ehrServiceRequest.getStatus());
        cpUpdateBundle.addEntry(FhirUtil.createPutEntry(cpServiceRequest));
    }
    transaction(cpUpdateBundle, endpoint);
}
Also used : TaskInfoHolder(org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TaskInfoBundleExtractor.TaskInfoHolder) Task(org.hl7.fhir.r4.model.Task) Bundle(org.hl7.fhir.r4.model.Bundle) ServiceRequest(org.hl7.fhir.r4.model.ServiceRequest)

Aggregations

Task (org.hl7.fhir.r4.model.Task)7 Bundle (org.hl7.fhir.r4.model.Bundle)6 ServiceRequest (org.hl7.fhir.r4.model.ServiceRequest)4 TaskInfoHolder (org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TaskInfoBundleExtractor.TaskInfoHolder)3 CpClientException (org.hl7.gravity.refimpl.sdohexchange.service.CpService.CpClientException)3 BaseServerResponseException (ca.uhn.fhir.rest.server.exceptions.BaseServerResponseException)2 IBaseBundle (org.hl7.fhir.instance.model.api.IBaseBundle)2 Endpoint (org.hl7.fhir.r4.model.Endpoint)2 TaskInfoBundleExtractor (org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TaskInfoBundleExtractor)2 TaskFailBundleFactory (org.hl7.gravity.refimpl.sdohexchange.fhir.factory.TaskFailBundleFactory)2 TokenClientParam (ca.uhn.fhir.rest.gclient.TokenClientParam)1 IdType (org.hl7.fhir.r4.model.IdType)1 Organization (org.hl7.fhir.r4.model.Organization)1 TaskCreateException (org.hl7.gravity.refimpl.sdohexchange.exception.TaskCreateException)1 TaskPrepareBundleExtractor (org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TaskPrepareBundleExtractor)1 TaskPrepareInfoHolder (org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TaskPrepareBundleExtractor.TaskPrepareInfoHolder)1 TaskUpdateBundleExtractor (org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TaskUpdateBundleExtractor)1 TaskUpdateInfoHolder (org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TaskUpdateBundleExtractor.TaskUpdateInfoHolder)1 TasksPollingBundleExtractor (org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TasksPollingBundleExtractor)1 TaskPollingUpdateException (org.hl7.gravity.refimpl.sdohexchange.fhir.extract.TasksPollingBundleExtractor.TaskPollingUpdateException)1