15c8dc36b274196bccef7cf99ba0dfdd33147269
[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 org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.SelfRegistrationManager;
19 import org.slf4j.Logger;
20 import org.springframework.beans.factory.annotation.Autowired;
21 import org.springframework.stereotype.Controller;
22 import org.springframework.web.bind.annotation.RequestMapping;
23 import org.springframework.web.bind.annotation.ResponseBody;
24
25 import javax.servlet.http.HttpServletResponse;
26 import java.io.IOException;
27
28 import static org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.vnfm.DriverProperties.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     private final SelfRegistrationManager selfRegistrationManager;
43
44     @Autowired
45     SwaggerApi(SelfRegistrationManager selfRegistrationManager) {
46         this.selfRegistrationManager = selfRegistrationManager;
47     }
48
49     /**
50      * Return the swagger definition
51      *
52      * @param httpResponse the HTTP response
53      * @return the job representing the healing operation
54      */
55     @RequestMapping(value = "/swagger.json", method = GET)
56     @ResponseBody
57     public void getSwaggerApiDefinition(HttpServletResponse httpResponse) throws IOException {
58         logger.info("REST: get swagger definition");
59         httpResponse.addHeader(CONTENT_TYPE, APPLICATION_JSON_VALUE);
60         byte[] bytes = selfRegistrationManager.getSwaggerApiDefinition();
61         httpResponse.addHeader(CONTENT_LENGTH, Integer.toString(bytes.length));
62         httpResponse.getOutputStream().write(bytes);
63     }
64 }