use of net.geoprism.registry.action.ChangeRequestQuery in project geoprism-registry by terraframe.
the class ChangeRequestServiceTest method testUpdateGeoObjectTermCR_Verify.
@Request
private void testUpdateGeoObjectTermCR_Verify(String[] data) throws Exception {
final String attrName = FastTestDataset.AT_RELIGION.getAttributeName();
final String oldOid = data[1];
final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
sdf.setTimeZone(GeoRegistryUtil.SYSTEM_TIMEZONE);
final Date newStartDate = sdf.parse(NEW_START_DATE);
final Date newEndDate = sdf.parse(NEW_END_DATE);
ChangeRequestQuery crq = new ChangeRequestQuery(new QueryFactory());
Assert.assertEquals(1, crq.getCount());
ChangeRequest cr = crq.getIterator().next();
Assert.assertEquals(AllGovernanceStatus.ACCEPTED.name(), cr.getGovernanceStatus().name());
AbstractAction action = cr.getAllAction().next();
Assert.assertTrue(action instanceof UpdateAttributeAction);
Assert.assertEquals(FastTestDataset.CAMBODIA.getCode(), cr.getGeoObjectCode());
Assert.assertEquals(FastTestDataset.CAMBODIA.getGeoObjectType().getCode(), cr.getGeoObjectTypeCode());
Assert.assertEquals(FastTestDataset.ORG_CGOV.getCode(), cr.getOrganizationCode());
VertexServerGeoObject cambodia = (VertexServerGeoObject) FastTestDataset.CAMBODIA.getServerObject();
ValueOverTimeCollection votc = cambodia.getValuesOverTime(attrName);
Assert.assertEquals(1, votc.size());
ValueOverTime vot1 = votc.get(0);
Assert.assertNotNull(vot1.getOid());
Assert.assertEquals(oldOid, vot1.getOid());
Assert.assertEquals(newStartDate, vot1.getStartDate());
Assert.assertEquals(newEndDate, vot1.getEndDate());
String classyId = ((Classifier) cambodia.getValue(attrName, newStartDate)).getOid();
Assert.assertEquals(FastTestDataset.T_Islam.fetchClassifier().getOid(), classyId);
Assert.assertEquals(classyId, vot1.getValue());
}
use of net.geoprism.registry.action.ChangeRequestQuery in project geoprism-registry by terraframe.
the class CRAttributePatch method patchAllCRS.
private void patchAllCRS() {
ChangeRequestQuery crq = new ChangeRequestQuery(new QueryFactory());
logger.info("Updating [" + crq.getCount() + "] ChangeRequest records and patching in permissions info.");
OIterator<? extends ChangeRequest> it = crq.getIterator();
Outer: for (ChangeRequest cr : it) {
String orgCode = null;
String gotCode = null;
String gotTypeCode = null;
cr.appLock();
boolean hasInvalidAction = false;
OIterator<? extends AbstractAction> actionIt = cr.getAllAction();
SetParentAction setParent = null;
CreateGeoObjectAction createAction = null;
for (AbstractAction action : actionIt) {
if (action instanceof SetParentAction) {
SetParentAction spa = ((SetParentAction) action);
gotCode = spa.getChildCode();
gotTypeCode = spa.getChildTypeCode();
orgCode = Organization.getRootOrganizationCode(Universal.getByKey(gotTypeCode).getOwnerOid());
setParent = (SetParentAction) action;
} else if (action instanceof CreateGeoObjectAction) {
CreateGeoObjectAction create = ((CreateGeoObjectAction) action);
gotCode = GeoObjectOverTimeJsonAdapters.GeoObjectDeserializer.getCode(create.getGeoObjectJson());
gotTypeCode = GeoObjectOverTimeJsonAdapters.GeoObjectDeserializer.getTypeCode(create.getGeoObjectJson());
orgCode = Organization.getRootOrganizationCode(Universal.getByKey(gotTypeCode).getOwnerOid());
createAction = (CreateGeoObjectAction) action;
} else if (action instanceof UpdateGeoObjectAction) {
UpdateGeoObjectAction update = ((UpdateGeoObjectAction) action);
gotCode = GeoObjectOverTimeJsonAdapters.GeoObjectDeserializer.getCode(update.getGeoObjectJson());
gotTypeCode = GeoObjectOverTimeJsonAdapters.GeoObjectDeserializer.getTypeCode(update.getGeoObjectJson());
orgCode = Organization.getRootOrganizationCode(Universal.getByKey(gotTypeCode).getOwnerOid());
hasInvalidAction = true;
} else if (action instanceof UpdateAttributeAction) {
continue Outer;
} else {
throw new UnsupportedOperationException("Unexpected action type [" + action.getType() + "].");
}
}
if (setParent != null && createAction != null) {
createAction.appLock();
createAction.setParentJson(setParent.getJson());
createAction.apply();
setParent.delete();
} else if (setParent != null || createAction != null) {
// A set parent without a create (or vice versa)? This isn't supposed to exist
cr.clearApprovalStatus();
cr.addApprovalStatus(AllGovernanceStatus.INVALID);
}
cr.setOrganizationCode(orgCode);
cr.setGeoObjectCode(gotCode);
cr.setGeoObjectTypeCode(gotTypeCode);
if (cr.getGovernanceStatus().equals(AllGovernanceStatus.PENDING) && hasInvalidAction) {
cr.clearApprovalStatus();
cr.addApprovalStatus(AllGovernanceStatus.INVALID);
}
cr.apply();
}
}
use of net.geoprism.registry.action.ChangeRequestQuery in project geoprism-registry by terraframe.
the class ChangeRequestService method getAllRequests.
@SuppressWarnings({ "unchecked", "rawtypes" })
@Request(RequestType.SESSION)
public Page<ChangeRequest> getAllRequests(String sessionId, int pageSize, int pageNumber, String filter, String sort, String oid) {
ChangeRequestQuery query = new ChangeRequestQuery(new QueryFactory());
if (filter != null && filter.length() > 0 && !filter.equals("ALL")) {
query.WHERE(query.getApprovalStatus().containsAll(AllGovernanceStatus.valueOf(filter)));
}
filterQueryBasedOnPermissions(query);
if (oid != null && oid.length() > 0) {
pageNumber = this.findPageNumber(oid, query, pageSize);
}
query.restrictRows(pageSize, pageNumber);
if (sort != null && sort.length() > 0 && sort != "[]") {
JsonArray ja = JsonParser.parseString(sort).getAsJsonArray();
for (int i = 0; i < ja.size(); ++i) {
JsonObject jo = ja.get(i).getAsJsonObject();
boolean ascending = jo.get("ascending").getAsBoolean();
String attribute = jo.get("attribute").getAsString();
Selectable sel = query.get(attribute);
if (attribute.equals(ChangeRequest.GEOOBJECTLABEL) || attribute.equals(ChangeRequest.GEOOBJECTTYPELABEL)) {
sel = ((AttributeLocal) sel).localize();
} else if (attribute.equals(ChangeRequest.APPROVALSTATUS)) {
sel = query.getApprovalStatus().getEnumName();
}
query.ORDER_BY(sel, ascending ? SortOrder.ASC : SortOrder.DESC);
}
} else {
query.ORDER_BY_DESC(query.getCreateDate());
}
List<? extends ChangeRequest> list = query.getIterator().getAll();
for (ChangeRequest cr : list) {
if (!ServiceFactory.getMetadataCache().getGeoObjectType(cr.getGeoObjectTypeCode()).isPresent()) {
cr.lock();
cr.clearApprovalStatus();
cr.addApprovalStatus(AllGovernanceStatus.INVALID);
cr.apply();
}
}
return new Page(query.getCount(), pageNumber, pageSize, list);
}
use of net.geoprism.registry.action.ChangeRequestQuery in project geoprism-registry by terraframe.
the class ChangeRequestServiceTest method testUpdateGeoObjectCR_Verify.
@Request
private void testUpdateGeoObjectCR_Verify() {
ChangeRequestQuery crq = new ChangeRequestQuery(new QueryFactory());
Assert.assertEquals(1, crq.getCount());
ChangeRequest cr = crq.getIterator().next();
Assert.assertEquals(AllGovernanceStatus.PENDING.name(), cr.getGovernanceStatus().name());
AbstractAction action = cr.getAllAction().next();
Assert.assertTrue(action instanceof UpdateAttributeAction);
Assert.assertEquals(FastTestDataset.CAMBODIA.getCode(), cr.getGeoObjectCode());
Assert.assertEquals(FastTestDataset.CAMBODIA.getGeoObjectType().getCode(), cr.getGeoObjectTypeCode());
Assert.assertEquals(FastTestDataset.ORG_CGOV.getCode(), cr.getOrganizationCode());
}
use of net.geoprism.registry.action.ChangeRequestQuery in project geoprism-registry by terraframe.
the class ChangeRequestServiceTest method testCreateGeoObjectCR_Verify.
@Request
private void testCreateGeoObjectCR_Verify() {
ChangeRequestQuery crq = new ChangeRequestQuery(new QueryFactory());
Assert.assertEquals(1, crq.getCount());
ChangeRequest cr = crq.getIterator().next();
Assert.assertEquals(AllGovernanceStatus.PENDING.name(), cr.getGovernanceStatus().name());
AbstractAction action = cr.getAllAction().next();
Assert.assertTrue(action instanceof CreateGeoObjectAction);
Assert.assertEquals(TEST_NEW_PROVINCE.getCode(), cr.getGeoObjectCode());
Assert.assertEquals(TEST_NEW_PROVINCE.getGeoObjectType().getCode(), cr.getGeoObjectTypeCode());
Assert.assertEquals(FastTestDataset.ORG_CGOV.getCode(), cr.getOrganizationCode());
}
Aggregations