2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Modifications Copyright (c) 2019 Samsung
8 * ================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
13 * http://www.apache.org/licenses/LICENSE-2.0
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
23 package org.onap.so.apihandlerinfra.tenantisolation;
25 import java.io.IOException;
26 import java.text.SimpleDateFormat;
27 import java.util.ArrayList;
28 import java.util.List;
31 import javax.transaction.Transactional;
32 import javax.ws.rs.Consumes;
33 import javax.ws.rs.GET;
34 import javax.ws.rs.POST;
35 import javax.ws.rs.Path;
36 import javax.ws.rs.PathParam;
37 import javax.ws.rs.Produces;
38 import javax.ws.rs.core.Context;
39 import javax.ws.rs.core.MediaType;
40 import javax.ws.rs.core.MultivaluedMap;
41 import javax.ws.rs.core.Response;
42 import javax.ws.rs.core.UriInfo;
44 import org.apache.http.HttpStatus;
45 import org.onap.so.apihandler.common.ErrorNumbers;
46 import org.onap.so.apihandler.common.ResponseBuilder;
47 import org.onap.so.apihandlerinfra.Constants;
48 import org.onap.so.apihandlerinfra.Messages;
49 import org.onap.so.apihandlerinfra.exceptions.ApiException;
50 import org.onap.so.apihandlerinfra.exceptions.ValidateException;
52 import org.onap.so.apihandlerinfra.logging.ErrorLoggerInfo;
53 import org.onap.so.apihandlerinfra.tenantisolationbeans.CloudOrchestrationRequestList;
54 import org.onap.so.apihandlerinfra.tenantisolationbeans.CloudOrchestrationResponse;
55 import org.onap.so.apihandlerinfra.tenantisolationbeans.InstanceReferences;
56 import org.onap.so.apihandlerinfra.tenantisolationbeans.Request;
57 import org.onap.so.apihandlerinfra.tenantisolationbeans.RequestDetails;
58 import org.onap.so.apihandlerinfra.tenantisolationbeans.RequestStatus;
59 import org.onap.so.db.request.beans.InfraActiveRequests;
60 import org.onap.so.db.request.client.RequestsDbClient;
61 import org.onap.so.exceptions.ValidationException;
62 import org.onap.so.logger.MessageEnum;
64 import org.onap.so.logger.MsoLogger;
65 import org.slf4j.Logger;
66 import org.slf4j.LoggerFactory;
67 import org.springframework.beans.factory.annotation.Autowired;
68 import org.springframework.stereotype.Component;
70 import com.fasterxml.jackson.databind.ObjectMapper;
72 import io.swagger.annotations.Api;
73 import io.swagger.annotations.ApiOperation;
76 @Path("onap/so/infra/cloudResourcesRequests")
77 @Api(value="onap/so/infra/cloudResourcesRequests",description="API GET Requests for cloud resources - Tenant Isolation")
78 public class CloudResourcesOrchestration {
80 private static Logger logger = LoggerFactory.getLogger(CloudResourcesOrchestration.class);
83 RequestsDbClient requestDbClient;
86 private ResponseBuilder builder;
89 @Path("/{version: [vV][1]}/{requestId}/unlock")
90 @Consumes(MediaType.APPLICATION_JSON)
91 @Produces(MediaType.APPLICATION_JSON)
92 @ApiOperation(value="Unlock CloudOrchestration requests for a specified requestId")
94 public Response unlockOrchestrationRequest(String requestJSON, @PathParam("requestId") String requestId, @PathParam("version") String version) throws ApiException{
95 TenantIsolationRequest msoRequest = new TenantIsolationRequest(requestId);
96 InfraActiveRequests infraActiveRequest = null;
98 CloudOrchestrationRequest cor = null;
100 logger.debug ("requestId is: " + requestId);
103 ObjectMapper mapper = new ObjectMapper();
104 cor = mapper.readValue(requestJSON, CloudOrchestrationRequest.class);
105 } catch(IOException e){
106 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR,MsoLogger.ErrorCode.SchemaError).build();
108 ValidateException validateException = new ValidateException.Builder("Mapping of request to JSON object failed. " + e.getMessage(), HttpStatus.SC_BAD_REQUEST,ErrorNumbers.SVC_BAD_PARAMETER)
109 .cause(e).errorInfo(errorLoggerInfo).build();
110 throw validateException;
114 msoRequest.parseOrchestration(cor);
115 } catch (ValidationException e) {
116 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR,MsoLogger.ErrorCode.SchemaError).build();
117 ValidateException validateException = new ValidateException.Builder(e.getMessage(), HttpStatus.SC_BAD_REQUEST,ErrorNumbers.SVC_BAD_PARAMETER)
118 .cause(e).errorInfo(errorLoggerInfo).build();
119 throw validateException;
122 infraActiveRequest = requestDbClient.getInfraActiveRequestbyRequestId(requestId);
124 ValidateException validateException = new ValidateException.Builder(e.getMessage(), HttpStatus.SC_INTERNAL_SERVER_ERROR, ErrorNumbers.SVC_DETAILED_SERVICE_ERROR).cause(e).build();
125 throw validateException;
127 if(infraActiveRequest == null) {
129 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_DB_ATTRIBUTE_NOT_FOUND,MsoLogger.ErrorCode.BusinessProcesssError).build();
130 ValidateException validateException = new ValidateException.Builder("Orchestration RequestId " + requestId + " is not found in DB", HttpStatus.SC_BAD_REQUEST,ErrorNumbers.SVC_DETAILED_SERVICE_ERROR)
131 .errorInfo(errorLoggerInfo).build();
133 throw validateException;
136 String status = infraActiveRequest.getRequestStatus();
137 if(status.equalsIgnoreCase("IN_PROGRESS") || status.equalsIgnoreCase("PENDING") || status.equalsIgnoreCase("PENDING_MANUAL_TASK")){
138 infraActiveRequest.setRequestStatus("UNLOCKED");
139 infraActiveRequest.setLastModifiedBy(Constants.MODIFIED_BY_APIHANDLER);
140 infraActiveRequest.setRequestId(requestId);
141 requestDbClient.save(infraActiveRequest);
143 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_DB_ATTRIBUTE_NOT_FOUND,MsoLogger.ErrorCode.DataError).build();
144 ValidateException validateException = new ValidateException.Builder("Orchestration RequestId " + requestId + " has a status of " + status + " and can not be unlocked",
145 HttpStatus.SC_BAD_REQUEST,ErrorNumbers.SVC_DETAILED_SERVICE_ERROR).errorInfo(errorLoggerInfo).build();
147 throw validateException;
151 return Response.status (HttpStatus.SC_NO_CONTENT).entity ("").build ();
155 @Path("/{version:[vV][1]}")
156 @Consumes(MediaType.APPLICATION_JSON)
157 @Produces(MediaType.APPLICATION_JSON)
158 @ApiOperation(value="Get status of an Operational Environment based on filter criteria",response=Response.class)
160 public Response getOperationEnvironmentStatusFilter(@Context UriInfo ui, @PathParam("version") String version ) throws ApiException{
161 MsoLogger.setServiceName ("getOperationEnvironmentStatusFilter");
163 MultivaluedMap<String, String> queryParams = ui.getQueryParameters();
164 List<String> requestIdKey = queryParams.get("requestId");
165 String apiVersion = version.substring(1);
167 if(queryParams.size() == 1 && requestIdKey != null) {
168 String requestId = requestIdKey.get(0);
170 CloudOrchestrationResponse cloudOrchestrationGetResponse = new CloudOrchestrationResponse();
171 TenantIsolationRequest tenantIsolationRequest = new TenantIsolationRequest (requestId);
172 InfraActiveRequests requestDB = null;
175 requestDB = requestDbClient.getInfraActiveRequestbyRequestId(requestId);
176 } catch (Exception e) {
177 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_DB_ACCESS_EXC, MsoLogger.ErrorCode.AvailabilityError).build();
178 ValidateException validateException = new ValidateException.Builder(e.getMessage(), HttpStatus.SC_INTERNAL_SERVER_ERROR, ErrorNumbers.SVC_DETAILED_SERVICE_ERROR).cause(e)
179 .errorInfo(errorLoggerInfo).build();
180 throw validateException;
183 if(requestDB == null) {
184 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_BPEL_COMMUNICATE_ERROR, MsoLogger.ErrorCode.BusinessProcesssError).build();
185 ValidateException validateException = new ValidateException.Builder("Orchestration RequestId " + requestId + " is not found in DB",
186 HttpStatus.SC_NO_CONTENT, ErrorNumbers.SVC_DETAILED_SERVICE_ERROR)
187 .errorInfo(errorLoggerInfo).build();
189 throw validateException;
192 Request request = mapInfraActiveRequestToRequest(requestDB);
193 cloudOrchestrationGetResponse.setRequest(request);
194 return builder.buildResponse(HttpStatus.SC_OK, requestId, cloudOrchestrationGetResponse, apiVersion);
197 TenantIsolationRequest tenantIsolationRequest = new TenantIsolationRequest ();
198 List<InfraActiveRequests> activeRequests = null;
199 CloudOrchestrationRequestList orchestrationList = null;
202 Map<String, String> orchestrationMap;
204 orchestrationMap = tenantIsolationRequest.getOrchestrationFilters(queryParams);
205 }catch(ValidationException ex){
206 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_GENERAL_EXCEPTION, MsoLogger.ErrorCode.BusinessProcesssError).build();
207 ValidateException validateException = new ValidateException.Builder(ex.getMessage(),
208 HttpStatus.SC_INTERNAL_SERVER_ERROR, ErrorNumbers.SVC_GENERAL_SERVICE_ERROR).cause(ex)
209 .errorInfo(errorLoggerInfo).build();
211 throw validateException;
214 activeRequests = requestDbClient.getCloudOrchestrationFiltersFromInfraActive(orchestrationMap);
215 orchestrationList = new CloudOrchestrationRequestList();
216 List<CloudOrchestrationResponse> requestLists = new ArrayList<CloudOrchestrationResponse>();
218 for(InfraActiveRequests infraActive : activeRequests){
220 Request request = mapInfraActiveRequestToRequest(infraActive);
221 CloudOrchestrationResponse requestList = new CloudOrchestrationResponse();
222 requestList.setRequest(request);
223 requestLists.add(requestList);
225 orchestrationList.setRequestList(requestLists);
227 return builder.buildResponse(HttpStatus.SC_OK, null, orchestrationList, apiVersion);
231 private Request mapInfraActiveRequestToRequest(InfraActiveRequests iar) throws ApiException {
232 Request request = new Request();
233 request.setRequestId(iar.getRequestId());
234 request.setRequestScope(iar.getRequestScope());
235 request.setRequestType(iar.getRequestAction());
237 InstanceReferences ir = new InstanceReferences();
239 if(iar.getOperationalEnvId() != null)
240 ir.setOperationalEnvironmentId(iar.getOperationalEnvId());
241 if(iar.getOperationalEnvName() != null)
242 ir.setOperationalEnvName(iar.getOperationalEnvName());
243 if(iar.getRequestorId() != null)
244 ir.setRequestorId(iar.getRequestorId());
246 request.setInstanceReferences(ir);
247 String requestBody = iar.getRequestBody();
248 RequestDetails requestDetails = null;
250 if (requestBody != null) {
252 ObjectMapper mapper = new ObjectMapper();
253 requestDetails = mapper.readValue(requestBody, RequestDetails.class);
254 } catch (IOException e) {
255 ErrorLoggerInfo errorLoggerInfo = new ErrorLoggerInfo.Builder(MessageEnum.APIH_REQUEST_VALIDATION_ERROR, MsoLogger.ErrorCode.SchemaError).build();
256 ValidateException validateException = new ValidateException.Builder("Mapping of request to JSON object failed. " + e.getMessage(), HttpStatus.SC_BAD_REQUEST, ErrorNumbers.SVC_BAD_PARAMETER)
257 .cause(e).errorInfo(errorLoggerInfo).build();
258 throw validateException;
262 request.setRequestDetails(requestDetails);
263 String startTimeStamp = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss").format(iar.getStartTime()) + " GMT";
264 request.setStartTime(startTimeStamp);
266 RequestStatus status = new RequestStatus();
267 if(iar.getStatusMessage() != null){
268 status.setStatusMessage(iar.getStatusMessage());
271 if(iar.getEndTime() != null){
272 String endTimeStamp = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss").format(iar.getEndTime()) + " GMT";
273 status.setTimeStamp(endTimeStamp);
276 if(iar.getRequestStatus() != null){
277 status.setRequestState(iar.getRequestStatus());
280 if(iar.getProgress() != null){
281 status.setPercentProgress(iar.getProgress().toString());
284 request.setRequestStatus(status);