f29b693ccaad5d23638b641077cbe83160b5cd8a
[dcaegen2/collectors/hv-ves.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * dcaegen2-collectors-veshv
4  * ================================================================================
5  * Copyright (C) 2018 NOKIA
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 package org.onap.dcae.collectors.veshv.simulators.xnf.config
21
22 import org.apache.commons.cli.CommandLine
23 import org.apache.commons.cli.DefaultParser
24 import org.onap.dcae.collectors.veshv.domain.SecurityConfiguration
25 import org.onap.dcae.collectors.veshv.utils.commandline.ArgBasedConfiguration
26 import org.onap.dcae.collectors.veshv.utils.commandline.CommandLineOption.CERT_FILE
27 import org.onap.dcae.collectors.veshv.utils.commandline.CommandLineOption.MESSAGES_TO_SEND_AMOUNT
28 import org.onap.dcae.collectors.veshv.utils.commandline.CommandLineOption.PRIVATE_KEY_FILE
29 import org.onap.dcae.collectors.veshv.utils.commandline.CommandLineOption.TRUST_CERT_FILE
30 import org.onap.dcae.collectors.veshv.utils.commandline.CommandLineOption.VES_HV_HOST
31 import org.onap.dcae.collectors.veshv.utils.commandline.CommandLineOption.VES_HV_PORT
32
33
34 /**
35  * @author Jakub Dudycz <jakub.dudycz@nokia.com>
36  * @since June 2018
37  */
38 internal object DefaultValues {
39     const val MESSAGES_AMOUNT = -1L
40     const val PRIVATE_KEY_FILE = "/etc/ves-hv/client.key"
41     const val CERT_FILE = "/etc/ves-hv/client.crt"
42     const val TRUST_CERT_FILE = "/etc/ves-hv/trust.crt"
43     const val VES_HV_PORT = 6061
44     const val VES_HV_HOST = "veshvcollector"
45 }
46
47 internal class ArgBasedClientConfiguration : ArgBasedConfiguration<ClientConfiguration>(DefaultParser()) {
48     override val cmdLineOptionsList = listOf(
49             VES_HV_PORT,
50             VES_HV_HOST,
51             MESSAGES_TO_SEND_AMOUNT,
52             PRIVATE_KEY_FILE,
53             CERT_FILE,
54             TRUST_CERT_FILE
55     )
56
57     override fun getConfiguration(cmdLine: CommandLine): ClientConfiguration {
58         val host = cmdLine.stringValue(VES_HV_HOST, DefaultValues.VES_HV_HOST)
59         val port = cmdLine.intValue(VES_HV_PORT, DefaultValues.VES_HV_PORT)
60         val messagesAmount = cmdLine.longValue(MESSAGES_TO_SEND_AMOUNT, DefaultValues.MESSAGES_AMOUNT)
61         return ClientConfiguration(
62                 host,
63                 port,
64                 parseSecurityConfig(cmdLine),
65                 messagesAmount)
66     }
67
68     private fun parseSecurityConfig(cmdLine: CommandLine): SecurityConfiguration {
69         val pkFile = cmdLine.stringValue(PRIVATE_KEY_FILE, DefaultValues.PRIVATE_KEY_FILE)
70         val certFile = cmdLine.stringValue(CERT_FILE, DefaultValues.CERT_FILE)
71         val trustCertFile = cmdLine.stringValue(TRUST_CERT_FILE, DefaultValues.TRUST_CERT_FILE)
72         return SecurityConfiguration(
73                 privateKey = stringPathToPath(pkFile),
74                 cert = stringPathToPath(certFile),
75                 trustedCert = stringPathToPath(trustCertFile))
76     }
77
78 }