Public and Private Locate entries
[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.auth.server.Log4JLogIt;
40 import org.onap.aaf.cadi.Access.Level;
41 import org.onap.aaf.cadi.CadiException;
42 import org.onap.aaf.cadi.LocatorException;
43 import org.onap.aaf.cadi.PropAccess;
44 import org.onap.aaf.cadi.config.Config;
45 import org.onap.aaf.cadi.register.Registrant;
46 import org.onap.aaf.cadi.register.RemoteRegistrant;
47 import org.onap.aaf.misc.env.APIException;
48
49
50 public class AAF_FS extends AbsService<AuthzEnv, AuthzTrans>  {
51
52     public AAF_FS(final AuthzEnv env) throws APIException, IOException, CadiException {
53         super(env.access(),env);
54         try {
55             ///////////////////////  
56             // File Server 
57             ///////////////////////
58             // creates StaticSlot, needed for CachingFileAccess, and sets to public Dir
59             env.staticSlot(CachingFileAccess.CFA_WEB_PATH,"aaf_public_dir");
60
61             CachingFileAccess<AuthzTrans> cfa = new CachingFileAccess<AuthzTrans>(env);
62             route(env,GET,"/:key", cfa); 
63             route(env,GET,"/:key/:cmd", cfa);
64             final String aaf_locate_url = access.getProperty(Config.AAF_LOCATE_URL, null);
65             if (aaf_locate_url == null) {
66                 access.printf(Level.WARN, "Redirection requires property %s",Config.AAF_LOCATE_URL);
67             } else {
68                 route(env,GET,"/", new Redirect(this,aaf_locate_url));
69             }
70         } catch (Exception e) {
71             e.printStackTrace();
72         }
73     }
74     
75     private static class Redirect extends HttpCode<AuthzTrans, AAF_FS> {
76         private final String url;
77
78         public Redirect(AAF_FS context,String url) {
79             super(context, "Redirect to HTTP/S");
80             this.url = url;
81         }
82
83         @Override
84         public void handle(AuthzTrans trans, HttpServletRequest req, HttpServletResponse resp) throws Exception {
85             trans.info().printf("Redirecting %s to HTTP/S %s", req.getRemoteAddr(), req.getLocalAddr());
86             resp.sendRedirect(url);
87         }
88     };
89     
90     @Override
91     public Filter[] _filters(Object ... additionalTafLurs) throws CadiException, LocatorException {
92         // Note: No TAFs and Lurs on FileServer
93         return new Filter[] {
94             new AuthzTransOnlyFilter(env)
95         };
96     }
97
98     @SuppressWarnings("unchecked")
99     @Override
100     public Registrant<AuthzEnv>[] registrants(final int port) throws CadiException, LocatorException {
101         return new Registrant[] {
102             new RemoteRegistrant<AuthzEnv>(aafCon(),port)
103         };
104     }
105     
106     public static void main(final String[] args) {
107         try {
108             Log4JLogIt logIt = new Log4JLogIt(args, "fs");
109             PropAccess propAccess = new PropAccess(logIt,args);
110
111              AAF_FS service = new AAF_FS(new AuthzEnv(propAccess));
112             JettyServiceStarter<AuthzEnv,AuthzTrans> jss = new JettyServiceStarter<AuthzEnv,AuthzTrans>(service);
113             jss.insecure().start();
114         } catch (Exception e) {
115             e.printStackTrace();
116         }
117     }
118 }