377b03c4abd39d4bb157b390f0f49a1e0da3085f
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
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=========================================================
21  */
22
23 package org.onap.so.apihandlerinfra.tenantisolation;
24
25 import java.io.IOException;
26 import java.text.SimpleDateFormat;
27 import java.util.ArrayList;
28 import java.util.List;
29 import java.util.Map;
30
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;
43
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;
51
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;
63
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;
69
70 import com.fasterxml.jackson.databind.ObjectMapper;
71
72 import io.swagger.annotations.Api;
73 import io.swagger.annotations.ApiOperation;
74
75 @Component
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 {
79
80         private static Logger logger = LoggerFactory.getLogger(CloudResourcesOrchestration.class);
81
82         @Autowired
83         RequestsDbClient requestDbClient;
84
85         @Autowired
86         private ResponseBuilder builder;
87         
88         @POST
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")
93         @Transactional
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;
97
98                 CloudOrchestrationRequest cor = null;
99
100                 logger.debug ("requestId is: " + requestId);
101                 
102                 try{
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();
107
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;
111                 }
112
113                 try{
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;
120                 }
121                 try {
122                         infraActiveRequest = requestDbClient.getInfraActiveRequestbyRequestId(requestId);
123                 }catch(Exception e){                    
124                         ValidateException validateException = new ValidateException.Builder(e.getMessage(), HttpStatus.SC_INTERNAL_SERVER_ERROR, ErrorNumbers.SVC_DETAILED_SERVICE_ERROR).cause(e).build();
125                         throw validateException;
126                 }
127                 if(infraActiveRequest == null) {
128
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();
132
133                         throw validateException;
134
135                 }else{
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);
142                         }else{
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();
146
147                                 throw validateException;
148                         }
149                 }
150
151                 return Response.status (HttpStatus.SC_NO_CONTENT).entity ("").build ();
152         }
153
154         @GET
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)
159         @Transactional
160         public Response getOperationEnvironmentStatusFilter(@Context UriInfo ui, @PathParam("version") String version ) throws ApiException{
161                 MsoLogger.setServiceName ("getOperationEnvironmentStatusFilter");
162
163                 MultivaluedMap<String, String> queryParams = ui.getQueryParameters();
164                 List<String> requestIdKey = queryParams.get("requestId");
165                 String apiVersion = version.substring(1);
166                 
167                 if(queryParams.size() == 1 && requestIdKey != null) {
168                         String requestId = requestIdKey.get(0);
169
170                         CloudOrchestrationResponse cloudOrchestrationGetResponse = new CloudOrchestrationResponse();
171                         TenantIsolationRequest tenantIsolationRequest = new TenantIsolationRequest (requestId);
172                         InfraActiveRequests requestDB = null;
173
174                         try {
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;                                
181                         }
182
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();
188
189                                 throw validateException;
190                         }
191
192                         Request request = mapInfraActiveRequestToRequest(requestDB);
193                         cloudOrchestrationGetResponse.setRequest(request);
194                         return builder.buildResponse(HttpStatus.SC_OK, requestId, cloudOrchestrationGetResponse, apiVersion);
195
196                 } else  {
197                         TenantIsolationRequest tenantIsolationRequest = new TenantIsolationRequest ();
198                         List<InfraActiveRequests> activeRequests = null;
199                         CloudOrchestrationRequestList orchestrationList = null;
200
201
202                         Map<String, String> orchestrationMap;
203                         try{
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();
210
211                                 throw validateException;
212
213                         }
214                         activeRequests = requestDbClient.getCloudOrchestrationFiltersFromInfraActive(orchestrationMap);
215                         orchestrationList = new CloudOrchestrationRequestList();
216                         List<CloudOrchestrationResponse> requestLists = new ArrayList<CloudOrchestrationResponse>();
217
218                         for(InfraActiveRequests infraActive : activeRequests){
219
220                                 Request request = mapInfraActiveRequestToRequest(infraActive);
221                                 CloudOrchestrationResponse requestList = new CloudOrchestrationResponse();
222                                 requestList.setRequest(request);
223                                 requestLists.add(requestList);
224                         }
225                         orchestrationList.setRequestList(requestLists);
226
227                         return builder.buildResponse(HttpStatus.SC_OK, null, orchestrationList, apiVersion);
228                 }
229         }
230         
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());
236
237                 InstanceReferences ir = new InstanceReferences();
238
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());
245
246                 request.setInstanceReferences(ir);
247                 String requestBody = iar.getRequestBody();
248                 RequestDetails requestDetails = null;
249
250                 if (requestBody != null) {
251                         try {
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;
259                         }
260                 }
261
262                 request.setRequestDetails(requestDetails);
263                 String startTimeStamp = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss").format(iar.getStartTime()) + " GMT";
264                 request.setStartTime(startTimeStamp);
265
266                 RequestStatus status = new RequestStatus();
267                 if(iar.getStatusMessage() != null){
268                         status.setStatusMessage(iar.getStatusMessage());
269                 }
270
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);
274                 }
275
276                 if(iar.getRequestStatus() != null){
277                         status.setRequestState(iar.getRequestStatus());
278                 }
279
280                 if(iar.getProgress() != null){
281                         status.setPercentProgress(iar.getProgress().toString());
282                 }
283
284                 request.setRequestStatus(status);
285
286                 return request;
287         }
288
289 }