64d93539449e046a584d2d9e8172c3ad2abe5b5a
[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
48
49
50 public class AAF_FS extends AbsService<AuthzEnv, AuthzTrans>  {
51
52     public AAF_FS(final AuthzEnv env) throws 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<>(env);
62             route(env,GET,"/:key*", cfa);
63             final String aaf_locate_url = Config.getAAFLocateUrl(access);
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(Object ... additionalTafLurs) throws CadiException, LocatorException {
91         // Note: No TAFs and Lurs on FileServer
92         return new Filter[] {
93             new AuthzTransOnlyFilter(env)
94         };
95     }
96
97     @SuppressWarnings("unchecked")
98     @Override
99     public Registrant<AuthzEnv>[] registrants(final int port) throws CadiException, LocatorException {
100         return new Registrant[] {
101             new RemoteRegistrant<AuthzEnv>(aafCon(),port)
102         };
103     }
104
105     public static void main(final String[] args) {
106         try {
107             Log4JLogIt logIt = new Log4JLogIt(args, "fs");
108             PropAccess propAccess = new PropAccess(logIt,args);
109             try {
110                 new JettyServiceStarter<AuthzEnv,AuthzTrans>(
111                     new AAF_FS(new AuthzEnv(propAccess)),false)
112                         .start();
113             } catch (Exception e) {
114                 propAccess.log(e);
115             }
116         } catch (Exception e) {
117             e.printStackTrace();
118         }
119     }
120 }