aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/externalapi/servlet/CrudExternalServlet.java
blob: a97f6565a65dcbd9c91767bc6ee95fe252e2467c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.openecomp.sdc.be.externalapi.servlet;

import static com.google.common.base.Strings.isNullOrEmpty;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.jcabi.aspects.Loggable;
import fj.data.Either;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.media.ArraySchema;
import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.servers.Server;
import io.swagger.v3.oas.annotations.tags.Tag;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import javax.inject.Inject;
import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.Consumes;
import javax.ws.rs.HeaderParam;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import org.apache.commons.lang3.StringUtils;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
import org.openecomp.sdc.be.components.impl.ComponentInstanceBusinessLogic;
import org.openecomp.sdc.be.components.impl.ElementBusinessLogic;
import org.openecomp.sdc.be.components.impl.ResourceBusinessLogic;
import org.openecomp.sdc.be.components.impl.ResourceImportManager;
import org.openecomp.sdc.be.components.impl.ServiceBusinessLogic;
import org.openecomp.sdc.be.components.impl.exceptions.ComponentException;
import org.openecomp.sdc.be.components.lifecycle.LifecycleBusinessLogic;
import org.openecomp.sdc.be.components.lifecycle.LifecycleChangeInfoBase;
import org.openecomp.sdc.be.components.lifecycle.LifecycleChangeInfoWithAction;
import org.openecomp.sdc.be.config.BeEcompErrorManager;
import org.openecomp.sdc.be.dao.api.ActionStatus;
import org.openecomp.sdc.be.datamodel.api.CategoryTypeEnum;
import org.openecomp.sdc.be.datatypes.enums.AssetTypeEnum;
import org.openecomp.sdc.be.datatypes.enums.ComponentTypeEnum;
import org.openecomp.sdc.be.datatypes.enums.ExternalCategoryTypeEnum;
import org.openecomp.sdc.be.datatypes.enums.FilterKeyEnum;
import org.openecomp.sdc.be.datatypes.enums.ResourceTypeEnum;
import org.openecomp.sdc.be.ecomp.converters.AssetMetadataConverter;
import org.openecomp.sdc.be.externalapi.servlet.representation.AssetMetadata;
import org.openecomp.sdc.be.impl.ComponentsUtils;
import org.openecomp.sdc.be.impl.ServletUtils;
import org.openecomp.sdc.be.model.Component;
import org.openecomp.sdc.be.model.LifeCycleTransitionEnum;
import org.openecomp.sdc.be.model.Resource;
import org.openecomp.sdc.be.model.Service;
import org.openecomp.sdc.be.model.User;
import org.openecomp.sdc.be.model.category.CategoryDefinition;
import org.openecomp.sdc.be.model.category.SubCategoryDefinition;
import org.openecomp.sdc.be.resources.data.auditing.AuditingActionEnum;
import org.openecomp.sdc.be.resources.data.auditing.model.DistributionData;
import org.openecomp.sdc.be.resources.data.auditing.model.ResourceCommonInfo;
import org.openecomp.sdc.be.servlets.AbstractValidationsServlet;
import org.openecomp.sdc.be.servlets.RepresentationUtils;
import org.openecomp.sdc.be.utils.CommonBeUtils;
import org.openecomp.sdc.common.api.Constants;
import org.openecomp.sdc.common.datastructure.Wrapper;
import org.openecomp.sdc.common.log.wrappers.Logger;
import org.openecomp.sdc.common.util.ValidationUtils;
import org.openecomp.sdc.exception.ResponseFormat;
import org.springframework.stereotype.Controller;

@Loggable(prepend = true, value = Loggable.DEBUG, trim = false)
@Path("/v1/catalog")
@Tag(name = "SDCE-7 APIs")
@Server(url = "/sdc")
@Controller
public class CrudExternalServlet extends AbstractValidationsServlet {

