blob: 1e13d0eb694f4dad92ccc7a5c87434af291d6ec4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
package org.openecomp.vid.controller;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.apache.commons.io.IOUtils;
import org.json.JSONObject;
import org.json.JSONTokener;
import org.openecomp.vid.aai.AaiClient;
import org.openecomp.vid.aai.AaiClientInterface;
import org.openecomp.vid.asdc.AsdcClient;
import org.openecomp.vid.asdc.local.LocalAsdcClient;
import org.openecomp.vid.asdc.memory.InMemoryAsdcClient;
import org.openecomp.vid.asdc.parser.ToscaParserImpl2;
import org.openecomp.vid.asdc.rest.RestfulAsdcClient;
import org.openecomp.vid.properties.AsdcClientConfiguration;
import org.openecomp.vid.properties.AsdcClientConfiguration.AsdcClientType;
import org.openecomp.vid.services.AaiService;
import org.openecomp.vid.services.AaiServiceImpl;
import org.openecomp.vid.services.VidService;
import org.openecomp.vid.services.VidServiceImpl;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import javax.net.ssl.SSLContext;
import javax.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.net.URISyntaxException;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
import java.util.Arrays;
@Configuration
public class WebConfig {
/**
* Gets the object mapper.
*
* @return the object mapper
*/
@Bean
public ObjectMapper getObjectMapper() {
return new ObjectMapper();
}
@Bean
public VidService vidService(AsdcClient asdcClient) {
return new VidServiceImpl(asdcClient);
}
@Bean
public AaiService getAaiService(){
return new AaiServiceImpl();
}
@Bean
public AaiClientInterface getAaiClientInterface(){
return new AaiClient();
}
@Bean
public AsdcClient asdcClient(AsdcClientConfiguration asdcClientConfig) throws IOException {
switch (asdcClientConfig.getAsdcClientType()) {
case IN_MEMORY:
final InputStream asdcCatalogFile = VidController.class.getClassLoader().getResourceAsStream("catalog.json");
final JSONTokener tokener = new JSONTokener(asdcCatalogFile);
final JSONObject catalog = new JSONObject(tokener);
return new InMemoryAsdcClient.Builder().catalog(catalog).build();
case REST:
final String protocol = asdcClientConfig.getAsdcClientProtocol();
final String host = asdcClientConfig.getAsdcClientHost();
final int port = asdcClientConfig.getAsdcClientPort();
final String auth = asdcClientConfig.getAsdcClientAuth();
Client cl = null;
if (protocol.equalsIgnoreCase("https")) {
try {
SSLContext ctx = SSLContext.getInstance("TLSv1.2");
ctx.init(null, null, null);
cl = ClientBuilder.newBuilder().sslContext(ctx).build();
} catch (NoSuchAlgorithmException n) {
throw new RuntimeException("SDC Client could not be instantiated due to unsupported protocol TLSv1.2", n);
} catch (KeyManagementException k) {
throw new RuntimeException("SDC Client could not be instantiated due to a key management exception", k);
}
} else {
cl = ClientBuilder.newBuilder().build();
}
try {
final URI uri = new URI(protocol + "://" + host + ":" + port + "/");
return new RestfulAsdcClient.Builder(cl, uri)
.auth(auth)
.build();
} catch (URISyntaxException e) {
throw new RuntimeException("SDC Client could not be instantiated due to a syntax error in the URI", e);
}
case LOCAL:
final InputStream asdcServicesFile = VidController.class.getClassLoader().getResourceAsStream("sdcservices.json");
final JSONTokener jsonTokener = new JSONTokener(IOUtils.toString(asdcServicesFile));
final JSONObject sdcServicesCatalog = new JSONObject(jsonTokener);
return new LocalAsdcClient.Builder().catalog(sdcServicesCatalog).build();
default:
throw new RuntimeException(asdcClientConfig.getAsdcClientType() + " is invalid; must be one of " + Arrays.toString(AsdcClientType.values()));
}
}
@Bean
public ToscaParserImpl2 getToscaParser() {
return new ToscaParserImpl2();
}
}
|