AT&T 2.0.19 Code drop, stage 4
[aaf/authz.git] / authz-gw / src / main / java / org / onap / aaf / authz / gw / api / API_Api.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package org.onap.aaf.authz.gw.api;\r
24 \r
25 import static org.onap.aaf.authz.layer.Result.OK;\r
26 \r
27 import javax.servlet.http.HttpServletRequest;\r
28 import javax.servlet.http.HttpServletResponse;\r
29 \r
30 import org.onap.aaf.authz.env.AuthzTrans;\r
31 import org.onap.aaf.authz.gw.GwAPI;\r
32 import org.onap.aaf.authz.gw.GwCode;\r
33 import org.onap.aaf.authz.gw.facade.GwFacade;\r
34 import org.onap.aaf.authz.gw.mapper.Mapper.API;\r
35 import org.onap.aaf.authz.layer.Result;\r
36 import org.onap.aaf.cssa.rserv.HttpMethods;\r
37 \r
38 import com.att.aft.dme2.internal.jetty.http.HttpStatus;\r
39 import org.onap.aaf.cadi.Symm;\r
40 \r
41 /**\r
42  * API Apis\r
43  *\r
44  */\r
45 public class API_Api {\r
46         /**\r
47          * Normal Init level APIs\r
48          * \r
49          * @param gwAPI\r
50          * @param facade\r
51          * @throws Exception\r
52          */\r
53         public static void init(final GwAPI gwAPI, GwFacade facade) throws Exception {\r
54                 ////////\r
55                 // Overall APIs\r
56                 ///////\r
57                 gwAPI.route(HttpMethods.GET,"/api",API.VOID,new GwCode(facade,"Document API", true) {\r
58                         @Override\r
59                         public void handle(AuthzTrans trans, HttpServletRequest req, HttpServletResponse resp) throws Exception {\r
60                                 Result<Void> r = context.getAPI(trans,resp,gwAPI);\r
61                                 switch(r.status) {\r
62                                 case OK:\r
63                                         resp.setStatus(HttpStatus.OK_200);\r
64                                         break;\r
65                                 default:\r
66                                         context.error(trans,resp,r);\r
67                         }\r
68 \r
69                         }\r
70                 });\r
71 \r
72                 ////////\r
73                 // Overall Examples\r
74                 ///////\r
75                 gwAPI.route(HttpMethods.GET,"/api/example/*",API.VOID,new GwCode(facade,"Document API", true) {\r
76                         @Override\r
77                         public void handle(AuthzTrans trans, HttpServletRequest req, HttpServletResponse resp) throws Exception {\r
78                                 String pathInfo = req.getPathInfo();\r
79                                 int question = pathInfo.lastIndexOf('?');\r
80                                 \r
81                                 pathInfo = pathInfo.substring(13, question<0?pathInfo.length():question);// IMPORTANT, this is size of "/api/example/"\r
82                                 String nameOrContextType=Symm.base64noSplit.decode(pathInfo);\r
83 //                              String param = req.getParameter("optional");\r
84                                 Result<Void> r = context.getAPIExample(trans,resp,nameOrContextType,\r
85                                                 question>=0 && "optional=true".equalsIgnoreCase(req.getPathInfo().substring(question+1))\r
86                                                 );\r
87                                 switch(r.status) {\r
88                                 case OK:\r
89                                         resp.setStatus(HttpStatus.OK_200);\r
90                                         break;\r
91                                 default:\r
92                                         context.error(trans,resp,r);\r
93                         }\r
94 \r
95                         }\r
96                 });\r
97 \r
98         }\r
99 }\r