    private static final Logger log = Logger.getLogger(CrudExternalServlet.class);
    private final ElementBusinessLogic elementBusinessLogic;
    private final AssetMetadataConverter assetMetadataUtils;
    private final LifecycleBusinessLogic lifecycleBusinessLogic;
    private final ResourceBusinessLogic resourceBusinessLogic;
    private final ServiceBusinessLogic serviceBusinessLogic;
    @Context
    private HttpServletRequest request;

    @Inject
    public CrudExternalServlet(ComponentInstanceBusinessLogic componentInstanceBL,
                               ComponentsUtils componentsUtils, ServletUtils servletUtils, ResourceImportManager resourceImportManager,
                               ElementBusinessLogic elementBusinessLogic, AssetMetadataConverter assetMetadataUtils,
                               LifecycleBusinessLogic lifecycleBusinessLogic, ResourceBusinessLogic resourceBusinessLogic,
                               ServiceBusinessLogic serviceBusinessLogic) {
        super(componentInstanceBL, componentsUtils, servletUtils, resourceImportManager);
        this.elementBusinessLogic = elementBusinessLogic;
        this.assetMetadataUtils = assetMetadataUtils;
        this.lifecycleBusinessLogic = lifecycleBusinessLogic;
        this.resourceBusinessLogic = resourceBusinessLogic;
        this.serviceBusinessLogic = serviceBusinessLogic;
    }

