[AAF-21] Initial code import
[aaf/authz.git] / authz-gw / src / main / java / com / att / authz / gw / api / API_TGuard.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aai\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * Copyright © 2017 Amdocs\r
7  * * ===========================================================================\r
8  * * Licensed under the Apache License, Version 2.0 (the "License");\r
9  * * you may not use this file except in compliance with the License.\r
10  * * You may obtain a copy of the License at\r
11  * * \r
12  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
13  * * \r
14  *  * Unless required by applicable law or agreed to in writing, software\r
15  * * distributed under the License is distributed on an "AS IS" BASIS,\r
16  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
17  * * See the License for the specific language governing permissions and\r
18  * * limitations under the License.\r
19  * * ============LICENSE_END====================================================\r
20  * *\r
21  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
22  * *\r
23  ******************************************************************************/\r
24 package com.att.authz.gw.api;\r
25 \r
26 import static com.att.authz.layer.Result.OK;\r
27 \r
28 import javax.servlet.http.HttpServletRequest;\r
29 import javax.servlet.http.HttpServletResponse;\r
30 \r
31 import com.att.aft.dme2.internal.jetty.http.HttpStatus;\r
32 import com.att.authz.env.AuthzTrans;\r
33 import com.att.authz.gw.GwAPI;\r
34 import com.att.authz.gw.GwCode;\r
35 import com.att.authz.gw.facade.GwFacade;\r
36 import com.att.authz.gw.mapper.Mapper.API;\r
37 import com.att.authz.layer.Result;\r
38 import com.att.cssa.rserv.HttpMethods;\r
39 \r
40 /**\r
41  * API Apis\r
42  *\r
43  */\r
44 public class API_TGuard {\r
45         /**\r
46          * Normal Init level APIs\r
47          * \r
48          * @param gwAPI\r
49          * @param facade\r
50          * @throws Exception\r
51          */\r
52         public static void init(final GwAPI gwAPI, GwFacade facade) throws Exception {\r
53                 String aftenv = gwAPI.env.getProperty(API_AAFAccess.AFT_ENVIRONMENT);\r
54                 if(aftenv==null) throw new Exception(API_AAFAccess.AFT_ENVIRONMENT + " must be set");\r
55 \r
56                 ////////\r
57                 // Do not deploy these to PROD\r
58                 ///////\r
59                 if(API_AAFAccess.AFTUAT.equals(aftenv)) {\r
60                         gwAPI.route(HttpMethods.GET,"/tguard/:path*",API.VOID,new GwCode(facade,"TGuard Test", true) {\r
61                                 @Override\r
62                                 public void handle(AuthzTrans trans, HttpServletRequest req, HttpServletResponse resp) throws Exception {\r
63                                         Result<Void> r = context.getAPI(trans,resp,gwAPI);\r
64                                         switch(r.status) {\r
65                                                 case OK:\r
66                                                         resp.setStatus(HttpStatus.OK_200);\r
67                                                         break;\r
68                                                 default:\r
69                                                         context.error(trans,resp,r);\r
70                                         }\r
71                                 }\r
72                         });\r
73                 }\r
74         }\r
75 }\r