blob: db03b9d3e67124ea674c2953e3e34ccc76140df8 [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.servicecomb.governance.marker;
import java.util.Map;
import java.util.Map.Entry;
import org.apache.servicecomb.governance.marker.operator.MatchOperator;
import org.apache.servicecomb.governance.marker.operator.RawOperator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Request Processor checks if a request matches a configuration.
*/
public class RequestProcessor {
private static final Logger LOGGER = LoggerFactory.getLogger(RequestProcessor.class);
private static final String OPERATOR_SUFFIX = "Operator";
private final Map<String, MatchOperator> operatorMap;
public RequestProcessor(Map<String, MatchOperator> operatorMap) {
this.operatorMap = operatorMap;
}
public boolean match(GovernanceRequest request, Matcher matcher) {
if (!methodMatch(request, matcher)) {
return false;
}
if (!apiPathMatch(request, matcher)) {
return false;
}
if (!headersMatch(request, matcher)) {
return false;
}
return serviceNameMatch(request, matcher);
}
private boolean serviceNameMatch(GovernanceRequest request, Matcher matcher) {
if (matcher.getServiceName() == null) {
return true;
}
return matcher.getServiceName().equals(request.getServiceName());
}
private boolean headersMatch(GovernanceRequest request, Matcher matcher) {
if (matcher.getHeaders() == null) {
return true;
}
for (Entry<String, RawOperator> entry : matcher.getHeaders().entrySet()) {
if (!request.getHeaders().containsKey(entry.getKey()) ||
!operatorMatch(request.getHeaders().get(entry.getKey()), entry.getValue())) {
return false;
}
}
return true;
}
private boolean apiPathMatch(GovernanceRequest request, Matcher matcher) {
if (matcher.getApiPath() == null) {
return true;
}
return operatorMatch(request.getUri(), matcher.getApiPath());
}
private boolean methodMatch(GovernanceRequest request, Matcher matcher) {
if (matcher.getMethod() == null) {
return true;
}
return matcher.getMethod().contains(request.getMethod());
}
private boolean operatorMatch(String str, RawOperator rawOperator) {
if (rawOperator.isEmpty()) {
return false;
}
for (Entry<String, String> entry : rawOperator.entrySet()) {
MatchOperator operator = operatorMap.get(entry.getKey() + OPERATOR_SUFFIX);
if (operator == null) {
LOGGER.error("unsupported operator:" + entry.getKey() + ", please use one of :" + operatorMap.keySet());
return false;
}
if (!operator.match(str, entry.getValue())) {
return false;
}
}
return true;
}
}