Create an ONAP CADI Example
[aaf/authz.git] / cadi / aaf / src / main / java / org / onap / aaf / cadi / oauth / TokenClientFactory.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.cadi.oauth;
23
24 import java.io.IOException;
25 import java.net.HttpURLConnection;
26 import java.net.URI;
27 import java.net.URISyntaxException;
28 import java.nio.file.Path;
29 import java.security.GeneralSecurityException;
30 import java.security.NoSuchAlgorithmException;
31 import java.util.Map;
32 import java.util.concurrent.ConcurrentHashMap;
33 import java.util.regex.Pattern;
34
35 import org.onap.aaf.cadi.Access;
36 import org.onap.aaf.cadi.CadiException;
37 import org.onap.aaf.cadi.Hash;
38 import org.onap.aaf.cadi.Locator;
39 import org.onap.aaf.cadi.LocatorException;
40 import org.onap.aaf.cadi.Symm;
41 import org.onap.aaf.cadi.aaf.v2_0.AAFConHttp;
42 import org.onap.aaf.cadi.aaf.v2_0.AAFLocator;
43 import org.onap.aaf.cadi.config.Config;
44 import org.onap.aaf.cadi.config.SecurityInfoC;
45 import org.onap.aaf.cadi.locator.PropertyLocator;
46 import org.onap.aaf.cadi.oauth.TokenClient.AUTHN_METHOD;
47 import org.onap.aaf.cadi.persist.Persist;
48 import org.onap.aaf.cadi.principal.Kind;
49 import org.onap.aaf.misc.env.APIException;
50 import org.onap.aaf.misc.rosetta.env.RosettaEnv;
51
52 import aafoauth.v2_0.Token;
53
54 public class TokenClientFactory extends Persist<Token,TimedToken> {
55         private static TokenClientFactory instance;
56         private Map<String,AAFConHttp> aafcons = new ConcurrentHashMap<String, AAFConHttp>();
57         private SecurityInfoC<HttpURLConnection> hsi;
58         // Package on purpose
59         final Symm symm;
60
61         private TokenClientFactory(Access pa) throws APIException, GeneralSecurityException, IOException, CadiException {
62                 super(pa, new RosettaEnv(pa.getProperties()),Token.class,"outgoing");
63                 
64                 if(access.getProperty(Config.AAF_OAUTH2_TOKEN_URL,null)==null) {
65                         access.getProperties().put(Config.AAF_OAUTH2_TOKEN_URL, "https://AAF_LOCATE_URL/AAF_NS.token/2.0"); // Default to AAF
66                 }
67                 if(access.getProperty(Config.AAF_OAUTH2_INTROSPECT_URL,null)==null) {
68                         access.getProperties().put(Config.AAF_OAUTH2_INTROSPECT_URL, "https://AAF_LOCATE_URL/AAF_NS.introspect/2.0"); // Default to AAF);
69                 }
70
71                 symm = Symm.encrypt.obtain();
72                 hsi = SecurityInfoC.instance(access, HttpURLConnection.class);
73         }
74         
75         public synchronized static final TokenClientFactory instance(Access access) throws APIException, GeneralSecurityException, IOException, CadiException {
76                 if(instance==null) {
77                         instance = new TokenClientFactory(access);
78                 }
79                 return instance;
80         }
81         
82         /**
83          * Pickup Timeout from Properties
84          * 
85          * @param tagOrURL
86          * @return
87          * @throws CadiException
88          * @throws LocatorException
89          * @throws APIException
90          */
91         public<INTR> TokenClient newClient(final String tagOrURL) throws CadiException, LocatorException, APIException {
92                 return newClient(tagOrURL,Integer.parseInt(access.getProperty(Config.AAF_CONN_TIMEOUT, Config.AAF_CONN_TIMEOUT_DEF)));
93         }
94         
95         public<INTR> TokenClient newClient(final String tagOrURL, final int timeout) throws CadiException, LocatorException, APIException {
96                 AAFConHttp ach;
97                 if(tagOrURL==null) {
98                         throw new CadiException("parameter tagOrURL cannot be null.");
99                 } else {
100                         ach = aafcons.get(tagOrURL);
101                         if(ach==null) {
102                                 aafcons.put(tagOrURL, ach=new AAFConHttp(access,tagOrURL));
103                         }
104                 }
105                 char okind;
106                 if( Config.AAF_OAUTH2_TOKEN_URL.equals(tagOrURL) ||
107                         Config.AAF_OAUTH2_INTROSPECT_URL.equals(tagOrURL) ||
108                         tagOrURL.equals(access.getProperty(Config.AAF_OAUTH2_TOKEN_URL, null)) ||
109                         tagOrURL.equals(access.getProperty(Config.AAF_OAUTH2_INTROSPECT_URL, null))
110                         ) {
111                                 okind = Kind.AAF_OAUTH;
112                         } else {
113                                 okind = Kind.OAUTH;
114                         }
115                 TokenClient tci = new TokenClient(
116                                 okind,
117                                 this,
118                                 ach,
119                                 timeout,
120                                 AUTHN_METHOD.none);
121                 tci.client_creds(access);
122                 return tci;
123         }
124         
125         public TzClient newTzClient(final String locatorURL) throws CadiException, LocatorException {
126                 try {
127                         return new TzHClient(access,hsi,bestLocator(locatorURL));
128                 } catch (URISyntaxException e) {
129                         throw new LocatorException(e);
130                 }
131         }
132
133         static String getKey(char tokenSource,String client_id, String username, byte[] hash, String scope) throws CadiException {
134                 try {
135                         StringBuilder sb = new StringBuilder(client_id);
136                         sb.append('_');
137                         if(username!=null) {
138                                 sb.append(username);
139                         }
140                         sb.append('_');
141                         sb.append(tokenSource);
142                         byte[] tohash=scope.getBytes();
143                         if(hash!=null && hash.length>0) {
144                                 byte temp[] = new byte[hash.length+tohash.length];
145                                 System.arraycopy(tohash, 0, temp, 0, tohash.length);
146                                 System.arraycopy(hash, 0, temp, tohash.length, hash.length);
147                                 tohash = temp;
148                         }
149                         if(scope!=null && scope.length()>0) {
150                                 sb.append(Hash.toHexNo0x(Hash.hashSHA256(tohash)));
151                         }
152                         return sb.toString();
153                 } catch (NoSuchAlgorithmException e) {
154                         throw new CadiException(e);
155                 }
156         }
157
158         @Override
159         protected TimedToken newCacheable(Token t, long expires, byte[] hash, Path path) throws IOException {
160                 return new TimedToken(this,t,expires,hash,path);
161         }
162
163         public TimedToken putTimedToken(String key, Token token, byte[] hash) throws IOException, CadiException {
164                 TimedToken tt = new TimedToken(this,token,token.getExpiresIn()+(System.currentTimeMillis()/1000),hash,getPath(key));
165                 put(key,tt);
166                 return tt;
167         }
168         
169         private static final Pattern locatePattern = Pattern.compile("https://.*/locate/.*");
170         public Locator<URI> bestLocator(final String locatorURL ) throws LocatorException, URISyntaxException {
171                 if(locatorURL==null) {
172                         throw new LocatorException("Cannot have a null locatorURL in bestLocator");
173                 }
174                 if(locatorURL.startsWith("https://AAF_LOCATE_URL/") || locatePattern.matcher(locatorURL).matches()) {
175                         return new AAFLocator(hsi,new URI(locatorURL));
176                 } else {
177                         return new PropertyLocator(locatorURL);
178                 }
179                 // Note: Removed DME2Locator... If DME2 client is needed, use DME2Clients
180         }
181 }