added svcapi ui and camunda code
[it/otf.git] / otf-service-api / src / main / java / org / oran / otf / api / service / impl / OtfOpenServiceImpl.java
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 package org.oran.otf.api.service.impl;\r
18 \r
19 import org.oran.otf.api.Utilities;\r
20 import org.oran.otf.api.Utilities.LogLevel;\r
21 import org.oran.otf.api.service.OtfOpenService;\r
22 import com.google.gson.JsonObject;\r
23 import com.google.gson.JsonParser;\r
24 import javax.ws.rs.core.Response;\r
25 import org.apache.http.HttpResponse;\r
26 import org.apache.http.util.EntityUtils;\r
27 import org.springframework.stereotype.Service;\r
28 \r
29 @Service\r
30 public class OtfOpenServiceImpl implements OtfOpenService {\r
31 \r
32   @Override\r
33   public Response convertSwaggerFile() {\r
34     try {\r
35       HttpResponse res =\r
36           Utilities.Http.httpGetUsingAAF("https://localhost:8443/otf/api/openapi.json");\r
37       String resStr = EntityUtils.toString(res.getEntity());\r
38       JsonObject resJson = new JsonParser().parse(resStr).getAsJsonObject();\r
39       if (resJson.has("openapi")) {\r
40         resJson.addProperty("openapi", "3.0.0");\r
41         return Response.ok(resJson.toString()).build();\r
42       }\r
43     } catch (Exception e) {\r
44       Utilities.printStackTrace(e, LogLevel.ERROR);\r
45     }\r
46 \r
47     return Utilities.Http.BuildResponse.internalServerError();\r
48   }\r
49 }\r