Added validation of configuration
[oom/platform/cert-service.git] / certService / src / main / java / org / onap / aaf / certservice / certification / configuration / CmpServersConfigLoader.java
1 /*
2  * ============LICENSE_START=======================================================
3  * PROJECT
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.certification.configuration;
22
23 import com.fasterxml.jackson.databind.ObjectMapper;
24 import java.io.File;
25 import java.io.IOException;
26 import java.security.InvalidParameterException;
27 import java.util.ArrayList;
28 import java.util.List;
29 import org.onap.aaf.certservice.certification.configuration.model.CmpServers;
30 import org.onap.aaf.certservice.certification.configuration.model.Cmpv2Server;
31 import org.onap.aaf.certservice.certification.configuration.validation.Cmpv2ServerConfigurationValidator;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34 import org.springframework.beans.factory.annotation.Autowired;
35 import org.springframework.stereotype.Component;
36
37 @Component
38 class CmpServersConfigLoader {
39
40     private static final Logger LOGGER = LoggerFactory.getLogger(CmpServersConfigLoader.class);
41
42     private final Cmpv2ServerConfigurationValidator validator;
43
44     @Autowired
45     public CmpServersConfigLoader(Cmpv2ServerConfigurationValidator validator) {
46         this.validator = validator;
47     }
48
49     List<Cmpv2Server> load(String path) {
50         List<Cmpv2Server> servers = new ArrayList<>();
51         try {
52             servers = loadConfigFromFile(path).getCmpv2Servers();
53             servers.forEach(validator::validate);
54             LOGGER.info(String.format("CMP Servers configuration successfully loaded from file '%s'", path));
55         } catch (IOException e) {
56             LOGGER.error("Exception occurred during CMP Servers configuration loading: ", e);
57         } catch (InvalidParameterException e) {
58             LOGGER.error("Validation of CMPv2 servers configuration failed:", e);
59             throw e;
60         }
61
62         return servers;
63     }
64
65     private CmpServers loadConfigFromFile(String path) throws IOException {
66         ObjectMapper objectMapper = new ObjectMapper();
67         return objectMapper.readValue(new File(path), CmpServers.class);
68     }
69 }