Remove Tabs, per Jococo
[aaf/authz.git] / auth / auth-oauth / src / main / java / org / onap / aaf / auth / oauth / AAF_OAuth.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
23 package org.onap.aaf.auth.oauth;
24
25 import java.util.Map;
26
27 import javax.servlet.Filter;
28
29 import org.onap.aaf.auth.cache.Cache;
30 import org.onap.aaf.auth.cache.Cache.Dated;
31 import org.onap.aaf.auth.dao.CassAccess;
32 import org.onap.aaf.auth.dao.hl.Question;
33 import org.onap.aaf.auth.direct.DirectLocatorCreator;
34 import org.onap.aaf.auth.direct.DirectRegistrar;
35 import org.onap.aaf.auth.env.AuthzEnv;
36 import org.onap.aaf.auth.env.AuthzTrans;
37 import org.onap.aaf.auth.env.AuthzTransFilter;
38 import org.onap.aaf.auth.oauth.api.API_Token;
39 import org.onap.aaf.auth.oauth.facade.OAFacade;
40 import org.onap.aaf.auth.oauth.facade.OAFacade1_0;
41 import org.onap.aaf.auth.oauth.facade.OAFacadeFactory;
42 import org.onap.aaf.auth.oauth.mapper.Mapper.API;
43 import org.onap.aaf.auth.oauth.service.OAuthService;
44 import org.onap.aaf.auth.rserv.HttpCode;
45 import org.onap.aaf.auth.rserv.HttpMethods;
46 import org.onap.aaf.auth.server.AbsService;
47 import org.onap.aaf.auth.server.JettyServiceStarter;
48 import org.onap.aaf.auth.server.Log4JLogIt;
49 import org.onap.aaf.cadi.CadiException;
50 import org.onap.aaf.cadi.LocatorException;
51 import org.onap.aaf.cadi.PropAccess;
52 import org.onap.aaf.cadi.aaf.v2_0.AAFAuthn;
53 import org.onap.aaf.cadi.aaf.v2_0.AAFLurPerm;
54 import org.onap.aaf.cadi.aaf.v2_0.AAFTrustChecker;
55 import org.onap.aaf.cadi.aaf.v2_0.AbsAAFLocator;
56 import org.onap.aaf.cadi.config.Config;
57 import org.onap.aaf.cadi.oauth.TokenMgr;
58 import org.onap.aaf.cadi.oauth.TokenMgr.TokenPermLoader;
59 import org.onap.aaf.cadi.register.Registrant;
60 import org.onap.aaf.misc.env.APIException;
61 import org.onap.aaf.misc.env.Data.TYPE;
62 import org.onap.aaf.misc.env.Env;
63
64 import com.datastax.driver.core.Cluster;
65
66 import aafoauth.v2_0.Introspect;
67
68 public class AAF_OAuth extends AbsService<AuthzEnv,AuthzTrans> {
69     public Map<String, Dated> cacheUser;
70     public AAFAuthn<?> aafAuthn;
71     public AAFLurPerm aafLurPerm;
72     private final OAuthService service;
73     private OAFacade1_0 facade1_0;
74     private final Question question;
75     private TokenPermLoader tpLoader; 
76     private final Cluster cluster;
77     
78     /**
79      * Construct AuthzAPI with all the Context Supporting Routes that Authz needs
80      * 
81      * @param env
82      * @param si 
83      * @param dm 
84      * @param decryptor 
85      * @throws APIException 
86      */
87     public AAF_OAuth(final AuthzEnv env) throws Exception {
88         super(env.access(),env);
89         
90         String aaf_env = env.getProperty(Config.AAF_ENV);
91         if (aaf_env==null) {
92             throw new APIException("aaf_env needs to be set");
93         }
94         
95         // Initialize Facade for all uses
96         AuthzTrans trans = env.newTrans();
97         cluster = org.onap.aaf.auth.dao.CassAccess.cluster(env,null);
98         
99         aafLurPerm = aafCon().newLur();
100         // Note: If you need both Authn and Authz construct the following:
101         aafAuthn = aafCon().newAuthn(aafLurPerm);
102
103         // Start Background Processing
104         //    Question question = 
105         question = new Question(trans, cluster, CassAccess.KEYSPACE);
106         question.startTimers(env);
107
108         // Have AAFLocator object Create DirectLocators for Location needs
109         AbsAAFLocator.setCreator(new DirectLocatorCreator(env, question.locateDAO));
110
111
112         service = new OAuthService(env.access(),trans,question);
113         facade1_0 = OAFacadeFactory.v1_0(this, trans, service, TYPE.JSON);
114         StringBuilder sb = new StringBuilder();
115         trans.auditTrail(2, sb);
116         trans.init().log(sb);
117         
118         API_Token.init(this, facade1_0);
119     }
120     
121     /**
122      * Setup XML and JSON implementations for each supported Version type
123      * 
124      * We do this by taking the Code passed in and creating clones of these with the appropriate Facades and properties
125      * to do Versions and Content switches
126      * 
127      */
128     public void route(HttpMethods meth, String path, API api, HttpCode<AuthzTrans, OAFacade<Introspect>> code) throws Exception {
129         String version = "1.0";
130         // Get Correct API Class from Mapper
131         Class<?> respCls = facade1_0.mapper().getClass(api); 
132         if (respCls==null) throw new Exception("Unknown class associated with " + api.getClass().getName() + ' ' + api.name());
133         // setup Application API HTML ContentTypes for JSON and Route
134         String application = applicationJSON(respCls, version);
135         if (meth.equals(HttpMethods.POST)) {
136             route(env,meth,path,code,application,"application/json;version="+version,"application/x-www-form-urlencoded","*/*");
137         } else {
138             route(env,meth,path,code,application,"application/json;version="+version,"*/*");
139         }
140     }
141     
142     @Override
143     public Filter[] _filters(Object ... additionalTafLurs) throws CadiException, LocatorException {
144         try {
145             DirectOAuthTAF doat = new DirectOAuthTAF(env,question,facade1_0);
146             Object[] atl=new Object[additionalTafLurs.length+2];
147             atl[0] = doat;
148             atl[1] = doat.directUserPass();
149
150             if (additionalTafLurs.length>0) {
151                 System.arraycopy(additionalTafLurs, 0, atl, 2, additionalTafLurs.length);
152             }
153             
154             return new Filter[] {
155                 new AuthzTransFilter(env,aafCon(),
156                     new AAFTrustChecker((Env)env),
157                     atl
158             )};
159         } catch (NumberFormatException | APIException e) {
160             throw new CadiException("Invalid Property information", e);
161         }
162     }
163     
164     @SuppressWarnings("unchecked")
165     @Override
166     public Registrant<AuthzEnv>[] registrants(final int port) throws CadiException {
167         return new Registrant[] {
168             new DirectRegistrar(access,question.locateDAO,port)
169         };
170     }
171
172
173     @Override
174     public void destroy() {
175         Cache.stopTimer();
176         if (service!=null) {
177             service.close();
178         }
179         if (cluster!=null) {
180             cluster.close();
181         }
182         super.destroy();
183     }
184     
185     // For use in CADI ONLY
186     public TokenMgr.TokenPermLoader tpLoader() {
187         return tpLoader;
188     }
189
190     public static void main(final String[] args) {
191         try {
192             Log4JLogIt logIt = new Log4JLogIt(args, "oauth");
193             PropAccess propAccess = new PropAccess(logIt,args);
194
195             try {
196                 new JettyServiceStarter<AuthzEnv,AuthzTrans>(
197                     new AAF_OAuth(new AuthzEnv(propAccess)),true)
198                         .start();
199             } catch (Exception e) {
200                 propAccess.log(e);
201             }
202         } catch (Exception e) {
203             e.printStackTrace();
204         }
205     }
206 }