    /**
     * Creates a new Asset (Resource or Service)
     *
     * @param assetType
     * @param data
     * @param userId
     * @param instanceIdHeader
     * @return
     */
    @POST
    @Path("/{assetType}")
    @Consumes(MediaType.APPLICATION_JSON)
    @Produces(MediaType.APPLICATION_JSON)
    @Operation(parameters = {
        @Parameter(required = true, schema = @Schema(implementation = org.openecomp.sdc.be.model.Resource.class), description = "json describe the created resource")}, description = "creates an asset (resource or service)", method = "POST", summary = "Creates an asset (resource or service)", responses = {
        @ApiResponse(responseCode = "200", description = "ECOMP component is authenticated and Asset created", content = @Content(array = @ArraySchema(schema = @Schema(implementation = Resource.class)))),
        @ApiResponse(responseCode = "400", description = "Missing  X-ECOMP-InstanceID  HTTP header - POL5001"),
        @ApiResponse(responseCode = "401", description = "ECOMP component  should authenticate itself  and  to  re-send  again  HTTP  request  with its Basic Authentication credentials - POL5002"),
        @ApiResponse(responseCode = "403", description = "ECOMP component is not authorized - POL5003"),
        @ApiResponse(responseCode = "404", description = "Error: Requested '%1' (uuid) resource was not found - SVC4063"),
        @ApiResponse(responseCode = "405", description = "Method  Not Allowed  :  Invalid HTTP method type used ( PUT,DELETE,POST will be rejected) - POL4050"),
        @ApiResponse(responseCode = "500", description = "The GET request failed either due to internal SDC problem. ECOMP Component should continue the attempts to get the needed information - POL5000"),
        @ApiResponse(responseCode = "400", description = "The name provided for the newly created resource is already in use for another resource in SDC - SVC4050"),
        @ApiResponse(responseCode = "400", description = "Invalid field format. One of the provided fields does not comply with the field rules - SVC4126"),
        @ApiResponse(responseCode = "400", description = "Missing request body. The post request did not contain the expected body - SVC4500"),
        @ApiResponse(responseCode = "400", description = "The resource name is missing in the request body - SVC4062"),
        @ApiResponse(responseCode = "400", description = "Create VFCMT request: VFCMT description has wrong format - SVC4064"),
        @ApiResponse(responseCode = "400", description = "Create VFCMT request: VFCMT description has wrong format (exceeds limit) - SVC4065"),
        @ApiResponse(responseCode = "400", description = "Create VFCMT request: VFCMT tags exceeds character limit - SVC4066"),
        @ApiResponse(responseCode = "400", description = "Create VFCMT request: VFCMT vendor name exceeds character limit - SVC4067"),
        @ApiResponse(responseCode = "400", description = "Create VFCMT request: VFCMT vendor release exceeds character limit - SVC4068"),
        @ApiResponse(responseCode = "400", description = "Create VFCMT request: VFCMT ATT Contact has wrong format - SVC4069"),
        @ApiResponse(responseCode = "400", description = "Create VFCMT request: VFCMT name has wrong format - SVC4070"),
        @ApiResponse(responseCode = "400", description = "Create VFCMT request: VFCMT vendor name has wrong format - SVC4071"),
        @ApiResponse(responseCode = "400", description = "Create VFCMT request: VFCMT vendor release has wrong format - SVC4072"),
        @ApiResponse(responseCode = "400", description = "Create VFCMT request: VFCMT name exceeds character limit - SVC4073"),
        @ApiResponse(responseCode = "400", description = "Invalid Content. Missing PROJECT_CODE number - SVC4129"),
        @ApiResponse(responseCode = "409", description = "Error: %1 (Service) with name '%2' already exists. - SVC4050")})
    public Response createComponentExternal(
        @Parameter(description = "Determines the format of the body of the request", required = true) @HeaderParam(value = Constants.CONTENT_TYPE_HEADER) String contentType,
        @Parameter(description = "The user id", required = true) @HeaderParam(value = Constants.USER_ID_HEADER) final String userId,
        @Parameter(description = "X-ECOMP-RequestID header", required = false) @HeaderParam(value = Constants.X_ECOMP_REQUEST_ID_HEADER) String requestId,
        @Parameter(description = "X-ECOMP-InstanceID header", required = true) @HeaderParam(value = Constants.X_ECOMP_INSTANCE_ID_HEADER) final String instanceIdHeader,
        @Parameter(description = "Determines the format of the body of the response", required = false) @HeaderParam(value = Constants.ACCEPT_HEADER) String accept,
        @Parameter(description = "The username and password", required = true) @HeaderParam(value = Constants.AUTHORIZATION_HEADER) String authorization,
        @Parameter(description = "The requested asset type", required = true, schema = @Schema(allowableValues = {
            "resources, services"})) @PathParam("assetType") final String assetType, @Parameter(hidden = true) String data) {
        init();
        Wrapper<ResponseFormat> responseWrapper = new Wrapper<>();
        String requestURI = request.getRequestURI();
        String url = request.getMethod() + " " + requestURI;
        log.debug("Start handle request of {}", url);
        Resource resource = null;
        User modifier = null;
        ResourceCommonInfo resourceCommonInfo = new ResourceCommonInfo(ComponentTypeEnum.RESOURCE.getValue());
        Service service = null;
        try {
            // Validate X-ECOMP-InstanceID Header
            if (responseWrapper.isEmpty()) {
                validateXECOMPInstanceIDHeader(instanceIdHeader, responseWrapper);
            }
            // Validate USER_ID Header
            if (responseWrapper.isEmpty()) {
                validateHttpCspUserIdHeader(userId, responseWrapper);
            }
            // Validate assetType
            if (responseWrapper.isEmpty() && !(AssetTypeEnum.RESOURCES.getValue().equals(assetType) || AssetTypeEnum.SERVICES.getValue()
                .equals(assetType))) {
                responseWrapper.setInnerElement(getComponentsUtils().getResponseFormat(ActionStatus.RESTRICTED_OPERATION));
            }
            if (responseWrapper.isEmpty() && AssetTypeEnum.SERVICES.getValue().equals(assetType)) {
                modifier = new User();
                modifier.setUserId(userId);
                Either<Service, ResponseFormat> convertResponse = getComponentsUtils()
                    .convertJsonToObjectUsingObjectMapper(data, modifier, Service.class, null, ComponentTypeEnum.SERVICE);
                if (convertResponse.isRight()) {
                    responseWrapper.setInnerElement(convertResponse.right().value());
                } else {
                    service = convertResponse.left().value();
                }
                if (service == null) {
                    responseWrapper.setInnerElement(
                        getComponentsUtils().getResponseFormat(ActionStatus.SERVICE_NOT_FOUND, ComponentTypeEnum.SERVICE.getValue()));
                }
                //validate name exist
                if (responseWrapper.isEmpty() && service != null && isNullOrEmpty(service.getName())) {
                    responseWrapper.setInnerElement(
                        getComponentsUtils().getResponseFormat(ActionStatus.MISSING_COMPONENT_NAME, ComponentTypeEnum.SERVICE.getValue()));
                }
                //validate category
                if (responseWrapper.isEmpty() && service != null && service.getCategories() != null && !service.getCategories().isEmpty()
                    && !ExternalCategoryTypeEnum.containsIgnoreCase(service.getCategories().get(0).getName())) {
                    log.debug("Service category is not supported {}", service.getCategories().get(0).getName());
                    responseWrapper.setInnerElement(
                        getComponentsUtils().getResponseFormat(ActionStatus.COMPONENT_INVALID_CATEGORY, ComponentTypeEnum.SERVICE.getValue()));
                }
                if (responseWrapper.isEmpty() && service != null) {
                    service.setSystemName(ValidationUtils.convertToSystemName(service.getName()));
                    log.debug("Service system name :" + service.getSystemName());
                }
                if (responseWrapper.isEmpty()) {
                    Either<Service, ResponseFormat> actionResponse = serviceBusinessLogic.createService(service, modifier);
                    if (actionResponse.isRight()) {
                        log.debug("Failed to create service");
                        responseWrapper.setInnerElement(actionResponse.right().value());
                        return buildErrorResponse(responseWrapper.getInnerElement());
                    }
                    // Create the service in the dataModel
                    service = actionResponse.left().value();
                    Object result = RepresentationUtils.toRepresentation(actionResponse.left().value());
                    responseWrapper.setInnerElement(getComponentsUtils().getResponseFormat(ActionStatus.CREATED));
                    return buildOkResponse(getComponentsUtils().getResponseFormat(ActionStatus.CREATED), result);
                } else {
                    return buildErrorResponse(responseWrapper.getInnerElement());
                }
            } else {
                //Validate resource type
                if (responseWrapper.isEmpty()) {
                    JSONParser parser = new JSONParser();
                    JSONObject jsonObj = (JSONObject) parser.parse(data);
                    String resourceType = (String) jsonObj.get(FilterKeyEnum.RESOURCE_TYPE.getName());
                    if (StringUtils.isEmpty(resourceType) || !ResourceTypeEnum.containsName(resourceType)) {
                        resourceCommonInfo.setResourceName((String) jsonObj.get("name"));
                        responseWrapper.setInnerElement(getComponentsUtils().getResponseFormat(ActionStatus.INVALID_CONTENT));
                    }
                }
                // Convert the user json to a resource
                if (responseWrapper.isEmpty()) {
                    modifier = new User();
                    modifier.setUserId(userId);
                    Either<Resource, ResponseFormat> eitherResource = getComponentsUtils()
                        .convertJsonToObjectUsingObjectMapper(data, modifier, Resource.class, null, ComponentTypeEnum.RESOURCE);
                    if (eitherResource.isRight()) {
                        responseWrapper.setInnerElement(eitherResource.right().value());
                    } else {
                        resource = eitherResource.left().value();
                    }
                }
                //validate name exist
                if (responseWrapper.isEmpty() && isNullOrEmpty(resource.getName())) {
                    responseWrapper.setInnerElement(
                        getComponentsUtils().getResponseFormat(ActionStatus.MISSING_COMPONENT_NAME, ComponentTypeEnum.RESOURCE.getValue()));
                }
                if (responseWrapper.isEmpty()) {
                    resource.setDerivedFrom(Arrays.asList("tosca.nodes.Root"));
                    resource.setSystemName(ValidationUtils.convertToSystemName(resource.getName()));
                    resource.setToscaResourceName(CommonBeUtils.generateToscaResourceName(ResourceTypeEnum.VFCMT.name(), resource.getSystemName()));
                    handleCategories(data, resource, responseWrapper);
                }
                // Create the resource in the dataModel
                if (responseWrapper.isEmpty()) {
                    resource = resourceBusinessLogic.createResource(resource, null, modifier, null, null);
                    return buildCreatedResourceResponse(resource, responseWrapper);
                } else {
                    return buildErrorResponse(responseWrapper.getInnerElement());
                }
            }
        } catch (IOException | ParseException e) {
            final String message = "failed to create vfc monitoring template resource";
            BeEcompErrorManager.getInstance().logBeRestApiGeneralError(message);
            log.debug(message, e);
            responseWrapper.setInnerElement(getComponentsUtils().getResponseFormat(ActionStatus.GENERAL_ERROR));
            return buildErrorResponse(responseWrapper.getInnerElement());
        } catch (ComponentException e) {
            ResponseFormat responseFormat = getComponentsUtils().getResponseFormat(e);
            responseWrapper.setInnerElement(responseFormat);
            return buildErrorResponse(responseFormat);
        } finally {
            if (AssetTypeEnum.RESOURCES.getValue().equals(assetType)) {
                getComponentsUtils().auditCreateResourceExternalApi(responseWrapper.getInnerElement(), resourceCommonInfo, request, resource);
            } else if (AssetTypeEnum.SERVICES.getValue().equals(assetType)) {
                getComponentsUtils().auditCreateServiceExternalApi(responseWrapper.getInnerElement(), request, service);
            }
        }
    }

