Containerization feature of SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / OrchestrationRequests.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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
21 package org.onap.so.apihandlerinfra;
22
23 import java.io.IOException;
24 import java.text.SimpleDateFormat;
25 import java.util.ArrayList;
26 import java.util.List;
27 import java.util.Map;
28
29 import javax.transaction.Transactional;
30 import javax.ws.rs.Consumes;
31 import javax.ws.rs.GET;
32 import javax.ws.rs.POST;
33 import javax.ws.rs.Path;
34 import javax.ws.rs.PathParam;
35 import javax.ws.rs.Produces;
36 import javax.ws.rs.core.Context;
37 import javax.ws.rs.core.MediaType;
38 import javax.ws.rs.core.MultivaluedMap;
39 import javax.ws.rs.core.Response;
40 import javax.ws.rs.core.UriInfo;
41
42 import org.apache.commons.lang.StringUtils;
43 import org.apache.http.HttpStatus;
44 import org.onap.so.apihandler.common.ErrorNumbers;
45 import org.onap.so.apihandler.common.ResponseBuilder;
46 import org.onap.so.apihandlerinfra.exceptions.ApiException;
47 import org.onap.so.apihandlerinfra.exceptions.ValidateException;
48 import org.onap.so.apihandlerinfra.logging.AlarmLoggerInfo;
49 import org.onap.so.apihandlerinfra.logging.ErrorLoggerInfo;
50 import org.onap.so.db.request.beans.InfraActiveRequests;
51 import org.onap.so.db.request.data.repository.InfraActiveRequestsRepository;
52 import org.onap.so.exceptions.ValidationException;
53 import org.onap.so.logger.MessageEnum;
54 import org.onap.so.logger.MsoAlarmLogger;
55 import org.onap.so.logger.MsoLogger;
56 import org.onap.so.serviceinstancebeans.GetOrchestrationListResponse;
57 import org.onap.so.serviceinstancebeans.GetOrchestrationResponse;
58 import org.onap.so.serviceinstancebeans.InstanceReferences;
59 import org.onap.so.serviceinstancebeans.Request;
60 import org.onap.so.serviceinstancebeans.RequestDetails;
61 import org.onap.so.serviceinstancebeans.RequestList;
62 import org.onap.so.serviceinstancebeans.RequestStatus;
63 import org.onap.so.serviceinstancebeans.ServiceInstancesRequest;
64 import org.springframework.beans.factory.annotation.Autowired;
65 import org.springframework.stereotype.Component;
66
67 import com.fasterxml.jackson.databind.ObjectMapper;
68
69 import io.swagger.annotations.Api;
70 import io.swagger.annotations.ApiOperation;
71
72 @Path("onap/so/infra/orchestrationRequests")
73 @Api(value="onap/so/infra/orchestrationRequests",description="API Requests for Orchestration requests")
74 @Component
75 public class OrchestrationRequests {
76
77     private static MsoLogger msoLogger = MsoLogger.getMsoLogger (MsoLogger.Catalog.APIH, OrchestrationRequests.class);
78     
79     private static MsoAlarmLogger alarmLogger = new MsoAlarmLogger ();
80     
81     @Autowired
82     private InfraActiveRequestsRepository infraActiveRequestsRepository;
83     
84     @Autowired
85     private MsoRequest msoRequest;
86     
87         @Autowired
88         private ResponseBuilder builder;
89
90         @GET
91         @Path("/{version:[vV][4-7]}/{requestId}")
92         @ApiOperation(value="Find Orchestrated Requests for a given requestId",response=Response.class)
93         @Produces(MediaType.APPLICATION_JSON)
94         @Transactional
95         public Response getOrchestrationRequest(@PathParam("requestId") String requestId, @PathParam("version") String version) throws ApiException{
96
97                 String apiVersion = version.substring(1);
98                 GetOrchestrationResponse orchestrationResponse = new GetOrchestrationResponse();
99
100
101                 InfraActiveRequests requestDB = null;
102
103                 try {
104                         requestDB = infraActiveRequestsRepository.findOneByRequestIdOrClientRequestId(requestId, requestId);
105                 } catch (Exception e) {
106
107                         ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_DB_ACCESS_EXC, MsoLogger.ErrorCode.AvailabilityError).build();
108                         AlarmLoggerInfo alarmLoggerInfo = new AlarmLoggerInfo.Builder("MsoDatabaseAccessError", MsoAlarmLogger.CRITICAL, Messages.errors.get(ErrorNumbers.NO_COMMUNICATION_TO_REQUESTS_DB)).build();
109
110
111
112                         ValidateException validateException = new ValidateException.Builder("Exception while communciate with Request DB - Infra Request Lookup",
113                                         HttpStatus.SC_NOT_FOUND,ErrorNumbers.NO_COMMUNICATION_TO_REQUESTS_DB).cause(e).errorInfo(errorLoggerInfo).alarmInfo(alarmLoggerInfo).build();
114
115                         throw validateException;
116
117                 }
118
119         if(requestDB == null) {
120
121             ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_BPEL_COMMUNICATE_ERROR, MsoLogger.ErrorCode.BusinessProcesssError).build();
122
123
124             ValidateException validateException = new ValidateException.Builder("Orchestration RequestId " + requestId + " is not found in DB",
125                     HttpStatus.SC_NO_CONTENT, ErrorNumbers.SVC_DETAILED_SERVICE_ERROR).errorInfo(errorLoggerInfo).build();
126
127             throw validateException;
128         }
129
130         Request request = mapInfraActiveRequestToRequest(requestDB);
131
132         orchestrationResponse.setRequest(request);
133         
134         return builder.buildResponse(HttpStatus.SC_OK, requestId, orchestrationResponse, apiVersion);
135         }
136
137         @GET
138         @Path("/{version:[vV][4-7]}")
139         @ApiOperation(value="Find Orchestrated Requests for a URI Information",response=Response.class)
140         @Produces(MediaType.APPLICATION_JSON)
141         @Transactional
142         public Response getOrchestrationRequest(@Context UriInfo ui, @PathParam("version") String version) throws ApiException{
143
144                 long startTime = System.currentTimeMillis ();
145                 
146                 MultivaluedMap<String, String> queryParams = ui.getQueryParameters();
147
148                 List<InfraActiveRequests> activeRequests = null;
149
150                 GetOrchestrationListResponse orchestrationList = null;
151                 Map<String, List<String>> orchestrationMap;
152                 String apiVersion = version.substring(1);
153                 
154                 try {
155                         orchestrationMap = msoRequest.getOrchestrationFilters(queryParams);
156                         if (orchestrationMap.isEmpty()) {
157                                 throw new ValidationException("At least one filter query param must be specified");
158                         }
159                 }catch(ValidationException ex){
160                         ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, MsoLogger.ErrorCode.DataError).build();
161
162
163                         ValidateException validateException = new ValidateException.Builder(ex.getMessage(),
164                                         HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_GENERAL_SERVICE_ERROR).cause(ex).errorInfo(errorLoggerInfo).build();
165
166                         throw validateException;
167
168                 }
169                         
170                 activeRequests = infraActiveRequestsRepository.getOrchestrationFiltersFromInfraActive(orchestrationMap);
171
172                 orchestrationList = new GetOrchestrationListResponse();
173                 List<RequestList> requestLists = new ArrayList<>();
174                 
175                 for(InfraActiveRequests infraActive : activeRequests){
176                         RequestList requestList = new RequestList();
177                         Request request = mapInfraActiveRequestToRequest(infraActive);
178                         requestList.setRequest(request);
179                         requestLists.add(requestList);
180                 }
181
182                 orchestrationList.setRequestList(requestLists);
183                 return builder.buildResponse(HttpStatus.SC_OK, null, orchestrationList, apiVersion);
184         }
185
186
187         @POST
188         @Path("/{version: [vV][4-7]}/{requestId}/unlock")
189         @Consumes(MediaType.APPLICATION_JSON)
190         @Produces(MediaType.APPLICATION_JSON)
191         @ApiOperation(value="Unlock Orchestrated Requests for a given requestId",response=Response.class)
192         @Transactional
193         public Response unlockOrchestrationRequest(String requestJSON, @PathParam("requestId") String requestId, @PathParam("version") String version) throws ApiException{
194
195                 long startTime = System.currentTimeMillis ();
196                 msoLogger.debug ("requestId is: " + requestId);
197                 ServiceInstancesRequest sir = null;
198
199                 InfraActiveRequests infraActiveRequest = null;
200                 Request request = null;
201                 
202                 try{
203                         ObjectMapper mapper = new ObjectMapper();
204                         sir = mapper.readValue(requestJSON, ServiceInstancesRequest.class);
205                 } catch(IOException e){
206
207             ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, MsoLogger.ErrorCode.SchemaError).build();
208
209
210             ValidateException validateException = new ValidateException.Builder("Mapping of request to JSON object failed : " + e.getMessage(),
211                     HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_BAD_PARAMETER).cause(e).errorInfo(errorLoggerInfo).build();
212
213             throw validateException;
214
215                 }
216                 try{
217                         msoRequest.parseOrchestration(sir);
218                 } catch (Exception e) {
219                         ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, MsoLogger.ErrorCode.SchemaError).build();
220                          ValidateException validateException = new ValidateException.Builder("Error parsing request: " + e.getMessage(), HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_BAD_PARAMETER).cause(e)
221                          .errorInfo(errorLoggerInfo).build();
222             throw validateException;
223                 }
224
225                 infraActiveRequest = infraActiveRequestsRepository.findOneByRequestIdOrClientRequestId(requestId, requestId);
226                 if(infraActiveRequest == null) {
227                         ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_DB_ATTRIBUTE_NOT_FOUND, MsoLogger.ErrorCode.BusinessProcesssError).build();
228
229
230                         ValidateException validateException = new ValidateException.Builder("Null response from RequestDB when searching by RequestId",
231                                         HttpStatus.SC_NOT_FOUND, ErrorNumbers.SVC_DETAILED_SERVICE_ERROR).errorInfo(errorLoggerInfo).build();
232
233                         throw validateException;
234
235                 }else{
236                         String status = infraActiveRequest.getRequestStatus();
237                         if(status.equalsIgnoreCase("IN_PROGRESS") || status.equalsIgnoreCase("PENDING") || status.equalsIgnoreCase("PENDING_MANUAL_TASK")){
238                                 infraActiveRequest.setRequestStatus("UNLOCKED");
239                                 infraActiveRequest.setLastModifiedBy(Constants.MODIFIED_BY_APIHANDLER);
240                                 infraActiveRequestsRepository.save(infraActiveRequest);
241                         }else{
242
243                                 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_DB_ATTRIBUTE_NOT_FOUND, MsoLogger.ErrorCode.DataError).build();
244
245
246                                 ValidateException validateException = new ValidateException.Builder("Orchestration RequestId " + requestId + " has a status of " + status + " and can not be unlocked",
247                                                 HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_DETAILED_SERVICE_ERROR).errorInfo(errorLoggerInfo).build();
248
249                                 throw validateException;
250                         }
251                 }
252                 return Response.status (HttpStatus.SC_NO_CONTENT).entity ("").build ();
253         }
254
255     private Request mapInfraActiveRequestToRequest(InfraActiveRequests iar)  throws ApiException{
256
257         String requestBody = iar.getRequestBody();
258         Request request = new Request();
259         
260         ObjectMapper mapper = new ObjectMapper();      
261
262        request.setRequestId(iar.getRequestId());
263        request.setRequestScope(iar.getRequestScope());
264        request.setRequestType(iar.getRequestAction());
265
266        InstanceReferences ir = new InstanceReferences();
267        if(iar.getNetworkId() != null)
268         ir.setNetworkInstanceId(iar.getNetworkId());
269        if(iar.getNetworkName() != null)
270         ir.setNetworkInstanceName(iar.getNetworkName());
271        if(iar.getServiceInstanceId() != null)
272         ir.setServiceInstanceId(iar.getServiceInstanceId());
273        if(iar.getServiceInstanceName() != null)
274         ir.setServiceInstanceName(iar.getServiceInstanceName());
275        if(iar.getVfModuleId() != null)
276         ir.setVfModuleInstanceId(iar.getVfModuleId());
277        if(iar.getVfModuleName() != null)
278         ir.setVfModuleInstanceName(iar.getVfModuleName());
279        if(iar.getVnfId() != null)
280         ir.setVnfInstanceId(iar.getVnfId());
281        if(iar.getVnfName() != null)
282         ir.setVnfInstanceName(iar.getVnfName());
283        if(iar.getVolumeGroupId() != null)
284         ir.setVolumeGroupInstanceId(iar.getVolumeGroupId());
285        if(iar.getVolumeGroupName() != null)
286         ir.setVolumeGroupInstanceName(iar.getVolumeGroupName());
287                 if(iar.getRequestorId() != null)
288                         ir.setRequestorId(iar.getRequestorId());
289
290
291                 request.setInstanceReferences(ir);
292
293        RequestDetails requestDetails = null;
294
295        if(StringUtils.isNotBlank(requestBody)) {
296                    try {
297                            if(requestBody.contains("\"requestDetails\":")){
298                                    ServiceInstancesRequest sir = mapper.readValue(requestBody, ServiceInstancesRequest.class);
299                                    requestDetails = sir.getRequestDetails();
300                            } else {
301                                    requestDetails = mapper.readValue(requestBody, RequestDetails.class);
302                            }
303                    } catch (IOException e) {
304
305                            ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, MsoLogger.ErrorCode.SchemaError).build();
306                            ValidateException validateException = new ValidateException.Builder("Mapping of request to JSON object failed : ",
307                                            HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_BAD_PARAMETER).cause(e).errorInfo(errorLoggerInfo).build();
308
309                            throw validateException;
310                    }
311            }
312        request.setRequestDetails(requestDetails);
313        
314        if(iar.getStartTime() != null) {
315                String startTimeStamp = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss").format(iar.getStartTime()) + " GMT";
316                request.setStartTime(startTimeStamp);
317        }
318
319        RequestStatus status = new RequestStatus();
320        if(iar.getStatusMessage() != null){
321            status.setStatusMessage(iar.getStatusMessage());
322        }
323
324        if(iar.getEndTime() != null){
325            String endTimeStamp = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss").format(iar.getEndTime()) + " GMT";
326            status.setFinishTime(endTimeStamp);
327        }
328
329
330        if(iar.getRequestStatus() != null){
331            status.setRequestState(iar.getRequestStatus());
332        }
333
334        if(iar.getProgress() != null){
335            status.setPercentProgress(iar.getProgress().intValue());
336        }
337
338        request.setRequestStatus(status);
339
340        return request;
341    }
342  }