2  * ============LICENSE_START=======================================================
 
   3  * oom-certservice-client
 
   4  * ================================================================================
 
   5  * Copyright (C) 2020 Nokia. All rights reserved.
 
   6  * ================================================================================
 
   7  * Licensed under the Apache License, Version 2.0 (the "License");
 
   8  * you may not use this file except in compliance with the License.
 
   9  * You may obtain a copy of the License at
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  13  * Unless required by applicable law or agreed to in writing, software
 
  14  * distributed under the License is distributed on an "AS IS" BASIS,
 
  15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16  * See the License for the specific language governing permissions and
 
  17  * limitations under the License.
 
  18  * ============LICENSE_END=========================================================
 
  21 package org.onap.oom.certservice.client.configuration.factory;
 
  24 import org.onap.oom.certservice.client.certification.ArtifactsCreatorProvider;
 
  25 import org.onap.oom.certservice.client.configuration.exception.ClientConfigurationException;
 
  26 import org.onap.oom.certservice.client.configuration.exception.CsrConfigurationException;
 
  27 import org.onap.oom.certservice.client.configuration.model.ConfigurationModel;
 
  29 import java.util.Arrays;
 
  30 import java.util.Locale;
 
  31 import java.util.regex.Pattern;
 
  33 public abstract class AbstractConfigurationFactory<T extends ConfigurationModel> {
 
  35     abstract T create() throws ClientConfigurationException, CsrConfigurationException;
 
  37     public boolean isPathValid(String path) {
 
  38         return path.matches("^/|(/[a-zA-Z0-9_-]+)+/?$");
 
  41     public boolean isAlphaNumeric(String caName) {
 
  42         return caName.matches("^[a-zA-Z0-9]*$");
 
  45     public boolean isCommonNameValid(String commonName) {
 
  46         return !isSpecialCharsPresent(commonName)
 
  47                 && !isHttpProtocolsPresent(commonName)
 
  48                 && !isIpAddressPresent(commonName)
 
  49                 && !isPortNumberPresent(commonName);
 
  52     public boolean isSpecialCharsPresent(String stringToCheck) {
 
  53         return Pattern.compile("[~#@*$+%!()?/{}<>\\|_^]").matcher(stringToCheck).find();
 
  56     public boolean isCountryValid(String country) {
 
  57         return Arrays.asList(Locale.getISOCountries()).contains(country);
 
  60     public boolean isOutputTypeValid(String outputType) {
 
  61         return Arrays.stream(ArtifactsCreatorProvider.values())
 
  62                 .map(ArtifactsCreatorProvider::toString)
 
  63                 .anyMatch(name -> name.equals(outputType));
 
  66     private boolean isPortNumberPresent(String stringToCheck) {
 
  67         return Pattern.compile(":[0-9]{1,5}").matcher(stringToCheck).find();
 
  70     private boolean isIpAddressPresent(String stringToCheck) {
 
  71         return Pattern.compile("[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}").matcher(stringToCheck).find();
 
  74     private boolean isHttpProtocolsPresent(String stringToCheck) {
 
  75         return Pattern.compile("[h][t][t][p][:][/][/]|[h][t][t][p][s][:][/][/]").matcher(stringToCheck).find();