AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-fs / src / main / java / org / onap / aaf / auth / fs / AAF_FS.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.auth.fs;
23
24 import static org.onap.aaf.auth.rserv.HttpMethods.GET;
25
26 import java.io.IOException;
27
28 import javax.servlet.Filter;
29 import javax.servlet.http.HttpServletRequest;
30 import javax.servlet.http.HttpServletResponse;
31
32 import org.onap.aaf.auth.env.AuthzEnv;
33 import org.onap.aaf.auth.env.AuthzTrans;
34 import org.onap.aaf.auth.env.AuthzTransOnlyFilter;
35 import org.onap.aaf.auth.rserv.CachingFileAccess;
36 import org.onap.aaf.auth.rserv.HttpCode;
37 import org.onap.aaf.auth.server.AbsService;
38 import org.onap.aaf.auth.server.JettyServiceStarter;
39 import org.onap.aaf.cadi.Access.Level;
40 import org.onap.aaf.cadi.CadiException;
41 import org.onap.aaf.cadi.LocatorException;
42 import org.onap.aaf.cadi.PropAccess;
43 import org.onap.aaf.cadi.config.Config;
44 import org.onap.aaf.cadi.register.Registrant;
45 import org.onap.aaf.cadi.register.RemoteRegistrant;
46 import org.onap.aaf.misc.env.APIException;
47
48
49 public class AAF_FS extends AbsService<AuthzEnv, AuthzTrans>  {
50
51         public AAF_FS(final AuthzEnv env) throws APIException, IOException, CadiException {
52                 super(env.access(),env);
53                 try {
54                         ///////////////////////  
55                         // File Server 
56                         ///////////////////////
57                         // creates StaticSlot, needed for CachingFileAccess, and sets to public Dir
58                         env.staticSlot(CachingFileAccess.CFA_WEB_PATH,"aaf_public_dir");
59
60                         CachingFileAccess<AuthzTrans> cfa = new CachingFileAccess<AuthzTrans>(env);
61                         route(env,GET,"/:key", cfa); 
62                         route(env,GET,"/:key/:cmd", cfa);
63                         final String aaf_locate_url = access.getProperty(Config.AAF_LOCATE_URL, null);
64                         if(aaf_locate_url == null) {
65                                 access.printf(Level.WARN, "Redirection requires property %s",Config.AAF_LOCATE_URL);
66                         } else {
67                                 route(env,GET,"/", new Redirect(this,aaf_locate_url));
68                         }
69                 } catch (Exception e) {
70                         e.printStackTrace();
71                 }
72         }
73         
74         private static class Redirect extends HttpCode<AuthzTrans, AAF_FS> {
75                 private final String url;
76
77                 public Redirect(AAF_FS context,String url) {
78                         super(context, "Redirect to HTTP/S");
79                         this.url = url;
80                 }
81
82                 @Override
83                 public void handle(AuthzTrans trans, HttpServletRequest req, HttpServletResponse resp) throws Exception {
84                         trans.info().printf("Redirecting %s to HTTP/S %s", req.getRemoteAddr(), req.getLocalAddr());
85                         resp.sendRedirect(url);
86                 }
87         };
88         
89         @Override
90         public Filter[] filters() throws CadiException, LocatorException {
91                 return new Filter[] {
92                         new AuthzTransOnlyFilter(env)
93                 };
94         }
95
96         @SuppressWarnings("unchecked")
97         @Override
98         public Registrant<AuthzEnv>[] registrants(final int port) throws CadiException, LocatorException {
99                 return new Registrant[] {
100                         new RemoteRegistrant<AuthzEnv>(aafCon(),app_name,app_version,port)
101                 };
102         }
103         
104         public static void main(final String[] args) {
105                 PropAccess propAccess = new PropAccess(args);
106                 try {
107                         AAF_FS service = new AAF_FS(new AuthzEnv(propAccess));
108 //                      env.setLog4JNames("log4j.properties","authz","fs","audit","init",null);
109                         JettyServiceStarter<AuthzEnv,AuthzTrans> jss = new JettyServiceStarter<AuthzEnv,AuthzTrans>(service);
110                         jss.insecure().start();
111                 } catch (Exception e) {
112                         e.printStackTrace();
113                 }
114         }
115 }