2  * ============LICENSE_START=======================================================
 
   3  * aaf-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.aaf.certservice.client.configuration.factory;
 
  23 import org.onap.aaf.certservice.client.configuration.exception.ClientConfigurationException;
 
  24 import org.onap.aaf.certservice.client.configuration.exception.CsrConfigurationException;
 
  25 import org.onap.aaf.certservice.client.configuration.model.ConfigurationModel;
 
  27 import java.util.Arrays;
 
  28 import java.util.Locale;
 
  29 import java.util.regex.Pattern;
 
  31 public abstract class AbstractConfigurationFactory<T extends ConfigurationModel> {
 
  33     abstract T create() throws ClientConfigurationException, CsrConfigurationException;
 
  35     public boolean isPathValid(String path) {
 
  36         return path.matches("^/|(/[a-zA-Z0-9_-]+)+/?$");
 
  39     public boolean isAlphaNumeric(String caName) {
 
  40         return caName.matches("^[a-zA-Z0-9]*$");
 
  43     public boolean isCommonNameValid(String commonName) {
 
  44         return !isSpecialCharsPresent(commonName) &&
 
  45                 !isHttpProtocolsPresent(commonName) &&
 
  46                 !isIpAddressPresent(commonName) &&
 
  47                 !isPortNumberPresent(commonName);
 
  50     public boolean isSpecialCharsPresent(String stringToCheck) {
 
  51         return Pattern.compile("[~#@*$+%!()?/{}<>\\|_^]").matcher(stringToCheck).find();
 
  54     public boolean isCountryValid(String country) {
 
  55         return Arrays.asList(Locale.getISOCountries()).contains(country);
 
  58     private boolean isPortNumberPresent(String stringToCheck) {
 
  59         return Pattern.compile(":[0-9]{1,5}").matcher(stringToCheck).find();
 
  62     private boolean isIpAddressPresent(String stringToCheck) {
 
  63         return Pattern.compile("[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}").matcher(stringToCheck).find();
 
  66     private boolean isHttpProtocolsPresent(String stringToCheck) {
 
  67         return Pattern.compile("[h][t][t][p][:][/][/]|[h][t][t][p][s][:][/][/]").matcher(stringToCheck).find();