3a944473d967cae4531a5039670aacc7b9d836b3
[so.git] /
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.exceptions.ValidationException;
52 import org.onap.so.logger.MessageEnum;
53 import org.onap.so.logger.MsoAlarmLogger;
54 import org.onap.so.logger.MsoLogger;
55 import org.onap.so.serviceinstancebeans.GetOrchestrationListResponse;
56 import org.onap.so.serviceinstancebeans.GetOrchestrationResponse;
57 import org.onap.so.serviceinstancebeans.InstanceReferences;
58 import org.onap.so.serviceinstancebeans.Request;
59 import org.onap.so.serviceinstancebeans.RequestDetails;
60 import org.onap.so.serviceinstancebeans.RequestList;
61 import org.onap.so.serviceinstancebeans.RequestStatus;
62 import org.onap.so.serviceinstancebeans.ServiceInstancesRequest;
63 import org.springframework.beans.factory.annotation.Autowired;
64 import org.springframework.stereotype.Component;
65
66 import com.fasterxml.jackson.databind.ObjectMapper;
67
68 import io.swagger.annotations.Api;
69 import io.swagger.annotations.ApiOperation;
70
71 @Path("onap/so/infra/orchestrationRequests")
72 @Api(value="onap/so/infra/orchestrationRequests",description="API Requests for Orchestration requests")
73 @Component
74 public class OrchestrationRequests {
75
76     private static MsoLogger msoLogger = MsoLogger.getMsoLogger (MsoLogger.Catalog.APIH, OrchestrationRequests.class);
77     
78
79     @Autowired
80         private RequestsDbClient requestsDbClient;
81
82     @Autowired
83     private MsoRequest msoRequest;
84     
85         @Autowired
86         private ResponseBuilder builder;
87
88         @GET
89         @Path("/{version:[vV][4-7]}/{requestId}")
90         @ApiOperation(value="Find Orchestrated Requests for a given requestId",response=Response.class)
91         @Produces(MediaType.APPLICATION_JSON)
92         @Transactional
93         public Response getOrchestrationRequest(@PathParam("requestId") String requestId, @PathParam("version") String version) throws ApiException{
94
95                 String apiVersion = version.substring(1);
96                 GetOrchestrationResponse orchestrationResponse = new GetOrchestrationResponse();
97
98
99                 InfraActiveRequests requestDB = null;
100
101                 try {
102                         requestDB = requestsDbClient.getInfraActiveRequestbyRequestId(requestId);
103
104                 } catch (Exception e) {
105
106                         ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_DB_ACCESS_EXC, MsoLogger.ErrorCode.AvailabilityError).build();
107                         AlarmLoggerInfo alarmLoggerInfo = new AlarmLoggerInfo.Builder("MsoDatabaseAccessError", MsoAlarmLogger.CRITICAL, Messages.errors.get(ErrorNumbers.NO_COMMUNICATION_TO_REQUESTS_DB)).build();
108
109
110
111                         ValidateException validateException = new ValidateException.Builder("Exception while communciate with Request DB - Infra Request Lookup",
112                                         HttpStatus.SC_NOT_FOUND,ErrorNumbers.NO_COMMUNICATION_TO_REQUESTS_DB).cause(e).errorInfo(errorLoggerInfo).alarmInfo(alarmLoggerInfo).build();
113
114                         throw validateException;
115
116                 }
117
118         if(requestDB == null) {
119
120             ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_BPEL_COMMUNICATE_ERROR, MsoLogger.ErrorCode.BusinessProcesssError).build();
121
122
123             ValidateException validateException = new ValidateException.Builder("Orchestration RequestId " + requestId + " is not found in DB",
124                     HttpStatus.SC_NO_CONTENT, ErrorNumbers.SVC_DETAILED_SERVICE_ERROR).errorInfo(errorLoggerInfo).build();
125
126             throw validateException;
127         }
128
129         Request request = mapInfraActiveRequestToRequest(requestDB);
130                 request.setRequestId(requestId);
131         orchestrationResponse.setRequest(request);
132         
133         return builder.buildResponse(HttpStatus.SC_OK, requestId, orchestrationResponse, apiVersion);
134         }
135
136         @GET
137         @Path("/{version:[vV][4-7]}")
138         @ApiOperation(value="Find Orchestrated Requests for a URI Information",response=Response.class)
139         @Produces(MediaType.APPLICATION_JSON)
140         @Transactional
141         public Response getOrchestrationRequest(@Context UriInfo ui, @PathParam("version") String version) throws ApiException{
142
143                 long startTime = System.currentTimeMillis ();
144                 
145                 MultivaluedMap<String, String> queryParams = ui.getQueryParameters();
146
147                 List<InfraActiveRequests> activeRequests = null;
148
149                 GetOrchestrationListResponse orchestrationList = null;
150                 Map<String, List<String>> orchestrationMap;
151                 String apiVersion = version.substring(1);
152                 
153                 try {
154                         orchestrationMap = msoRequest.getOrchestrationFilters(queryParams);
155                         if (orchestrationMap.isEmpty()) {
156                                 throw new ValidationException("At least one filter query param must be specified");
157                         }
158                 }catch(ValidationException ex){
159                         ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, MsoLogger.ErrorCode.DataError).build();
160
161
162                         ValidateException validateException = new ValidateException.Builder(ex.getMessage(),
163                                         HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_GENERAL_SERVICE_ERROR).cause(ex).errorInfo(errorLoggerInfo).build();
164
165                         throw validateException;
166
167                 }
168                         
169                 activeRequests = requestsDbClient.getOrchestrationFiltersFromInfraActive(orchestrationMap);
170
171                 orchestrationList = new GetOrchestrationListResponse();
172                 List<RequestList> requestLists = new ArrayList<>();
173                 
174                 for(InfraActiveRequests infraActive : activeRequests){
175                         RequestList requestList = new RequestList();
176                         Request request = mapInfraActiveRequestToRequest(infraActive);
177                         requestList.setRequest(request);
178                         requestLists.add(requestList);
179                 }
180
181                 orchestrationList.setRequestList(requestLists);
182                 return builder.buildResponse(HttpStatus.SC_OK, null, orchestrationList, apiVersion);
183         }
184
185
186         @POST
187         @Path("/{version: [vV][4-7]}/{requestId}/unlock")
188         @Consumes(MediaType.APPLICATION_JSON)
189         @Produces(MediaType.APPLICATION_JSON)
190         @ApiOperation(value="Unlock Orchestrated Requests for a given requestId",response=Response.class)
191         @Transactional
192         public Response unlockOrchestrationRequest(String requestJSON, @PathParam("requestId") String requestId, @PathParam("version") String version) throws ApiException{
193
194                 long startTime = System.currentTimeMillis ();
195                 msoLogger.debug ("requestId is: " + requestId);
196                 ServiceInstancesRequest sir = null;
197
198                 InfraActiveRequests infraActiveRequest = null;
199                 Request request = null;
200                 
201                 try{
202                         ObjectMapper mapper = new ObjectMapper();
203                         sir = mapper.readValue(requestJSON, ServiceInstancesRequest.class);
204                 } catch(IOException e){
205
206             ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, MsoLogger.ErrorCode.SchemaError).build();
207
208
209             ValidateException validateException = new ValidateException.Builder("Mapping of request to JSON object failed : " + e.getMessage(),
210                     HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_BAD_PARAMETER).cause(e).errorInfo(errorLoggerInfo).build();
211
212             throw validateException;
213
214                 }
215                 try{
216                         msoRequest.parseOrchestration(sir);
217                 } catch (Exception e) {
218                         ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, MsoLogger.ErrorCode.SchemaError).build();
219                          ValidateException validateException = new ValidateException.Builder("Error parsing request: " + e.getMessage(), HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_BAD_PARAMETER).cause(e)
220                          .errorInfo(errorLoggerInfo).build();
221             throw validateException;
222                 }
223
224                 infraActiveRequest = requestsDbClient.getInfraActiveRequestbyRequestId(requestId);
225                 if(infraActiveRequest == null) {
226                         ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_DB_ATTRIBUTE_NOT_FOUND, MsoLogger.ErrorCode.BusinessProcesssError).build();
227
228
229                         ValidateException validateException = new ValidateException.Builder("Null response from RequestDB when searching by RequestId",
230                                         HttpStatus.SC_NOT_FOUND, ErrorNumbers.SVC_DETAILED_SERVICE_ERROR).errorInfo(errorLoggerInfo).build();
231
232                         throw validateException;
233
234                 }else{
235                         String status = infraActiveRequest.getRequestStatus();
236                         if(status.equalsIgnoreCase("IN_PROGRESS") || status.equalsIgnoreCase("PENDING") || status.equalsIgnoreCase("PENDING_MANUAL_TASK")){
237                                 infraActiveRequest.setRequestStatus("UNLOCKED");
238                                 infraActiveRequest.setLastModifiedBy(Constants.MODIFIED_BY_APIHANDLER);
239                                 infraActiveRequest.setRequestId(requestId);
240                                 requestsDbClient.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  }