All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.dialob.form.service.DialobFormIdRenamer Maven / Gradle / Ivy
/*
* Copyright © 2015 - 2021 ReSys ([email protected] )
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.dialob.form.service;
import edu.umd.cs.findbugs.annotations.NonNull;
import io.dialob.api.form.*;
import io.dialob.form.service.api.validation.FormIdRenamer;
import io.dialob.rule.parser.DialobRuleLexer;
import io.dialob.rule.parser.api.RuleExpressionCompiler;
import org.antlr.v4.runtime.CharStreams;
import org.antlr.v4.runtime.Vocabulary;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.tuple.Pair;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.function.UnaryOperator;
import static java.util.stream.Collectors.toList;
import static java.util.stream.Collectors.toMap;
public class DialobFormIdRenamer implements FormIdRenamer {
private final RuleExpressionCompiler compiler;
private final List reservedWords;
public DialobFormIdRenamer(@NonNull RuleExpressionCompiler compiler) {
this.compiler = compiler;
this.reservedWords = new ArrayList<>();
DialobRuleLexer lexer = new DialobRuleLexer(CharStreams.fromString(""));
Vocabulary vocabulary = lexer.getVocabulary();
int i = 0;
String w;
while ((w = vocabulary.getLiteralName(++i)) != null) {
reservedWords.add(w.substring(1,w.length()-1));
}
}
@Override
public List validateRename(@NonNull Form formDocument, @NonNull String oldId, @NonNull String newId) {
List errors = new ArrayList<>();
// Check name format
if (!newId.matches("^[a-zA-Z_][a-zA-Z\\d_]*$")) {
errors.add(createRenamerExpressionCompilerError(oldId, "FORM_NEW_VAR_FORMAT"));
}
// Check reserved word clash
reservedWords.forEach(t -> {
if (t.equals(newId)) {
errors.add(createRenamerExpressionCompilerError(oldId, "FORM_NEW_VAR_CLASH"));
}
});
// Check item ID and variable name clash
Map formData = formDocument.getData();
if (formData.containsKey(newId) ||
formDocument.getVariables().stream().anyMatch(v -> v.getName().equals(newId))) {
errors.add(createRenamerExpressionCompilerError(oldId, "FORM_NEW_VAR_CLASH"));
}
return errors;
}
private FormItem renameItemAndAttributes(FormItem item, UnaryOperator idRenamer, String oldId, String newId) {
ImmutableFormItem.Builder builder = ImmutableFormItem.builder().from(renameAttributes(item, idRenamer, oldId, newId));
if (oldId.equals(item.getId())) {
builder.id(newId);
}
return builder.build();
}
@Override
public FormItem renameAttributes(@NonNull FormItem item, @NonNull UnaryOperator idRenamer, @NonNull String oldId, @NonNull String newId) {
ImmutableFormItem.Builder builder = ImmutableFormItem.builder().from(item);
if (item.getActiveWhen() != null) {
builder.activeWhen(idRenamer.apply(item.getActiveWhen()));
}
if (item.getRequired() != null) {
builder.required(idRenamer.apply(item.getRequired()));
}
List validations = item.getValidations().stream().map(validation -> ImmutableValidation.builder().from(validation).rule(idRenamer.apply(validation.getRule())).build()).collect(toList());
builder.validations(validations);
// Child refs
int index = item.getItems().indexOf(oldId);
if (index > -1) {
List newItems = new ArrayList<>();
newItems.addAll(item.getItems());
newItems.set(index, newId);
builder.items(newItems);
}
// Item label refs
if (!item.getLabel().isEmpty()) {
item.getLabel().forEach((l, m) -> {
String newLabel = StringUtils.replace(m, "{" + oldId + "}", "{" + newId + "}");
builder.putLabel(l, newLabel);
});
}
return builder.build();
}
@Override
public Pair