use of io.vertigo.vega.webservice.validation.DtObjectValidator in project vertigo by KleeGroup.
the class ValidatorWebServiceHandlerPlugin method validateParam.
private static void validateParam(final Object value, final UiMessageStack uiMessageStack, final WebServiceParam webServiceParam, final WebServiceCallContext routeContext) {
final Map<String, DtObject> contextKeyMap = new HashMap<>();
if (value instanceof UiObject) {
final UiObject<DtObject> uiObject = (UiObject<DtObject>) value;
final List<DtObjectValidator<DtObject>> dtObjectValidators = obtainDtObjectValidators(webServiceParam);
// Only authorized fields have already been checked (JsonConverterHandler)
final DtObject updatedDto = uiObject.mergeAndCheckInput(dtObjectValidators, uiMessageStack);
contextKeyMap.put(uiObject.getInputKey(), updatedDto);
routeContext.registerUpdatedDtObjects(webServiceParam, updatedDto, contextKeyMap);
} else if (value instanceof UiListDelta) {
final UiListDelta<DtObject> uiListDelta = (UiListDelta<DtObject>) value;
final List<DtObjectValidator<DtObject>> dtObjectValidators = obtainDtObjectValidators(webServiceParam);
// Only authorized fields have already been checked (JsonConverterHandler)
final DtList<DtObject> dtListCreates = mergeAndCheckInput(uiListDelta.getObjectType(), uiListDelta.getCreatesMap(), dtObjectValidators, uiMessageStack, contextKeyMap);
final DtList<DtObject> dtListUpdates = mergeAndCheckInput(uiListDelta.getObjectType(), uiListDelta.getUpdatesMap(), dtObjectValidators, uiMessageStack, contextKeyMap);
final DtList<DtObject> dtListDeletes = mergeAndCheckInput(uiListDelta.getObjectType(), uiListDelta.getDeletesMap(), dtObjectValidators, uiMessageStack, contextKeyMap);
final DtListDelta<DtObject> dtListDelta = new DtListDelta<>(dtListCreates, dtListUpdates, dtListDeletes);
routeContext.registerUpdatedDtObjects(webServiceParam, dtListDelta, contextKeyMap);
} else if (value instanceof UiListModifiable) {
final UiListModifiable<DtObject> uiList = (UiListModifiable<DtObject>) value;
final List<DtObjectValidator<DtObject>> dtObjectValidators = obtainDtObjectValidators(webServiceParam);
// Only authorized fields have already been checked (JsonConverterHandler)
final DtList<DtObject> dtList = mergeAndCheckInput(uiList.getObjectType(), uiList, dtObjectValidators, uiMessageStack, contextKeyMap);
routeContext.registerUpdatedDtObjects(webServiceParam, dtList, contextKeyMap);
} else if (value instanceof ExtendedObject) {
final ExtendedObject<?> extendedObject = (ExtendedObject) value;
validateParam(extendedObject.getInnerObject(), uiMessageStack, webServiceParam, routeContext);
final Object updatedValue = routeContext.getParamValue(webServiceParam);
final ExtendedObject<?> updatedExtendedObject = new ExtendedObject(updatedValue);
updatedExtendedObject.putAll(extendedObject);
routeContext.setParamValue(webServiceParam, updatedExtendedObject);
} else if (value instanceof Optional && ((Optional) value).isPresent()) {
validateParam(((Optional) value).get(), uiMessageStack, webServiceParam, routeContext);
}
}
Aggregations