Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / nats-lib / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / nats / service / TLSAuthNatsService.kt
1 /*
2  * Copyright © 2018-2019 AT&T Intellectual Property.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.blueprintsprocessor.nats.service
18
19 import io.nats.client.Nats
20 import io.nats.client.Options
21 import io.nats.streaming.NatsStreaming
22 import io.nats.streaming.StreamingConnection
23 import org.onap.ccsdk.cds.blueprintsprocessor.nats.TLSAuthNatsConnectionProperties
24 import org.onap.ccsdk.cds.controllerblueprints.core.splitCommaAsList
25 import javax.net.ssl.SSLContext
26
27 open class TLSAuthNatsService(private val natsConnectionProperties: TLSAuthNatsConnectionProperties) :
28     BlueprintNatsService {
29
30     lateinit var streamingConnection: StreamingConnection
31
32     override suspend fun connection(): StreamingConnection {
33         if (!::streamingConnection.isInitialized) {
34             val serverList = natsConnectionProperties.host.splitCommaAsList()
35
36             val options = Options.Builder()
37                 .connectionName(natsConnectionProperties.clientId)
38                 .servers(serverList.toTypedArray())
39                 // .sslContext(sslContext())
40                 .build()
41             val natsConnection = Nats.connect(options)
42             val streamingOptions = io.nats.streaming.Options.Builder().natsConn(natsConnection).build()
43             streamingConnection = NatsStreaming.connect(
44                 natsConnectionProperties.clusterId,
45                 natsConnectionProperties.clientId, streamingOptions
46             )
47         }
48         return streamingConnection
49     }
50
51     fun sslContext(): SSLContext {
52         TODO("Implement NATS SSL Context")
53     }
54 }