[OOM-CERT-SERVICE] Align implementation with RFC4210
[oom/platform/cert-service.git] / certServiceClient / src / main / java / org / onap / oom / certservice / client / configuration / factory / ClientConfigurationFactory.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.ClientConfigurationEnvs;
24 import org.onap.oom.certservice.client.configuration.EnvsForClient;
25 import org.onap.oom.certservice.client.configuration.exception.ClientConfigurationException;
26 import org.onap.oom.certservice.client.configuration.model.ClientConfiguration;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 import java.util.Optional;
31
32 public class ClientConfigurationFactory extends AbstractConfigurationFactory<ClientConfiguration> {
33
34     private static final Logger LOGGER = LoggerFactory.getLogger(ClientConfigurationFactory.class);
35     private final EnvsForClient envsForClient;
36
37     public ClientConfigurationFactory(EnvsForClient envsForClient) {
38         this.envsForClient = envsForClient;
39     }
40
41     @Override
42     public ClientConfiguration create() throws ClientConfigurationException {
43
44         ClientConfiguration configuration = new ClientConfiguration();
45
46
47         envsForClient.getUrlToCertService()
48                 .map(configuration::setUrlToCertService);
49
50         envsForClient.getRequestTimeOut()
51                 .map(timeout -> configuration.setRequestTimeout(Integer.valueOf(timeout)));
52
53         envsForClient.getOutputPath()
54                 .filter(this::isPathValid)
55                 .map(configuration::setCertsOutputPath)
56                 .orElseThrow(() -> new ClientConfigurationException(ClientConfigurationEnvs.OUTPUT_PATH + " is invalid."));
57
58         envsForClient.getCaName()
59                 .filter(this::isCaNameValid)
60                 .map(configuration::setCaName)
61                 .orElseThrow(() -> new ClientConfigurationException(ClientConfigurationEnvs.CA_NAME + " is invalid."));
62
63         Optional<String> outputType = envsForClient.getOutputType();
64
65         if (outputType.isPresent()) {
66             outputType.filter(this::isOutputTypeValid)
67                     .map(configuration::setOutputType)
68                     .orElseThrow(() -> new ClientConfigurationException(ClientConfigurationEnvs.OUTPUT_TYPE + " is invalid."));
69         }
70
71         LOGGER.info("Successful validation of Client configuration. Configuration data: {}", configuration.toString());
72
73         return configuration;
74     }
75 }
76