    /**
     * Changing the lifecycle of an asset
     *
     * @param jsonChangeInfo      The description - request body
     * @param assetType           The requested asset type.Valid values are: resources / services (for VFCMT – use "resources")
     * @param uuid                The uuid of the desired resource to be changed
     * @param lifecycleTransition The lifecycle operation to be performed on the asset.Valid values are:Checkin / Checkout /  CERTIFICATION_REQUEST
     * @param userId
     * @return
     */
    @POST
    @Path("/{assetType}/{uuid}/lifecycleState/{lifecycleOperation}")
    @Consumes(MediaType.APPLICATION_JSON)
    @Produces(MediaType.APPLICATION_JSON)
    @Operation(parameters = {
        @Parameter(required = true, schema = @Schema(implementation = org.openecomp.sdc.be.model.Resource.class), description = "json describe the created resource")}, description = "Change Resource lifecycle State", method = "POST", responses = {
        @ApiResponse(responseCode = "200", description = "Resource state changed", content = @Content(array = @ArraySchema(schema = @Schema(implementation = AssetMetadata.class)))),
        @ApiResponse(responseCode = "400", description = "Missing X-ECOMP-InstanceID HTTP header - POL5001"),
        @ApiResponse(responseCode = "401", description = "ECOMP component  should authenticate itself  and  to  re-send  again  HTTP  request  with its Basic Authentication credentials - POL5002"),
        @ApiResponse(responseCode = "403", description = "ECOMP component is not authorized - POL5003"),
        @ApiResponse(responseCode = "404", description = "Error: Requested '%1' (uuid) resource was not found - SVC4063"),
        @ApiResponse(responseCode = "405", description = "Method  Not Allowed  :  Invalid HTTP method type used ( PUT,DELETE,POST will be rejected) - POL4050"),
        @ApiResponse(responseCode = "500", description = "The GET request failed either due to internal SDC problem. ECOMP Component should continue the attempts to get the needed information - POL5000"),
        @ApiResponse(responseCode = "403", description = "Asset is already checked-out by another user - SVC4085"),
        @ApiResponse(responseCode = "403", description = "Asset is being edited by different user. Only one user can checkout and edit an asset on given time. The asset will be available for checkout after the other user will checkin the asset - SVC4080")})
    public Response changeResourceStateExternal(
        @Parameter(description = "Determines the format of the body of the request", required = true) @HeaderParam(value = Constants.CONTENT_TYPE_HEADER) String contentType,
        @Parameter(description = "The user id", required = true) @HeaderParam(value = Constants.USER_ID_HEADER) final String userId,
        @Parameter(description = "X-ECOMP-RequestID header", required = false) @HeaderParam(value = Constants.X_ECOMP_REQUEST_ID_HEADER) String requestId,
        @Parameter(description = "X-ECOMP-InstanceID header", required = true) @HeaderParam(value = Constants.X_ECOMP_INSTANCE_ID_HEADER) final String instanceIdHeader,
        @Parameter(description = "Determines the format of the body of the response", required = false) @HeaderParam(value = Constants.ACCEPT_HEADER) String accept,
        @Parameter(description = "The username and password", required = true) @HeaderParam(value = Constants.AUTHORIZATION_HEADER) String authorization,
        @Parameter(schema = @Schema(allowableValues = {
            "checkout, checkin"}), required = true) @PathParam(value = "lifecycleOperation") final String lifecycleTransition,
        @Parameter(description = "id of component to be changed") @PathParam(value = "uuid") final String uuid,
        @Parameter(description = "validValues: resources / services ", schema = @Schema(allowableValues = {ComponentTypeEnum.RESOURCE_PARAM_NAME,
            ComponentTypeEnum.SERVICE_PARAM_NAME})) @PathParam(value = "assetType") final String assetType,
        @Parameter(hidden = true) String jsonChangeInfo) {
        Response response = null;
        init();
        String requestURI = request.getRequestURI();
        String url = request.getMethod() + " " + requestURI;
        log.debug("Start handle request of {}", url);
        Wrapper<ResponseFormat> responseWrapper = runValidations(assetType);
        ComponentTypeEnum componentType = ComponentTypeEnum.findByParamName(assetType);
        Component component = null;
        Component responseObject = null;
        User modifier = null;
        try {
            // Validate X-ECOMP-InstanceID Header
            if (responseWrapper.isEmpty()) {
                validateXECOMPInstanceIDHeader(instanceIdHeader, responseWrapper);
            }
            if (responseWrapper.isEmpty()) {
                //get user
                Either<User, ResponseFormat> eitherGetUser = getUser(request, userId);
                if (eitherGetUser.isRight()) {
                    ResponseFormat responseFormat = eitherGetUser.right().value();
                    responseWrapper.setInnerElement(responseFormat);
                    return buildErrorResponse(responseFormat);
                }
                modifier = eitherGetUser.left().value();
                //get the component id from the uuid
                Either<Component, ResponseFormat> latestVersion = lifecycleBusinessLogic.getLatestComponentByUuid(componentType, uuid);
                if (latestVersion.isRight()) {
                    ResponseFormat responseFormat = latestVersion.right().value();
                    responseWrapper.setInnerElement(responseFormat);
                    return buildErrorResponse(responseFormat);
                }
                component = latestVersion.left().value();
                String componentId = component.getUniqueId();
                //validate the transition is valid
                Either<LifeCycleTransitionEnum, ResponseFormat> validateEnum = validateTransitionEnum(lifecycleTransition, modifier);
                if (validateEnum.isRight()) {
                    ResponseFormat responseFormat = validateEnum.right().value();
                    responseWrapper.setInnerElement(responseFormat);
                    return buildErrorResponse(responseFormat);
                }
                LifeCycleTransitionEnum transitionEnum = validateEnum.left().value();
                //create changeInfo
                LifecycleChangeInfoWithAction changeInfo = new LifecycleChangeInfoWithAction();
                try {
                    if (jsonChangeInfo != null && !jsonChangeInfo.isEmpty()) {
                        ObjectMapper mapper = new ObjectMapper();
                        changeInfo = new LifecycleChangeInfoWithAction(
                            mapper.readValue(jsonChangeInfo, LifecycleChangeInfoBase.class).getUserRemarks());
                    }
                } catch (IOException e) {
                    BeEcompErrorManager.getInstance().logBeInvalidJsonInput("convertJsonToObject");
                    log.debug("failed to convert from json {}", jsonChangeInfo, e);
                    ResponseFormat responseFormat = getComponentsUtils()
                        .getInvalidContentErrorAndAudit(modifier, componentId, AuditingActionEnum.CHECKOUT_RESOURCE);
                    responseWrapper.setInnerElement(responseFormat);
                    return buildErrorResponse(responseFormat);
                }
                //execute business logic
                Either<? extends Component, ResponseFormat> actionResponse = lifecycleBusinessLogic
                    .changeComponentState(componentType, componentId, modifier, transitionEnum, changeInfo, false, true);
                if (actionResponse.isRight()) {
                    log.info("failed to change resource state");
                    ResponseFormat responseFormat = actionResponse.right().value();
                    responseWrapper.setInnerElement(responseFormat);
                    return buildErrorResponse(responseFormat);
                }
                log.debug("change state successful !!!");
                responseObject = actionResponse.left().value();
                response = buildCreatedResourceResponse(responseObject, responseWrapper);
            } else {
                response = buildErrorResponse(responseWrapper.getInnerElement());
            }
            return response;
        } catch (IOException e) {
            BeEcompErrorManager.getInstance().logBeRestApiGeneralError("Change Lifecycle State");
            log.debug("change lifecycle state failed with exception", e);
            ResponseFormat responseFormat = getComponentsUtils().getResponseFormat(ActionStatus.GENERAL_ERROR);
            responseWrapper.setInnerElement(responseFormat);
            return buildErrorResponse(responseFormat);
        } catch (ComponentException e) {
            ResponseFormat responseFormat = getComponentsUtils().getResponseFormat(e);
            responseWrapper.setInnerElement(responseFormat);
            return buildErrorResponse(responseFormat);
        } finally {
            getComponentsUtils().auditChangeLifecycleAction(responseWrapper.getInnerElement(), componentType, requestId, component, responseObject,
                new DistributionData(instanceIdHeader, requestURI), modifier);
        }
    }

