io.knotx.knot.action.domain.FormsFactory Maven / Gradle / Ivy
/*
* Copyright (C) 2016 Cognifide Limited
*
* 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.knotx.knot.action.domain;
import static io.knotx.knot.action.domain.FormConstants.FRAGMENT_KNOT_PREFIX;
import io.knotx.dataobjects.KnotContext;
import io.knotx.knot.action.ActionKnotConfiguration;
import io.vertx.core.logging.Logger;
import io.vertx.core.logging.LoggerFactory;
import java.util.List;
import java.util.stream.Collectors;
public final class FormsFactory {
private static final Logger LOGGER = LoggerFactory.getLogger(FormsFactory.class);
private FormsFactory() {
// util class
}
public static List create(KnotContext context, ActionKnotConfiguration conf) {
List forms = context.getFragments().stream()
.filter(f -> f.knots().stream().anyMatch(id -> id.startsWith(FRAGMENT_KNOT_PREFIX)))
.map(f -> FormEntity.from(f, conf))
.collect(Collectors.toList());
if (areUnique(forms)) {
LOGGER.error("Form identifiers are not unique [{}]", forms.stream().map(FormEntity::identifier).toArray());
throw new IllegalStateException("Form identifiers are not unique!");
}
return forms;
}
private static boolean areUnique(List forms) {
return forms.size() != forms.stream().map(FormEntity::identifier).collect(Collectors.toSet()).size();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy