2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.so.apihandlerinfra;
23 import java.io.IOException;
24 import java.text.SimpleDateFormat;
25 import java.util.ArrayList;
26 import java.util.List;
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;
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;
66 import com.fasterxml.jackson.databind.ObjectMapper;
68 import io.swagger.annotations.Api;
69 import io.swagger.annotations.ApiOperation;
71 @Path("onap/so/infra/orchestrationRequests")
72 @Api(value="onap/so/infra/orchestrationRequests",description="API Requests for Orchestration requests")
74 public class OrchestrationRequests {
76 private static MsoLogger msoLogger = MsoLogger.getMsoLogger (MsoLogger.Catalog.APIH, OrchestrationRequests.class);
80 private RequestsDbClient requestsDbClient;
83 private MsoRequest msoRequest;
86 private ResponseBuilder builder;
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)
93 public Response getOrchestrationRequest(@PathParam("requestId") String requestId, @PathParam("version") String version) throws ApiException{
95 String apiVersion = version.substring(1);
96 GetOrchestrationResponse orchestrationResponse = new GetOrchestrationResponse();
99 InfraActiveRequests requestDB = null;
102 requestDB = requestsDbClient.getInfraActiveRequestbyRequestId(requestId);
104 } catch (Exception e) {
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();
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();
114 throw validateException;
118 if(requestDB == null) {
120 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_BPEL_COMMUNICATE_ERROR, MsoLogger.ErrorCode.BusinessProcesssError).build();
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();
126 throw validateException;
129 Request request = mapInfraActiveRequestToRequest(requestDB);
130 request.setRequestId(requestId);
131 orchestrationResponse.setRequest(request);
133 return builder.buildResponse(HttpStatus.SC_OK, requestId, orchestrationResponse, apiVersion);
137 @Path("/{version:[vV][4-7]}")
138 @ApiOperation(value="Find Orchestrated Requests for a URI Information",response=Response.class)
139 @Produces(MediaType.APPLICATION_JSON)
141 public Response getOrchestrationRequest(@Context UriInfo ui, @PathParam("version") String version) throws ApiException{
143 long startTime = System.currentTimeMillis ();
145 MultivaluedMap<String, String> queryParams = ui.getQueryParameters();
147 List<InfraActiveRequests> activeRequests = null;
149 GetOrchestrationListResponse orchestrationList = null;
150 Map<String, List<String>> orchestrationMap;
151 String apiVersion = version.substring(1);
154 orchestrationMap = msoRequest.getOrchestrationFilters(queryParams);
155 if (orchestrationMap.isEmpty()) {
156 throw new ValidationException("At least one filter query param must be specified");
158 }catch(ValidationException ex){
159 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, MsoLogger.ErrorCode.DataError).build();
162 ValidateException validateException = new ValidateException.Builder(ex.getMessage(),
163 HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_GENERAL_SERVICE_ERROR).cause(ex).errorInfo(errorLoggerInfo).build();
165 throw validateException;
169 activeRequests = requestsDbClient.getOrchestrationFiltersFromInfraActive(orchestrationMap);
171 orchestrationList = new GetOrchestrationListResponse();
172 List<RequestList> requestLists = new ArrayList<>();
174 for(InfraActiveRequests infraActive : activeRequests){
175 RequestList requestList = new RequestList();
176 Request request = mapInfraActiveRequestToRequest(infraActive);
177 requestList.setRequest(request);
178 requestLists.add(requestList);
181 orchestrationList.setRequestList(requestLists);
182 return builder.buildResponse(HttpStatus.SC_OK, null, orchestrationList, apiVersion);
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)
192 public Response unlockOrchestrationRequest(String requestJSON, @PathParam("requestId") String requestId, @PathParam("version") String version) throws ApiException{
194 long startTime = System.currentTimeMillis ();
195 msoLogger.debug ("requestId is: " + requestId);
196 ServiceInstancesRequest sir = null;
198 InfraActiveRequests infraActiveRequest = null;
199 Request request = null;
202 ObjectMapper mapper = new ObjectMapper();
203 sir = mapper.readValue(requestJSON, ServiceInstancesRequest.class);
204 } catch(IOException e){
206 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, MsoLogger.ErrorCode.SchemaError).build();
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();
212 throw validateException;
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;
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();
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();
232 throw validateException;
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);
243 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_DB_ATTRIBUTE_NOT_FOUND, MsoLogger.ErrorCode.DataError).build();
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();
249 throw validateException;
252 return Response.status (HttpStatus.SC_NO_CONTENT).entity ("").build ();
255 private Request mapInfraActiveRequestToRequest(InfraActiveRequests iar) throws ApiException{
257 String requestBody = iar.getRequestBody();
258 Request request = new Request();
260 ObjectMapper mapper = new ObjectMapper();
262 request.setRequestId(iar.getRequestId());
263 request.setRequestScope(iar.getRequestScope());
264 request.setRequestType(iar.getRequestAction());
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());
291 request.setInstanceReferences(ir);
293 RequestDetails requestDetails = null;
295 if(StringUtils.isNotBlank(requestBody)) {
297 if(requestBody.contains("\"requestDetails\":")){
298 ServiceInstancesRequest sir = mapper.readValue(requestBody, ServiceInstancesRequest.class);
299 requestDetails = sir.getRequestDetails();
301 requestDetails = mapper.readValue(requestBody, RequestDetails.class);
303 } catch (IOException e) {
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();
309 throw validateException;
312 request.setRequestDetails(requestDetails);
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);
319 RequestStatus status = new RequestStatus();
320 if(iar.getStatusMessage() != null){
321 status.setStatusMessage(iar.getStatusMessage());
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);
330 if(iar.getRequestStatus() != null){
331 status.setRequestState(iar.getRequestStatus());
334 if(iar.getProgress() != null){
335 status.setPercentProgress(iar.getProgress().intValue());
338 request.setRequestStatus(status);