Empi 57 filter out inactive person (#1903)
* begin with failing test * test passes * pre-review cleanup * little fix * fix intermittent
This commit is contained in:
parent
954730d485
commit
82b4864d79
|
@ -93,8 +93,9 @@ public class EmpiPersonFindingSvc {
|
||||||
List<CanonicalEID> eidFromResource = myEIDHelper.getExternalEid(theBaseResource);
|
List<CanonicalEID> eidFromResource = myEIDHelper.getExternalEid(theBaseResource);
|
||||||
if (!eidFromResource.isEmpty()) {
|
if (!eidFromResource.isEmpty()) {
|
||||||
for (CanonicalEID eid : eidFromResource) {
|
for (CanonicalEID eid : eidFromResource) {
|
||||||
IBaseResource foundPerson = myEmpiResourceDaoSvc.searchPersonByEid(eid.getValue());
|
Optional<IAnyResource> oFoundPerson = myEmpiResourceDaoSvc.searchPersonByEid(eid.getValue());
|
||||||
if (foundPerson != null) {
|
if (oFoundPerson.isPresent()) {
|
||||||
|
IAnyResource foundPerson = oFoundPerson.get();
|
||||||
Long pidOrNull = myIdHelperService.getPidOrNull(foundPerson);
|
Long pidOrNull = myIdHelperService.getPidOrNull(foundPerson);
|
||||||
MatchedPersonCandidate mpc = new MatchedPersonCandidate(new ResourcePersistentId(pidOrNull), EmpiMatchResultEnum.MATCH);
|
MatchedPersonCandidate mpc = new MatchedPersonCandidate(new ResourcePersistentId(pidOrNull), EmpiMatchResultEnum.MATCH);
|
||||||
ourLog.debug("Matched {} by EID {}", foundPerson.getIdElement(), eid);
|
ourLog.debug("Matched {} by EID {}", foundPerson.getIdElement(), eid);
|
||||||
|
|
|
@ -20,7 +20,9 @@ package ca.uhn.fhir.jpa.empi.svc;
|
||||||
* #L%
|
* #L%
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import ca.uhn.fhir.empi.api.EmpiConstants;
|
||||||
import ca.uhn.fhir.empi.api.IEmpiSettings;
|
import ca.uhn.fhir.empi.api.IEmpiSettings;
|
||||||
|
import ca.uhn.fhir.empi.util.EmpiUtil;
|
||||||
import ca.uhn.fhir.jpa.api.dao.DaoRegistry;
|
import ca.uhn.fhir.jpa.api.dao.DaoRegistry;
|
||||||
import ca.uhn.fhir.jpa.api.dao.IFhirResourceDao;
|
import ca.uhn.fhir.jpa.api.dao.IFhirResourceDao;
|
||||||
import ca.uhn.fhir.jpa.api.model.DaoMethodOutcome;
|
import ca.uhn.fhir.jpa.api.model.DaoMethodOutcome;
|
||||||
|
@ -28,6 +30,7 @@ import ca.uhn.fhir.jpa.searchparam.SearchParameterMap;
|
||||||
import ca.uhn.fhir.rest.api.server.IBundleProvider;
|
import ca.uhn.fhir.rest.api.server.IBundleProvider;
|
||||||
import ca.uhn.fhir.rest.api.server.storage.ResourcePersistentId;
|
import ca.uhn.fhir.rest.api.server.storage.ResourcePersistentId;
|
||||||
import ca.uhn.fhir.rest.param.TokenParam;
|
import ca.uhn.fhir.rest.param.TokenParam;
|
||||||
|
import ca.uhn.fhir.rest.server.exceptions.InternalErrorException;
|
||||||
import org.hl7.fhir.instance.model.api.IAnyResource;
|
import org.hl7.fhir.instance.model.api.IAnyResource;
|
||||||
import org.hl7.fhir.instance.model.api.IBaseResource;
|
import org.hl7.fhir.instance.model.api.IBaseResource;
|
||||||
import org.hl7.fhir.instance.model.api.IIdType;
|
import org.hl7.fhir.instance.model.api.IIdType;
|
||||||
|
@ -35,9 +38,13 @@ import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import javax.annotation.PostConstruct;
|
import javax.annotation.PostConstruct;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Optional;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class EmpiResourceDaoSvc {
|
public class EmpiResourceDaoSvc {
|
||||||
|
private static final int MAX_MATCHING_PERSONS = 1000;
|
||||||
@Autowired
|
@Autowired
|
||||||
DaoRegistry myDaoRegistry;
|
DaoRegistry myDaoRegistry;
|
||||||
@Autowired
|
@Autowired
|
||||||
|
@ -74,16 +81,33 @@ public class EmpiResourceDaoSvc {
|
||||||
return (IAnyResource) myPersonDao.readByPid(thePersonPid);
|
return (IAnyResource) myPersonDao.readByPid(thePersonPid);
|
||||||
}
|
}
|
||||||
|
|
||||||
public IAnyResource searchPersonByEid(String theEidFromResource) {
|
public Optional<IAnyResource> searchPersonByEid(String theEid) {
|
||||||
SearchParameterMap map = new SearchParameterMap();
|
SearchParameterMap map = new SearchParameterMap();
|
||||||
map.setLoadSynchronous(true);
|
map.setLoadSynchronous(true);
|
||||||
map.add("identifier", new TokenParam(myEmpiConfig.getEmpiRules().getEnterpriseEIDSystem(), theEidFromResource));
|
map.add("identifier", new TokenParam(myEmpiConfig.getEmpiRules().getEnterpriseEIDSystem(), theEid));
|
||||||
|
map.add("active", new TokenParam("true"));
|
||||||
IBundleProvider search = myPersonDao.search(map);
|
IBundleProvider search = myPersonDao.search(map);
|
||||||
if (search.isEmpty()) {
|
|
||||||
return null;
|
// Could add the meta tag to the query, but it's probably more efficient to filter on it afterwards since in practice
|
||||||
|
// it will always be present.
|
||||||
|
List<IBaseResource> list = search.getResources(0, MAX_MATCHING_PERSONS).stream()
|
||||||
|
.filter(EmpiUtil::isEmpiManaged)
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
|
||||||
|
if (list.isEmpty()) {
|
||||||
|
return Optional.empty();
|
||||||
|
} else if (list.size() > 1) {
|
||||||
|
throw new InternalErrorException("Found more than one active " +
|
||||||
|
EmpiConstants.CODE_HAPI_EMPI_MANAGED +
|
||||||
|
" Person with EID " +
|
||||||
|
theEid +
|
||||||
|
": " +
|
||||||
|
list.get(0).getIdElement().getValue() +
|
||||||
|
", " +
|
||||||
|
list.get(1).getIdElement().getValue()
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
return (IAnyResource) search.getResources(0, 1).get(0);
|
return Optional.of((IAnyResource) list.get(0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -256,6 +256,11 @@ abstract public class BaseEmpiR4Test extends BaseJpaR4Test {
|
||||||
return thePatient;
|
return thePatient;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected Person addExternalEID(Person thePerson, String theEID) {
|
||||||
|
thePerson.addIdentifier().setSystem(myEmpiConfig.getEmpiRules().getEnterpriseEIDSystem()).setValue(theEID);
|
||||||
|
return thePerson;
|
||||||
|
}
|
||||||
|
|
||||||
protected Patient clearExternalEIDs(Patient thePatient) {
|
protected Patient clearExternalEIDs(Patient thePatient) {
|
||||||
thePatient.getIdentifier().removeIf(theIdentifier -> theIdentifier.getSystem().equalsIgnoreCase(myEmpiConfig.getEmpiRules().getEnterpriseEIDSystem()));
|
thePatient.getIdentifier().removeIf(theIdentifier -> theIdentifier.getSystem().equalsIgnoreCase(myEmpiConfig.getEmpiRules().getEnterpriseEIDSystem()));
|
||||||
return thePatient;
|
return thePatient;
|
||||||
|
|
|
@ -12,8 +12,8 @@ import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
import static org.hamcrest.Matchers.is;
|
import static org.hamcrest.Matchers.is;
|
||||||
import static org.hamcrest.Matchers.notNullValue;
|
import static org.hamcrest.Matchers.notNullValue;
|
||||||
import static org.hamcrest.Matchers.nullValue;
|
import static org.hamcrest.Matchers.nullValue;
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertNotEquals;
|
import static org.junit.Assert.assertNotEquals;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
public class EmpiLinkDaoSvcTest extends BaseEmpiR4Test {
|
public class EmpiLinkDaoSvcTest extends BaseEmpiR4Test {
|
||||||
@Autowired
|
@Autowired
|
||||||
|
@ -27,7 +27,7 @@ public class EmpiLinkDaoSvcTest extends BaseEmpiR4Test {
|
||||||
myEmpiLinkDaoSvc.save(empiLink);
|
myEmpiLinkDaoSvc.save(empiLink);
|
||||||
assertThat(empiLink.getCreated(), is(notNullValue()));
|
assertThat(empiLink.getCreated(), is(notNullValue()));
|
||||||
assertThat(empiLink.getUpdated(), is(notNullValue()));
|
assertThat(empiLink.getUpdated(), is(notNullValue()));
|
||||||
assertEquals(empiLink.getCreated(), empiLink.getUpdated());
|
assertTrue(empiLink.getUpdated().getTime() - empiLink.getCreated().getTime() < 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
package ca.uhn.fhir.jpa.empi.svc;
|
package ca.uhn.fhir.jpa.empi.svc;
|
||||||
|
|
||||||
import ca.uhn.fhir.empi.api.EmpiConstants;
|
import ca.uhn.fhir.empi.api.EmpiConstants;
|
||||||
import ca.uhn.fhir.empi.api.IEmpiLinkSvc;
|
|
||||||
import ca.uhn.fhir.empi.model.CanonicalEID;
|
import ca.uhn.fhir.empi.model.CanonicalEID;
|
||||||
import ca.uhn.fhir.empi.util.EIDHelper;
|
import ca.uhn.fhir.empi.util.EIDHelper;
|
||||||
import ca.uhn.fhir.empi.util.PersonHelper;
|
|
||||||
import ca.uhn.fhir.jpa.empi.BaseEmpiR4Test;
|
import ca.uhn.fhir.jpa.empi.BaseEmpiR4Test;
|
||||||
import ca.uhn.fhir.jpa.entity.EmpiLink;
|
import ca.uhn.fhir.jpa.entity.EmpiLink;
|
||||||
import org.hl7.fhir.r4.model.Identifier;
|
import org.hl7.fhir.r4.model.Identifier;
|
||||||
import org.hl7.fhir.r4.model.Patient;
|
import org.hl7.fhir.r4.model.Patient;
|
||||||
import org.hl7.fhir.r4.model.Person;
|
import org.hl7.fhir.r4.model.Person;
|
||||||
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
@ -33,12 +32,12 @@ import static org.slf4j.LoggerFactory.getLogger;
|
||||||
public class EmpiMatchLinkSvcMultipleEidModeTest extends BaseEmpiR4Test {
|
public class EmpiMatchLinkSvcMultipleEidModeTest extends BaseEmpiR4Test {
|
||||||
private static final Logger ourLog = getLogger(EmpiMatchLinkSvcMultipleEidModeTest.class);
|
private static final Logger ourLog = getLogger(EmpiMatchLinkSvcMultipleEidModeTest.class);
|
||||||
@Autowired
|
@Autowired
|
||||||
IEmpiLinkSvc myEmpiLinkSvc;
|
|
||||||
@Autowired
|
|
||||||
private EIDHelper myEidHelper;
|
private EIDHelper myEidHelper;
|
||||||
@Autowired
|
|
||||||
private PersonHelper myPersonHelper;
|
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void before() {
|
||||||
|
super.loadEmpiSearchParameters();
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testIncomingPatientWithEIDThatMatchesPersonWithHapiEidAddsExternalEidsToPerson() {
|
public void testIncomingPatientWithEIDThatMatchesPersonWithHapiEidAddsExternalEidsToPerson() {
|
||||||
|
|
|
@ -0,0 +1,52 @@
|
||||||
|
package ca.uhn.fhir.jpa.empi.svc;
|
||||||
|
|
||||||
|
import ca.uhn.fhir.jpa.empi.BaseEmpiR4Test;
|
||||||
|
import org.hl7.fhir.instance.model.api.IAnyResource;
|
||||||
|
import org.hl7.fhir.r4.model.Person;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
import static org.hamcrest.Matchers.is;
|
||||||
|
import static org.junit.Assert.assertThat;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
|
public class EmpiResourceDaoSvcTest extends BaseEmpiR4Test {
|
||||||
|
private static final String TEST_EID = "TEST_EID";
|
||||||
|
@Autowired
|
||||||
|
EmpiResourceDaoSvc myResourceDaoSvc;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void before() {
|
||||||
|
super.loadEmpiSearchParameters();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSearchPersonByEidExcludesInactive() {
|
||||||
|
Person goodPerson = addExternalEID(createPerson(), TEST_EID);
|
||||||
|
myPersonDao.update(goodPerson);
|
||||||
|
|
||||||
|
Person badPerson = addExternalEID(createPerson(), TEST_EID);
|
||||||
|
badPerson.setActive(false);
|
||||||
|
myPersonDao.update(badPerson);
|
||||||
|
|
||||||
|
Optional<IAnyResource> foundPerson = myResourceDaoSvc.searchPersonByEid(TEST_EID);
|
||||||
|
assertTrue(foundPerson.isPresent());
|
||||||
|
assertThat(foundPerson.get().getIdElement().toUnqualifiedVersionless().getValue(), is(goodPerson.getIdElement().toUnqualifiedVersionless().getValue()));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSearchPersonByEidExcludesNonEmpiManaged() {
|
||||||
|
Person goodPerson = addExternalEID(createPerson(), TEST_EID);
|
||||||
|
myPersonDao.update(goodPerson);
|
||||||
|
|
||||||
|
Person badPerson = addExternalEID(createPerson(new Person(), false), TEST_EID);
|
||||||
|
myPersonDao.update(badPerson);
|
||||||
|
|
||||||
|
Optional<IAnyResource> foundPerson = myResourceDaoSvc.searchPersonByEid(TEST_EID);
|
||||||
|
assertTrue(foundPerson.isPresent());
|
||||||
|
assertThat(foundPerson.get().getIdElement().toUnqualifiedVersionless().getValue(), is(goodPerson.getIdElement().toUnqualifiedVersionless().getValue()));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue