blob: 63bc65b29e5b8fa276337c148c15048677574d20 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.unomi.schema.keyword;
import com.fasterxml.jackson.databind.JsonNode;
import com.networknt.schema.AbstractJsonValidator;
import com.networknt.schema.CustomErrorMessageType;
import com.networknt.schema.ValidationMessage;
import org.apache.unomi.api.services.ScopeService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.text.MessageFormat;
import java.util.LinkedHashSet;
import java.util.Set;
public class ScopeValidator extends AbstractJsonValidator {
private static final Logger logger = LoggerFactory.getLogger(ScopeValidator.class);
private ScopeService scopeService;
public ScopeValidator(ScopeService scopeService) {
super("validateScope");
this.scopeService = scopeService;
}
@Override
public Set<ValidationMessage> validate(JsonNode node, JsonNode rootNode, String at) {
if (logger.isDebugEnabled()) {
logger.debug("validate( {}, {}, {})", node, rootNode, at);
}
Set<ValidationMessage> errors = new LinkedHashSet();
if (scopeService.getScope(node.textValue()) == null) {
errors.add(this.buildValidationMessage(
CustomErrorMessageType.of("1100", new MessageFormat("Unknown scope value at \"{0}\" for value {1}")), at,
node.textValue()));
}
return errors;
}
}