    private Response buildCreatedResourceResponse(Component resource, Wrapper<ResponseFormat> responseWrapper) throws IOException {
        ResponseFormat responseFormat;
        Response response;
        Either<? extends AssetMetadata, ResponseFormat> resMetadata = assetMetadataUtils
            .convertToSingleAssetMetadata(resource, request.getRequestURL().toString(), true, null);
        if (resMetadata.isRight()) {
            log.debug("Asset conversion Failed");
            responseFormat = resMetadata.right().value();
            responseWrapper.setInnerElement(responseFormat);
            response = buildErrorResponse(responseFormat);
        } else {
            final AssetMetadata assetData = resMetadata.left().value();
            assetData.setToscaModelURL(null);
            responseWrapper.setInnerElement(getComponentsUtils().getResponseFormat(ActionStatus.CREATED));
            Object representation = RepresentationUtils.toRepresentation(assetData);
            response = buildOkResponse(getComponentsUtils().getResponseFormat(ActionStatus.CREATED), representation);
        }
        return response;
    }

    private void handleCategories(String data, Resource resource, Wrapper<ResponseFormat> responseWrapper) {
        try {
            JSONParser parser = new JSONParser();
            JSONObject jsonObj = (JSONObject) parser.parse(data);
            String category = (String) jsonObj.get(CategoryTypeEnum.CATEGORY.getValue());
            String subcategory = (String) jsonObj.get(CategoryTypeEnum.SUBCATEGORY.getValue());
            if (isNullOrEmpty(category)) {
                responseWrapper.setInnerElement(
                    getComponentsUtils().getResponseFormat(ActionStatus.COMPONENT_MISSING_CATEGORY, ComponentTypeEnum.RESOURCE.getValue()));
            } else if (isNullOrEmpty(subcategory)) {
                responseWrapper.setInnerElement(getComponentsUtils().getResponseFormat(ActionStatus.COMPONENT_MISSING_SUBCATEGORY));
            }
            if (responseWrapper.isEmpty()) {
                // get All Categories
                Either<List<CategoryDefinition>, ActionStatus> allResourceCategories = elementBusinessLogic.getAllResourceCategories();
                // Error fetching categories
                if (allResourceCategories.isRight()) {
                    responseWrapper.setInnerElement(getComponentsUtils().getResponseFormat(allResourceCategories.right().value()));
                } else {
                    addCategories(resource, category, subcategory, allResourceCategories, responseWrapper);
                }
            }
        } catch (ParseException e) {
            log.debug("Exception occured in addCategories: {}", e.getMessage(), e);
            responseWrapper.setInnerElement(getComponentsUtils().getResponseFormat(ActionStatus.GENERAL_ERROR));
        }
    }

