Refine Agent to create CADI Configs
[aaf/authz.git] / auth / auth-locate / src / main / java / org / onap / aaf / auth / locate / AAF_Locate.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.locate;
24
25 import java.net.URI;
26 import java.util.Map;
27
28 import javax.servlet.Filter;
29
30 import org.onap.aaf.auth.cache.Cache;
31 import org.onap.aaf.auth.cache.Cache.Dated;
32 import org.onap.aaf.auth.dao.CassAccess;
33 import org.onap.aaf.auth.dao.cass.ConfigDAO;
34 import org.onap.aaf.auth.dao.cass.LocateDAO;
35 import org.onap.aaf.auth.direct.DirectLocatorCreator;
36 import org.onap.aaf.auth.direct.DirectRegistrar;
37 import org.onap.aaf.auth.env.AuthzEnv;
38 import org.onap.aaf.auth.env.AuthzTrans;
39 import org.onap.aaf.auth.env.AuthzTransFilter;
40 import org.onap.aaf.auth.locate.api.API_AAFAccess;
41 import org.onap.aaf.auth.locate.api.API_Api;
42 import org.onap.aaf.auth.locate.api.API_Find;
43 import org.onap.aaf.auth.locate.api.API_Proxy;
44 import org.onap.aaf.auth.locate.facade.LocateFacadeFactory;
45 import org.onap.aaf.auth.locate.facade.LocateFacade_1_1;
46 import org.onap.aaf.auth.locate.mapper.Mapper.API;
47 import org.onap.aaf.auth.rserv.HttpMethods;
48 import org.onap.aaf.auth.server.AbsService;
49 import org.onap.aaf.auth.server.JettyServiceStarter;
50 import org.onap.aaf.auth.server.Log4JLogIt;
51 import org.onap.aaf.cadi.CadiException;
52 import org.onap.aaf.cadi.Locator;
53 import org.onap.aaf.cadi.LocatorException;
54 import org.onap.aaf.cadi.PropAccess;
55 import org.onap.aaf.cadi.aaf.v2_0.AAFAuthn;
56 import org.onap.aaf.cadi.aaf.v2_0.AAFConHttp;
57 import org.onap.aaf.cadi.aaf.v2_0.AAFLurPerm;
58 import org.onap.aaf.cadi.aaf.v2_0.AAFTrustChecker;
59 import org.onap.aaf.cadi.aaf.v2_0.AbsAAFLocator;
60 import org.onap.aaf.cadi.config.Config;
61 import org.onap.aaf.cadi.register.Registrant;
62 import org.onap.aaf.misc.env.APIException;
63 import org.onap.aaf.misc.env.Data;
64 import org.onap.aaf.misc.env.Env;
65 import org.onap.aaf.misc.rosetta.env.RosettaEnv;
66
67 import com.datastax.driver.core.Cluster;
68
69 public class AAF_Locate extends AbsService<AuthzEnv, AuthzTrans> {
70         private static final String DOT_LOCATOR = ".locator";
71
72         private static final String USER_PERMS = "userPerms";
73         private LocateFacade_1_1 facade; // this is the default Facade
74         private LocateFacade_1_1 facade_1_1_XML;
75         public Map<String, Dated> cacheUser;
76         public final AAFAuthn<?> aafAuthn;
77         public final AAFLurPerm aafLurPerm;
78         private Locator<URI> gui_locator;
79         public final long expireIn;
80         private final Cluster cluster;
81         public final LocateDAO locateDAO;
82         public final ConfigDAO configDAO;
83         private Locator<URI> dal;
84         private final String aaf_service_name;
85         private final String aaf_gui_name;
86
87         
88         /**
89          * Construct AuthzAPI with all the Context Supporting Routes that Authz needs
90          * 
91          * @param env
92          * @param si 
93          * @param dm 
94          * @param decryptor 
95          * @throws APIException 
96          */
97         public AAF_Locate(final AuthzEnv env) throws Exception {
98                 super(env.access(), env);
99                 aaf_service_name = app_name.replace(DOT_LOCATOR, ".service");
100                 aaf_gui_name = app_name.replace(DOT_LOCATOR, ".gui");
101                 
102                 expireIn = Long.parseLong(env.getProperty(Config.AAF_USER_EXPIRES, Config.AAF_USER_EXPIRES_DEF));
103
104                 // Initialize Facade for all uses
105                 AuthzTrans trans = env.newTransNoAvg();
106
107                 cluster = org.onap.aaf.auth.dao.CassAccess.cluster(env,null);
108                 locateDAO = new LocateDAO(trans,cluster,CassAccess.KEYSPACE);
109                 configDAO = new ConfigDAO(trans,locateDAO); // same stuff
110
111                 // Have AAFLocator object Create DirectLocators for Location needs
112                 AbsAAFLocator.setCreator(new DirectLocatorCreator(env, locateDAO));
113
114                 aafLurPerm = aafCon().newLur();
115                 // Note: If you need both Authn and Authz construct the following:
116                 aafAuthn = aafCon().newAuthn(aafLurPerm);
117
118
119                 facade = LocateFacadeFactory.v1_1(env,this,trans,Data.TYPE.JSON);   // Default Facade
120                 facade_1_1_XML = LocateFacadeFactory.v1_1(env,this,trans,Data.TYPE.XML);
121
122                 synchronized(env) {
123                         if(cacheUser == null) {
124                                 cacheUser = Cache.obtain(USER_PERMS);
125                                 Cache.startCleansing(env, USER_PERMS);
126                         }
127                 }
128
129
130                 ////////////////////////////////////////////////////////////////////////////
131                 // Time Critical
132                 //  These will always be evaluated first
133                 ////////////////////////////////////////////////////////////////////////
134                 API_AAFAccess.init(this,facade);
135                 API_Find.init(this, facade);
136                 API_Proxy.init(this, facade);
137                 
138                 ////////////////////////////////////////////////////////////////////////
139                 // Management APIs
140                 ////////////////////////////////////////////////////////////////////////
141                 // There are several APIs around each concept, and it gets a bit too
142                 // long in this class to create.  The initialization of these Management
143                 // APIs have therefore been pushed to StandAlone Classes with static
144                 // init functions
145                 API_Api.init(this, facade);
146
147                 ////////////////////////////////////////////////////////////////////////
148                 // Default Function
149                 ////////////////////////////////////////////////////////////////////////
150                 API_AAFAccess.initDefault(this,facade);
151                 
152         }
153
154         
155         /**
156          * Setup XML and JSON implementations for each supported Version type
157          * 
158          * We do this by taking the Code passed in and creating clones of these with the appropriate Facades and properties
159          * to do Versions and Content switches
160          * 
161          */
162         public void route(HttpMethods meth, String path, API api, LocateCode code) throws Exception {
163                 String version = "1.0";
164                 // Get Correct API Class from Mapper
165                 Class<?> respCls = facade.mapper().getClass(api); 
166                 if(respCls==null) throw new Exception("Unknown class associated with " + api.getClass().getName() + ' ' + api.name());
167                 // setup Application API HTML ContentTypes for JSON and Route
168                 String application = applicationJSON(respCls, version);
169                 route(env,meth,path,code,application,"application/json;version="+version,"*/*","*");
170
171                 // setup Application API HTML ContentTypes for XML and Route
172                 application = applicationXML(respCls, version);
173                 route(env,meth,path,code.clone(facade_1_1_XML,false),application,"text/xml;version="+version);
174                 
175                 // Add other Supported APIs here as created
176         }
177         
178         public void routeAll(HttpMethods meth, String path, API api, LocateCode code) throws Exception {
179                 route(env,meth,path,code,""); // this will always match
180         }
181
182
183         /* (non-Javadoc)
184          * @see org.onap.aaf.auth.server.AbsServer#_newAAFConHttp()
185          */
186         @Override
187         protected AAFConHttp _newAAFConHttp() throws CadiException {
188                 try {
189                         if(dal==null) {
190                                 dal = AbsAAFLocator.create(aaf_service_name,Config.AAF_DEFAULT_VERSION);
191                         }
192                         // utilize pre-constructed DirectAAFLocator
193                         return new AAFConHttp(env.access(),dal);
194                 } catch (APIException | LocatorException e) {
195                         throw new CadiException(e);
196                 }
197
198         }
199
200         public Locator<URI> getGUILocator() throws LocatorException {
201                 if(gui_locator==null) {
202                         gui_locator = AbsAAFLocator.create(aaf_gui_name,Config.AAF_DEFAULT_VERSION);
203                 }
204                 return gui_locator;
205         }
206
207
208         @Override
209         public Filter[] _filters(Object ... additionalTafLurs) throws CadiException, LocatorException {
210                 try {
211                         return new Filter[] {
212                                 new AuthzTransFilter(env, aafCon(), 
213                                         new AAFTrustChecker((Env)env)
214                                         ,additionalTafLurs
215                                 )};
216                 } catch (NumberFormatException e) {
217                         throw new CadiException("Invalid Property information", e);
218                 }
219         }
220
221         @SuppressWarnings("unchecked")
222         @Override
223         public Registrant<AuthzEnv>[] registrants(final int port) throws CadiException {
224                 return new Registrant[] {
225                         new DirectRegistrar(access,locateDAO,app_name,app_version,port)
226                 };
227         }
228
229         @Override
230         public void destroy() {
231                 Cache.stopTimer();
232                 if(cluster!=null) {
233                         cluster.close();
234                 }
235                 super.destroy();
236         }
237
238         public static void main(final String[] args) {
239                 try {
240                         Log4JLogIt logIt = new Log4JLogIt(args, "locate");
241                         PropAccess propAccess = new PropAccess(logIt,args);
242
243                         AAF_Locate service = new AAF_Locate(new AuthzEnv(propAccess));
244                         JettyServiceStarter<AuthzEnv,AuthzTrans> jss = new JettyServiceStarter<AuthzEnv,AuthzTrans>(service);
245                         jss.start();
246                 } catch (Exception e) {
247                         e.printStackTrace();
248                 }
249         }
250 }