Update version from 1.2.0 to 2.0.0
[oom/platform/cert-service.git] / trustStoreMerger / src / main / java / org / onap / oom / truststoremerger / TrustStoreMerger.java
1 /*============LICENSE_START=======================================================
2  * oom-truststore-merger
3  * ================================================================================
4  * Copyright (C) 2020 Nokia. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  * ============LICENSE_END=========================================================
18  */
19
20 package org.onap.oom.truststoremerger;
21
22 import org.onap.oom.truststoremerger.api.ExitStatus;
23 import org.onap.oom.truststoremerger.api.ExitableException;
24 import org.onap.oom.truststoremerger.certification.file.provider.entry.CertificateWithAlias;
25 import org.onap.oom.truststoremerger.certification.file.model.Truststore;
26 import org.onap.oom.truststoremerger.certification.file.provider.FileManager;
27 import org.onap.oom.truststoremerger.certification.file.provider.PasswordReader;
28 import org.onap.oom.truststoremerger.certification.file.TruststoreFileFactory;
29 import org.onap.oom.truststoremerger.certification.file.TruststoreFilesListProvider;
30 import org.onap.oom.truststoremerger.certification.path.EnvProvider;
31 import org.onap.oom.truststoremerger.certification.path.TruststoresPathsProvider;
32 import org.onap.oom.truststoremerger.configuration.MergerConfiguration;
33 import org.onap.oom.truststoremerger.configuration.MergerConfigurationFactory;
34 import org.onap.oom.truststoremerger.certification.path.PathValidator;
35
36 import java.util.List;
37 import org.slf4j.Logger;
38 import org.slf4j.LoggerFactory;
39
40 class TrustStoreMerger {
41
42     private static final Logger LOGGER = LoggerFactory.getLogger(TrustStoreMerger.class);
43     private static final int FIRST_TRUSTSTORE_INDEX = 0;
44     private static final int SECOND_TRUSTSTORE_INDEX = 1;
45
46     private final AppExitHandler appExitHandler;
47
48     TrustStoreMerger(AppExitHandler appExitHandler) {
49         this.appExitHandler = appExitHandler;
50     }
51
52     void run() {
53         try {
54             mergeTruststores();
55             appExitHandler.exit(ExitStatus.SUCCESS);
56         } catch (ExitableException e) {
57             LOGGER.error("Truststore Merger fails in execution: ", e);
58             appExitHandler.exit(e.applicationExitStatus());
59         }
60     }
61
62     private void mergeTruststores() throws ExitableException {
63         MergerConfiguration configuration = loadConfiguration();
64         List<Truststore> truststoreFilesList = getTruststoreFilesList(configuration);
65
66         Truststore baseFile = truststoreFilesList.get(FIRST_TRUSTSTORE_INDEX);
67         baseFile.createBackup();
68
69         for (int i = SECOND_TRUSTSTORE_INDEX; i < truststoreFilesList.size(); i++) {
70             List<CertificateWithAlias> certificateWrappers = truststoreFilesList.get(i).getCertificates();
71             baseFile.addCertificate(certificateWrappers);
72         }
73
74         baseFile.saveFile();
75     }
76
77     private MergerConfiguration loadConfiguration() throws ExitableException {
78         TruststoresPathsProvider truststoresPathsProvider = new TruststoresPathsProvider(new EnvProvider(),
79             new PathValidator());
80         MergerConfigurationFactory factory = new MergerConfigurationFactory(truststoresPathsProvider);
81         return factory.createConfiguration();
82     }
83
84     private List<Truststore> getTruststoreFilesList(MergerConfiguration configuration) throws ExitableException {
85         TruststoreFileFactory truststoreFileFactory = new TruststoreFileFactory(new FileManager(),
86             new PasswordReader());
87         TruststoreFilesListProvider truststoreFilesListProvider = new TruststoreFilesListProvider(
88             truststoreFileFactory);
89         return truststoreFilesListProvider
90             .getTruststoreFilesList(
91                 configuration.getTruststoreFilePaths(),
92                 configuration.getTruststoreFilePasswordPaths()
93             );
94     }
95 }