    private void addCategories(Resource resource, String category, String subcategory,
                               Either<List<CategoryDefinition>, ActionStatus> allResourceCategories, Wrapper<ResponseFormat> responseWrapper) {
        Optional<CategoryDefinition> optionalCategory =
            // Stream of all the categories
            allResourceCategories.left().value().stream()
                // filter in only relevant category
                .filter(e -> e.getName().equals(category))
                // get the result
                .findAny();
        if (!optionalCategory.isPresent()) {
            responseWrapper.setInnerElement(
                getComponentsUtils().getResponseFormat(ActionStatus.COMPONENT_INVALID_CATEGORY, ComponentTypeEnum.RESOURCE.getValue()));
        } else {
            CategoryDefinition categoryDefinition = optionalCategory.get();
            List<SubCategoryDefinition> subCaregories =
                // Stream of all sub-categories of the relevant

                // category
                categoryDefinition.getSubcategories().stream()
                    // filter in only relevant sub-category
                    .filter(e -> e.getName().equals(subcategory))
                    // get the result
                    .collect(Collectors.toList());
            if (subCaregories.isEmpty()) {
                responseWrapper.setInnerElement(
                    getComponentsUtils().getResponseFormat(ActionStatus.COMPONENT_INVALID_SUBCATEGORY, ComponentTypeEnum.RESOURCE.getValue()));
            } else {
                categoryDefinition.setSubcategories(subCaregories);
                resource.setCategories(Arrays.asList(categoryDefinition));
            }
        }
    }

