aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/main/java/org/onap/usecaseui/server/service/lcm/impl/DefaultCustomerService.java
blob: 8291307a3a81bace23b639eafb4a6d8cbce088bb (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
/**
 * Copyright 2016-2017 ZTE Corporation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.onap.usecaseui.server.service.lcm.impl;

import org.onap.usecaseui.server.service.lcm.CustomerService;
import org.onap.usecaseui.server.service.lcm.domain.aai.AAIService;
import org.onap.usecaseui.server.service.lcm.domain.aai.bean.AAICustomer;
import org.onap.usecaseui.server.service.lcm.domain.aai.bean.AAICustomerRsp;
import org.onap.usecaseui.server.service.lcm.domain.aai.bean.AAIServiceSubscription;
import org.onap.usecaseui.server.service.lcm.domain.aai.bean.ServiceSubscriptionRsp;
import org.onap.usecaseui.server.service.lcm.domain.aai.bean.PInterface;
import org.onap.usecaseui.server.service.lcm.domain.aai.bean.Results;
import org.onap.usecaseui.server.service.lcm.domain.aai.bean.AAINetworkInterfaceResponse;

import org.onap.usecaseui.server.service.lcm.domain.aai.exceptions.AAIException;
import org.onap.usecaseui.server.util.RestfulServices;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.stereotype.Service;

import com.alibaba.fastjson.JSONObject;
import com.fasterxml.jackson.databind.ObjectMapper;

import okhttp3.MediaType;
import okhttp3.RequestBody;
import okhttp3.ResponseBody;
import retrofit2.Response;

import static org.onap.usecaseui.server.util.RestfulServices.extractBody;

import java.io.IOException;
import java.util.Collections;
import java.util.List;
import java.util.ArrayList;

import jakarta.servlet.http.HttpServletRequest;

@Service("CustomerService")
@org.springframework.context.annotation.Configuration
@EnableAspectJAutoProxy
public class DefaultCustomerService implements CustomerService {

    private static final Logger logger = LoggerFactory.getLogger(DefaultCustomerService.class);

    private AAIService aaiService;

    public DefaultCustomerService() {
        this(RestfulServices.create(AAIService.class));
    }

    public DefaultCustomerService(AAIService aaiService) {
        this.aaiService = aaiService;
    }

    @Override
    public List<AAICustomer> listCustomer() {
        try {
            Response<AAICustomerRsp> response = this.aaiService.listCustomer().execute();
            if (response.isSuccessful()) {
                return response.body().getCustomer();
            } else {
                logger.info(String.format("Can not get customers[code=%s, message=%s]", response.code(), response.message()));
                return Collections.emptyList();
            }
        } catch (IOException e) {
            logger.error("list customers occur exception");
            throw new AAIException("AAI is not available.", e);
        }
    }
    
    @Override
    public JSONObject createOrUpdateCustomer(HttpServletRequest request,String customerId){
    		JSONObject result = new JSONObject();
		try {
			logger.info("aai createOrUpdateCustomer is starting!");
			RequestBody requestBody = extractBody(request);
			Response<ResponseBody> response = this.aaiService.createOrUpdateCustomer(customerId,requestBody).execute();
			logger.info("aai createOrUpdateCustomer is finished!");
			if(response.isSuccessful()){
				result.put("status", "SUCCESS");
			}else{
				result.put("status", "FAILED");
				result.put("errorMessage",String.format("Can not get createOrUpdateCustomer[code=%s, message=%s]", response.code(), response.message()));
			}
		} catch (IOException e) {
			result.put("status", "FAILED");
			result.put("errorMessage","createOrUpdateCustomer occur exception:"+e.getMessage());
		}
		return result;
    }
    
    @Override
    public JSONObject getCustomerById(String customerId){
    		JSONObject result = new JSONObject();
		try {
			logger.info("aai getCustomerById is starting!");
			Response<AAICustomer> response = this.aaiService.getCustomerById(customerId).execute();
			logger.info("aai getCustomerById is finished!");
			if(response.isSuccessful()){
				result.put("status", "SUCCESS");
				result.put("result",response.body());
			}else{
				result.put("status", "FAILED");
				result.put("errorMessage",String.format("Can not get getCustomerById[code=%s, message=%s]", response.code(), response.message()));
			}
		} catch (IOException e) {
			result.put("status", "FAILED");
			result.put("errorMessage","getCustomerById occur exception:"+e.getMessage());
		}
		return result;
    }
    
    @Override
    public JSONObject deleteCustomer(String customerId,String resourceVersion){
		JSONObject result = new JSONObject();
		try {
			logger.info("aai deleteCustomer is starting!");
			Response<ResponseBody> response = this.aaiService.deleteCustomer(customerId,resourceVersion).execute();
			logger.info("aai deleteCustomer is finished!");
			if(response.isSuccessful()){
				result.put("status", "SUCCESS");
			}else{
				result.put("status", "FAILED");
				result.put("errorMessage",String.format("Can not get deleteCustomer[code=%s, message=%s]", response.code(), response.message()));
			}
		} catch (IOException e) {
			result.put("status", "FAILED");
			if(e.getMessage().contains("204")){
				result.put("status", "SUCCESS");
			}
			result.put("errorMessage","deleteCustomer occur exception:"+e.getMessage());
		}
		return result;
    }
    
    @Override
    public List<AAIServiceSubscription> listServiceSubscriptions(String serviceType) {
        try {
            Response<ServiceSubscriptionRsp> response = this.aaiService.listServiceSubscriptions(serviceType).execute();
            if (response.isSuccessful()) {
                return response.body().getServiceSubscriptions();
            } else {
                logger.info(String.format("Can not get service-subscriptions[code=%s, message=%s]", response.code(), response.message()));
                return Collections.emptyList();
            }
        } catch (IOException e) {
            logger.error("list customers occur exception");
            throw new AAIException("AAI is not available.", e);
        }
    }
    
    @Override
    public JSONObject createOrUpdateServiceType(HttpServletRequest request,String serviceType,String customerId){
		JSONObject result = new JSONObject();
		try {
			logger.info("aai createOrUpdateServiceType is starting!");
			RequestBody requestBody = extractBody(request);
			Response<ResponseBody> response = this.aaiService.createOrUpdateServiceType(customerId,serviceType,requestBody).execute();
			logger.info("aai createOrUpdateServiceType is finished!");
			if(response.isSuccessful()){
				result.put("status", "SUCCESS");
			}else{
				result.put("status", "FAILED");
				result.put("errorMessage",String.format("Can not get createOrUpdateServiceType[code=%s, message=%s]", response.code(), response.message()));
			}
		} catch (IOException e) {
			result.put("status", "FAILED");
			result.put("errorMessage","createOrUpdateServiceType occur exception:"+e.getMessage());
		}
		return result;
    }
    
    @Override
    public JSONObject deleteServiceType(String customerId,String serviceType,String resourceVersion){
		JSONObject result = new JSONObject();
		try {
			logger.info("aai deleteServiceType is starting!");
			Response<ResponseBody> response = this.aaiService.deleteServiceType(customerId,serviceType,resourceVersion).execute();
			logger.info("aai deleteServiceType is finished!");
			if(response.isSuccessful()){
				result.put("status", "SUCCESS");
			}else{
				result.put("status", "FAILED");
				result.put("errorMessage",String.format("Can not get deleteServiceType[code=%s, message=%s]", response.code(), response.message()));
			}
		} catch (IOException e) {
			result.put("status", "FAILED");
			if(e.getMessage().contains("204")){
				result.put("status", "SUCCESS");
			}
			result.put("errorMessage","deleteServiceType occur exception:"+e.getMessage());
		}
		return result;
    }
    
    @Override
    public JSONObject getServiceTypeById(String customerId, String serviceType) {
        JSONObject result = new JSONObject();
        try {
            logger.info("aai getServiceTypeById is starting!");
            Response<AAIServiceSubscription> response =
                    this.aaiService.getServiceTypeById(customerId, serviceType).execute();
            logger.info("aai getServiceTypeById is finished!");
            if (response.isSuccessful()) {
                result.put("status", "SUCCESS");
                result.put("result", response.body());
            } else {
                result.put("status", "FAILED");
                result.put("errorMessage", String.format("Can not get getServiceTypeById[code=%s, message=%s]",
                        response.code(), response.message()));
            }
        } catch (IOException e) {
            result.put("status", "FAILED");
            result.put("errorMessage", "getServiceTypeById occur exception:" + e.getMessage());
        }
        return result;
    }
        
        @Override
    public List<String> fetchNIList(String networkInterfaceType) {
        List<String> niList = new ArrayList<String>();
        AAINetworkInterfaceResponse niResponse = null;
        ObjectMapper mapper = new ObjectMapper();
        Results[] interfaceList = null;
        try {
            logger.info("aai fetchNIList is starting!");
            String body = "{\r\n" + "\"start\" : [\"network\"],\r\n" + "\"query\" : \"query/getInterfaceTypes?porttype="
                    + networkInterfaceType + "\"\r\n" + "}";
            logger.info("request body {} for Interface type {}" , body,networkInterfaceType);
            RequestBody request = RequestBody.create(MediaType.parse("application/json"), body);
            Response<ResponseBody> response = this.aaiService.querynNetworkResourceList(request).execute();
            if (response.isSuccessful()) {
                String jsonResponse = response.body().string();
                logger.info("response json returned {}", jsonResponse);
                try {
                    niResponse = mapper.readValue(jsonResponse, AAINetworkInterfaceResponse.class);
                } catch (IOException ex) {
                    logger.info("read value exception", ex);
                }
                if (niResponse != null) {
                    interfaceList = niResponse.getResults();
                }
                for (Results result : interfaceList) {
                    PInterface pInterface = result.getPinterface();
                    niList.add(pInterface.getInterfaceName() + " (" + pInterface.getPortDescription() + ")");
                }
            } else {
                logger.error("Request to AAI Fails dues to {} " , response.errorBody());
                throw new IOException(response.errorBody().toString());
            }
        } catch (Exception e) {
            niResponse = null;
            logger.info("Request to AAI Fails dues to " + e);
            logger.info("Mocking Response Data");

            String jsonMock = "{\r\n" + "    \"results\": [\r\n" + "        {\r\n"
                    + "            \"p-interface\": {\r\n"
                    + "                \"interface-name\": \"nodeId-11.11.11.12-ltpId-2\",\r\n"
                    + "                \"speed-value\": \"100\",\r\n" + "                \"speed-units\": \"Gbps\",\r\n"
                    + "                \"port-description\": \"\",\r\n"
                    + "                \"interface-type\": \"XPONDER-NETWORK\",\r\n"
                    + "                \"network-interface-type\": \"ENNI\",\r\n"
                    + "                \"resource-version\": \"1572522050145\",\r\n"
                    + "                \"in-maint\": true,\r\n"
                    + "                \"network-ref\": \"otn-topology\",\r\n"
                    + "                \"operational-status\": \"up\",\r\n"
                    + "                \"relationship-list\": {\r\n" + "                    \"relationship\": [\r\n"
                    + "                        {\r\n"
                    + "                            \"related-to\": \"logical-link\",\r\n"
                    + "                            \"relationship-label\": \"tosca.relationships.network.LinksTo\",\r\n"
                    + "                            \"related-link\": \"/aai/v16/network/logical-links/logical-link/nodeId-11.11.11.12-ltpId-2_nodeId-12.12.12.12-ltpId-1\",\r\n"
                    + "                            \"relationship-data\": [\r\n"
                    + "                                {\r\n"
                    + "                                    \"relationship-key\": \"logical-link.link-name\",\r\n"
                    + "                                    \"relationship-value\": \"nodeId-11.11.11.12-ltpId-2_nodeId-12.12.12.12-ltpId-1\"\r\n"
                    + "                                }\r\n" + "                            ]\r\n"
                    + "                        }\r\n" + "                    ]\r\n" + "                }\r\n"
                    + "           }\r\n" + "        },\r\n" + "        {\r\n" + "            \"p-interface\": {\r\n"
                    + "                \"interface-name\": \"nodeId-12.12.12.12-ltpId-1\",\r\n"
                    + "                \"speed-value\": \"100\",\r\n" + "                \"speed-units\": \"Gbps\",\r\n"
                    + "                \"port-description\": \"\",\r\n"
                    + "                \"interface-type\": \"XPONDER-NETWORK\",\r\n"
                    + "                \"network-interface-type\": \"ENNI\",\r\n"
                    + "                \"resource-version\": \"1572522469912\",\r\n"
                    + "                \"in-maint\": true,\r\n"
                    + "                \"network-ref\": \"tapi-topology\",\r\n"
                    + "                \"operational-status\": \"up\",\r\n"
                    + "                \"relationship-list\": {\r\n" + "                    \"relationship\": [\r\n"
                    + "                        {\r\n"
                    + "                            \"related-to\": \"logical-link\",\r\n"
                    + "                            \"relationship-label\": \"tosca.relationships.network.LinksTo\",\r\n"
                    + "                            \"related-link\": \"/aai/v16/network/logical-links/logical-link/nodeId-11.11.11.12-ltpId-2_nodeId-12.12.12.12-ltpId-1\",\r\n"
                    + "                            \"relationship-data\": [\r\n"
                    + "                                {\r\n"
                    + "                                    \"relationship-key\": \"logical-link.link-name\",\r\n"
                    + "                                    \"relationship-value\": \"nodeId-11.11.11.12-ltpId-2_nodeId-12.12.12.12-ltpId-1\"\r\n"
                    + "                                }\r\n" + "                            ]\r\n"
                    + "                        }\r\n" + "                    ]\r\n" + "                }\r\n"
                    + "            }\r\n" + "        }\r\n" + "    ]\r\n" + "}\r\n" + "";

            try {
                niResponse = mapper.readValue(jsonMock, AAINetworkInterfaceResponse.class);
            } catch (IOException ex) {
                logger.info("ReadValue exception", ex);
            }

            if (niResponse != null) {
                interfaceList = niResponse.getResults();
            }
            for (Results result : interfaceList) {
                PInterface pInterface = result.getPinterface();
                niList.add(pInterface.getInterfaceName());
            }
        
	}
	Collections.sort(niList);
        return niList;
    }

}