Removing AAF references from Cert-Service in OOM repo.
[oom/platform/cert-service.git] / certServiceClient / src / main / java / org / onap / oom / certservice / client / configuration / factory / CsrConfigurationFactory.java
1 /*
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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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=========================================================
19  */
20
21 package org.onap.oom.certservice.client.configuration.factory;
22
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;
29
30
31 public class CsrConfigurationFactory extends AbstractConfigurationFactory<CsrConfiguration> {
32
33     private static final Logger LOGGER = LoggerFactory.getLogger(CsrConfigurationFactory.class);
34     private final EnvsForCsr envsForCsr;
35
36     public CsrConfigurationFactory(EnvsForCsr envsForCsr) {
37         this.envsForCsr = envsForCsr;
38     }
39
40     @Override
41     public CsrConfiguration create() throws CsrConfigurationException {
42
43         CsrConfiguration configuration = new CsrConfiguration();
44
45         envsForCsr.getCommonName()
46                 .filter(this::isCommonNameValid)
47                 .map(configuration::setCommonName)
48                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.COMMON_NAME + " is invalid."));
49
50         envsForCsr.getOrganization()
51                 .filter(org -> !isSpecialCharsPresent(org))
52                 .map(configuration::setOrganization)
53                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.ORGANIZATION + " is invalid."));
54
55         envsForCsr.getState()
56                 .map(configuration::setState)
57                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.STATE + " is invalid."));
58
59         envsForCsr.getCountry()
60                 .filter(this::isCountryValid)
61                 .map(configuration::setCountry)
62                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.COUNTRY + " is invalid."));
63
64         envsForCsr.getOrganizationUnit()
65                 .map(configuration::setOrganizationUnit);
66
67         envsForCsr.getLocation()
68                 .map(configuration::setLocation);
69
70         envsForCsr.getSubjectAlternativesName()
71                 .map(configuration::setSubjectAlternativeNames);
72
73         LOGGER.info("Successful validation of CSR configuration. Configuration data: {}", configuration.toString());
74
75         return configuration;
76     }
77 }