    private Wrapper<ResponseFormat> runValidations(final String assetType) {
        Wrapper<ResponseFormat> responseWrapper = new Wrapper<>();
        // Validate X-ECOMP-InstanceID Header
        if (responseWrapper.isEmpty()) {
            String instanceId = request.getHeader(Constants.X_ECOMP_INSTANCE_ID_HEADER);
            validateXECOMPInstanceIDHeader(instanceId, responseWrapper);
        }
        // Validate USER_ID Header
        if (responseWrapper.isEmpty()) {
            validateHttpCspUserIdHeader(request.getHeader(Constants.USER_ID_HEADER), responseWrapper);
        }
        // Validate assetType
        if (responseWrapper.isEmpty() && !AssetTypeEnum.RESOURCES.getValue().equals(assetType) && !AssetTypeEnum.SERVICES.getValue()
            .equals(assetType)) {
            responseWrapper.setInnerElement(getComponentsUtils().getResponseFormat(ActionStatus.RESTRICTED_OPERATION));
        }
        return responseWrapper;
    }

    private Either<LifeCycleTransitionEnum, ResponseFormat> validateTransitionEnum(final String lifecycleTransition, User user) {
        try {
            return Either.left(LifeCycleTransitionEnum.getFromDisplayName(lifecycleTransition));
        } catch (IllegalArgumentException e) {
            log.info("state operation is not valid. operations allowed are: {}", LifeCycleTransitionEnum.valuesAsString(), e);
            ResponseFormat error = getComponentsUtils().getInvalidContentErrorAndAudit(user, "", AuditingActionEnum.CHECKOUT_RESOURCE);
            return Either.right(error);
        }
    }
}