Removal of EnvValidationUtils class and cleanup
[oom/platform/cert-service.git] / certServiceClient / src / main / java / org / onap / aaf / certservice / client / configuration / factory / CsrConfigurationFactory.java
1 /*
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
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.aaf.certservice.client.configuration.factory;
22
23 import org.onap.aaf.certservice.client.configuration.CsrConfigurationEnvs;
24 import org.onap.aaf.certservice.client.configuration.EnvsForCsr;
25 import org.onap.aaf.certservice.client.configuration.exception.CsrConfigurationException;
26 import org.onap.aaf.certservice.client.configuration.model.CsrConfiguration;
27
28 public class CsrConfigurationFactory extends AbstractConfigurationFactory<CsrConfiguration> {
29
30     private final EnvsForCsr envsForCsr;
31
32
33     public CsrConfigurationFactory(EnvsForCsr envsForCsr) {
34         this.envsForCsr = envsForCsr;
35     }
36
37     @Override
38     public CsrConfiguration create() throws CsrConfigurationException {
39
40         CsrConfiguration configuration = new CsrConfiguration();
41
42         envsForCsr.getCommonName()
43                 .filter(this::isCommonNameValid)
44                 .map(configuration::setCommonName)
45                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.COMMON_NAME + " is invalid."));
46
47         envsForCsr.getOrganization()
48                 .filter(org -> !isSpecialCharsPresent(org))
49                 .map(configuration::setOrganization)
50                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.ORGANIZATION + " is invalid."));
51
52         envsForCsr.getState()
53                 .map(configuration::setState)
54                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.STATE + " is invalid."));
55
56         envsForCsr.getCountry()
57                 .filter(this::isCountryValid)
58                 .map(configuration::setCountry)
59                 .orElseThrow(() -> new CsrConfigurationException(CsrConfigurationEnvs.COUNTRY + " is invalid."));
60
61         envsForCsr.getOrganizationUnit()
62                 .map(configuration::setOrganizationUnit);
63
64         envsForCsr.getLocation()
65                 .map(configuration::setLocation);
66
67         envsForCsr.getSubjectAlternativesName()
68                 .map(configuration::setSubjectAlternativeNames);
69
70         return configuration;
71     }
72 }