Fix for Penetration test _ Session and cookie management
[vid.git] / vid-app-common / src / main / java / org / onap / vid / controller / AsyncControllerForTests.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.vid.controller;
22
23 import org.onap.vid.exceptions.GenericUncheckedException;
24 import org.onap.vid.model.ExceptionResponse;
25 import org.onap.vid.model.JobModel;
26 import org.onap.vid.services.BulkInstantiationService;
27 import org.springframework.beans.factory.annotation.Autowired;
28 import org.springframework.http.ResponseEntity;
29 import org.springframework.web.bind.annotation.*;
30
31 import javax.ws.rs.WebApplicationException;
32 import java.util.UUID;
33
34 import static org.springframework.http.HttpStatus.BAD_REQUEST;
35
36 @RestController
37 @RequestMapping("asyncForTests")
38 public class AsyncControllerForTests extends VidRestrictedBaseController {
39
40     private BulkInstantiationService bulkInstantiationService;
41
42     @Autowired
43     public AsyncControllerForTests(BulkInstantiationService bulkInstantiationService) {
44         this.bulkInstantiationService = bulkInstantiationService;
45     }
46
47     @RequestMapping(value = "/job/{uuid}", method = RequestMethod.GET)
48     public JobModel getJob(@PathVariable UUID uuid) {
49         return bulkInstantiationService.getJob(uuid);
50     }
51
52     @RequestMapping(value = "/error", method = RequestMethod.GET)
53     public void throwError() {
54         throw new GenericUncheckedException("dummy error");
55     }
56
57     @ExceptionHandler({IllegalArgumentException.class})
58     @ResponseStatus(value=BAD_REQUEST)
59     private ExceptionResponse exceptionHandlerBadRequest(Exception e) {
60         return ControllersUtils.handleException(e, LOGGER);
61     }
62
63     @ExceptionHandler(WebApplicationException.class)
64     private ResponseEntity webApplicationExceptionHandler(WebApplicationException e) {
65         return ControllersUtils.handleWebApplicationException(e, LOGGER);
66     }
67
68 }