Update docker image to fix CSIT failure
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / driver / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nokia / restapi / SwaggerApi.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.restapi;
17
18 import java.io.IOException;
19 import javax.servlet.http.HttpServletResponse;
20 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.SelfRegistrationManager;
21 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.SelfRegistrationManagerForVfc;
22 import org.slf4j.Logger;
23 import org.springframework.beans.factory.annotation.Autowired;
24 import org.springframework.stereotype.Controller;
25 import org.springframework.web.bind.annotation.RequestMapping;
26 import org.springframework.web.bind.annotation.ResponseBody;
27
28 import static org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.Constants.BASE_URL;
29 import static org.slf4j.LoggerFactory.getLogger;
30 import static org.springframework.http.HttpHeaders.CONTENT_LENGTH;
31 import static org.springframework.http.HttpHeaders.CONTENT_TYPE;
32 import static org.springframework.http.MediaType.APPLICATION_JSON_VALUE;
33 import static org.springframework.web.bind.annotation.RequestMethod.GET;
34
35 /**
36  * Responsible for providing the Nokia S-VNFM REST APIs for accessing the swagger definitions
37  */
38 @Controller
39 @RequestMapping(value = BASE_URL)
40 public class SwaggerApi {
41     private static Logger logger = getLogger(SwaggerApi.class);
42     //FIXME this should not depened on self registration manager
43     private final SelfRegistrationManager selfRegistrationManager;
44
45     @Autowired
46     SwaggerApi(SelfRegistrationManagerForVfc selfRegistrationManager) {
47         this.selfRegistrationManager = selfRegistrationManager;
48     }
49
50     /**
51      * Return the swagger definition
52      *
53      * @param httpResponse the HTTP response
54      * @return the job representing the healing operation
55      */
56     @RequestMapping(value = "/swagger.json", method = GET)
57     @ResponseBody
58     public void getSwaggerApiDefinition(HttpServletResponse httpResponse) throws IOException {
59         logger.info("REST: get swagger definition");
60         httpResponse.addHeader(CONTENT_TYPE, APPLICATION_JSON_VALUE);
61         byte[] bytes = selfRegistrationManager.getSwaggerApiDefinition();
62         httpResponse.addHeader(CONTENT_LENGTH, Integer.toString(bytes.length));
63         httpResponse.getOutputStream().write(bytes);
64     }
65 }