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;
 
  23 import org.onap.oom.certservice.client.configuration.CsrConfigurationEnvs;
 
  24 import org.onap.oom.certservice.client.configuration.EnvsForCsr;
 
  25 import org.onap.oom.certservice.client.configuration.exception.CsrConfigurationException;
 
  26 import org.onap.oom.certservice.client.configuration.model.CsrConfiguration;
 
  27 import org.slf4j.Logger;
 
  28 import org.slf4j.LoggerFactory;
 
  31 public class CsrConfigurationFactory extends AbstractConfigurationFactory<CsrConfiguration> {
 
  33     private static final Logger LOGGER = LoggerFactory.getLogger(CsrConfigurationFactory.class);
 
  34     private final EnvsForCsr envsForCsr;
 
  36     public CsrConfigurationFactory(EnvsForCsr envsForCsr) {
 
  37         this.envsForCsr = envsForCsr;
 
  41     public CsrConfiguration create() throws CsrConfigurationException {
 
  43         CsrConfiguration configuration = new CsrConfiguration();
 
  45         envsForCsr.getCommonName()
 
  46                 .filter(this::isCommonNameValid)
 
  47                 .map(configuration::setCommonName)
 
  48                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.COMMON_NAME + " is invalid."));
 
  50         envsForCsr.getOrganization()
 
  51                 .filter(org -> !isSpecialCharsPresent(org))
 
  52                 .map(configuration::setOrganization)
 
  53                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.ORGANIZATION + " is invalid."));
 
  56                 .map(configuration::setState)
 
  57                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.STATE + " is invalid."));
 
  59         envsForCsr.getCountry()
 
  60                 .filter(this::isCountryValid)
 
  61                 .map(configuration::setCountry)
 
  62                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.COUNTRY + " is invalid."));
 
  64         envsForCsr.getOrganizationUnit()
 
  65                 .map(configuration::setOrganizationUnit);
 
  67         envsForCsr.getLocation()
 
  68                 .map(configuration::setLocation);
 
  70         envsForCsr.getSubjectAlternativesName()
 
  71                 .map(configuration::setSubjectAlternativeNames);
 
  73         LOGGER.info("Successful validation of CSR configuration. Configuration data: {}", configuration.toString());