2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2016-2018 Ericsson. All rights reserved.
4 * Modifications Copyright (C) 2019-2020 Nordix Foundation.
5 * ================================================================================
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.apex.service.parameters.carriertechnology;
24 import java.util.Arrays;
25 import java.util.HashSet;
27 import java.util.regex.Matcher;
28 import java.util.regex.Pattern;
29 import java.util.regex.PatternSyntaxException;
30 import javax.ws.rs.core.MultivaluedHashMap;
31 import javax.ws.rs.core.MultivaluedMap;
34 import org.apache.commons.lang3.StringUtils;
35 import org.onap.policy.common.parameters.GroupValidationResult;
36 import org.onap.policy.common.parameters.ValidationStatus;
37 import org.onap.policy.common.utils.validation.ParameterValidationUtils;
38 import org.slf4j.Logger;
39 import org.slf4j.LoggerFactory;
43 * Apex plugin parameters for REST as an event carrier technology with Apex.
45 * <p>The parameters for this plugin are:
47 * <li>url: The URL that the Apex Rest client will connect to over REST for event reception or event sending. This
48 * parameter is mandatory.
49 * <li>httpMethod: The HTTP method to use when sending events over REST, legal values are POST (default) and PUT. When
50 * receiving events, the REST client plugin always uses the HTTP GET method.
51 * <li>httpHeaders, the HTTP headers to send on REST requests, optional parameter, defaults to none.
52 * <li>httpCodeFilter: a regular expression filter for returned HTTP codes, if the returned HTTP code passes this
53 * filter, then the request is assumed to have succeeded by the plugin, optional, defaults to allowing 2xx codes
54 * through, that is a regular expression of "[2][0-9][0-9]"
57 * @author Ning Xi(ning.xi@ericsson.com)
62 public class RestPluginCarrierTechnologyParameters extends CarrierTechnologyParameters {
63 // Get a reference to the logger
64 private static final Logger LOGGER = LoggerFactory.getLogger(RestPluginCarrierTechnologyParameters.class);
66 /** The supported HTTP methods. */
68 public enum HttpMethod {
76 /** The default HTTP code filter, allows 2xx HTTP codes through. */
77 public static final String DEFAULT_HTTP_CODE_FILTER = "[2][0-9][0-9]";
79 // Commonly occurring strings
80 private static final String HTTP_HEADERS = "httpHeaders";
81 private static final String HTTP_CODE_FILTER = "httpCodeFilter";
83 // Regular expression patterns for finding and checking keys in URLs
84 private static final Pattern patternProperKey = Pattern.compile("(?<=\\{)[^}]*(?=\\})");
85 protected static final Pattern patternErrorKey = Pattern
86 .compile("(\\{[^\\{}]*.?\\{)|(\\{[^\\{}]*$)|(\\}[^\\{}]*.?\\})|(^[^\\{}]*.?\\})|\\{\\s*\\}");
89 protected String url = null;
90 protected HttpMethod httpMethod = null;
91 protected String[][] httpHeaders = null;
92 protected String httpCodeFilter = DEFAULT_HTTP_CODE_FILTER;
95 * Constructor to create a REST carrier technology parameters instance and
96 * register the instance with the parameter service.
98 public RestPluginCarrierTechnologyParameters() {
103 * Check if http headers have been set for the REST request.
105 * @return true if headers have been set
107 public boolean checkHttpHeadersSet() {
108 return httpHeaders != null && httpHeaders.length > 0;
112 * Gets the http headers for the REST request as a multivalued map.
114 * @return the headers
116 public MultivaluedMap<String, Object> getHttpHeadersAsMultivaluedMap() {
117 if (httpHeaders == null) {
121 // Load the HTTP headers into the map
122 MultivaluedMap<String, Object> httpHeaderMap = new MultivaluedHashMap<>();
124 for (String[] httpHeader : httpHeaders) {
125 httpHeaderMap.putSingle(httpHeader[0], httpHeader[1]);
128 return httpHeaderMap;
132 * Sets the header for the REST request.
134 * @param httpHeaders the incoming HTTP headers
136 public void setHttpHeaders(final String[][] httpHeaders) {
137 this.httpHeaders = httpHeaders;
141 * Get the tag for the REST Producer Properties.
143 * @return set of the tags
145 public Set<String> getKeysFromUrl() {
146 Matcher matcher = patternProperKey.matcher(getUrl());
147 Set<String> key = new HashSet<>();
148 while (matcher.find()) {
149 key.add(matcher.group());
158 public GroupValidationResult validate() {
159 GroupValidationResult result = super.validate();
162 validateHttpHeaders(result);
164 return validateHttpCodeFilter(result);
172 * http://www.blah.com/{par1/somethingelse (Missing end tag) use {[^\\{}]*$
173 * http://www.blah.com/{par1/{some}thingelse (Nested tag) use {[^}]*{
174 * http://www.blah.com/{par1}/some}thingelse (Missing start tag1) use }[^{}]*.}
175 * http://www.blah.com/par1}/somethingelse (Missing start tag2) use }[^{}]*}
176 * http://www.blah.com/{}/somethingelse (Empty tag) use {[\s]*}
177 * @param result the result of the validation
180 public GroupValidationResult validateUrl(final GroupValidationResult result) {
181 // The URL may be optional so existence must be checked in the plugin code
182 if (getUrl() == null) {
186 Matcher matcher = patternErrorKey.matcher(getUrl());
187 if (matcher.find()) {
188 final String urlInvalidMessage = "invalid URL " + getUrl() + " has been set for event sending on "
190 result.setResult("url", ValidationStatus.INVALID, urlInvalidMessage);
197 * Validate the HTTP headers.
199 * @param result the result of the validation
201 private GroupValidationResult validateHttpHeaders(final GroupValidationResult result) {
202 if (httpHeaders == null) {
206 for (String[] httpHeader : httpHeaders) {
207 if (httpHeader == null) {
208 result.setResult(HTTP_HEADERS, ValidationStatus.INVALID, "HTTP header array entry is null");
209 } else if (httpHeader.length != 2) {
210 result.setResult(HTTP_HEADERS, ValidationStatus.INVALID,
211 "HTTP header array entries must have one key and one value: " + Arrays.deepToString(httpHeader));
212 } else if (!ParameterValidationUtils.validateStringParameter(httpHeader[0])) {
213 result.setResult(HTTP_HEADERS, ValidationStatus.INVALID,
214 "HTTP header key is null or blank: " + Arrays.deepToString(httpHeader));
215 } else if (!ParameterValidationUtils.validateStringParameter(httpHeader[1])) {
216 result.setResult(HTTP_HEADERS, ValidationStatus.INVALID,
217 "HTTP header value is null or blank: " + Arrays.deepToString(httpHeader));
225 * Validate the HTTP code filter.
227 * @param result the result of the validation
229 public GroupValidationResult validateHttpCodeFilter(final GroupValidationResult result) {
230 if (httpCodeFilter == null) {
231 httpCodeFilter = DEFAULT_HTTP_CODE_FILTER;
233 } else if (StringUtils.isBlank(httpCodeFilter)) {
234 result.setResult(HTTP_CODE_FILTER, ValidationStatus.INVALID,
235 "HTTP code filter must be specified as a three digit regular expression");
238 Pattern.compile(httpCodeFilter);
239 } catch (PatternSyntaxException pse) {
240 String message = "Invalid HTTP code filter, the filter must be specified as a three digit "
241 + "regular expression: " + pse.getMessage();
242 result.setResult(HTTP_CODE_FILTER, ValidationStatus.INVALID, message);
243 LOGGER.debug(message, pse);
254 public String toString() {
255 return getLabel() + "CarrierTechnologyParameters [url=" + url + ", httpMethod=" + httpMethod + ", httpHeaders="
256 + Arrays.deepToString(httpHeaders) + ", httpCodeFilter=" + httpCodeFilter + "]";