summaryrefslogtreecommitdiffstats
path: root/cadi/aaf/src/main/java/org/onap/aaf/cadi/oauth/TokenClient.java
blob: 0558e8157b3ec7d470f7e77ca0e8c69946d792a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
/**
 * ============LICENSE_START====================================================
 * org.onap.aaf
 * ===========================================================================
 * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
 * ===========================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END====================================================
 *
 */

package org.onap.aaf.cadi.oauth;

import java.io.IOException;
import java.net.ConnectException;
import java.net.URLEncoder;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.List;

import org.onap.aaf.cadi.Access;
import org.onap.aaf.cadi.CadiException;
import org.onap.aaf.cadi.Hash;
import org.onap.aaf.cadi.LocatorException;
import org.onap.aaf.cadi.SecuritySetter;
import org.onap.aaf.cadi.Access.Level;
import org.onap.aaf.cadi.aaf.v2_0.AAFCon;
import org.onap.aaf.cadi.aaf.v2_0.AAFCon.GetSetter;
import org.onap.aaf.cadi.client.Future;
import org.onap.aaf.cadi.client.Rcli;
import org.onap.aaf.cadi.client.Result;
import org.onap.aaf.cadi.client.Retryable;
import org.onap.aaf.cadi.config.Config;
import org.onap.aaf.cadi.persist.Persist.Loader;
import org.onap.aaf.cadi.principal.Kind;
import org.onap.aaf.cadi.util.FQI;
import org.onap.aaf.misc.env.APIException;
import org.onap.aaf.misc.rosetta.env.RosettaDF;

import aafoauth.v2_0.Introspect;
import aafoauth.v2_0.Token;

public class TokenClient {
	private static final String UTF_8 = "UTF-8";

	public enum AUTHN_METHOD {client_credentials,password,payload,basic_auth,certificate,refresh_token, none}

	private final TokenClientFactory factory;
	private final AAFCon<?> tkCon;
	private static RosettaDF<Token> tokenDF;
	protected static RosettaDF<Introspect> introspectDF;


	private int timeout;
	private String client_id, username;
	private byte[] enc_client_secret, enc_password;

	private GetSetter ss;
	private AUTHN_METHOD authn_method;
	private byte[] hash;
	private final char okind;
	private String default_scope;

	// Package on Purpose
	TokenClient(char okind, final TokenClientFactory tcf, final AAFCon<?> tkCon, final int timeout, AUTHN_METHOD am) throws CadiException, APIException {
		this.okind = okind;
		factory = tcf;
		this.tkCon = tkCon;
		this.timeout = timeout;
		ss = null;
		authn_method = am;
		synchronized(tcf) {
			if(introspectDF==null) {
				tokenDF = tkCon.env().newDataFactory(Token.class);
				introspectDF = tkCon.env().newDataFactory(Introspect.class);
			}
		}
 
	}

	public void client_id(String client_id) {
		this.client_id = client_id;
		default_scope = FQI.reverseDomain(client_id);
	}
	
	public String client_id() {
		return client_id;
	}
	
	/**
	 * This scope based on client_id... the App configured for call
	 * @return
	 */
	public String defaultScope() {
		return default_scope;
	}

	public void client_creds(Access access) throws CadiException {
		if(okind=='A') {
			client_creds(access.getProperty(Config.AAF_APPID, null),access.getProperty(Config.AAF_APPPASS, null));
		} else {
			client_creds(access.getProperty(Config.AAF_ALT_CLIENT_ID, null),access.getProperty(Config.AAF_ALT_CLIENT_SECRET, null));
		}
	}

	/**
	 * Note: OAuth2 provides for normal Authentication parameters when getting tokens.  Basic Auth is one such valid
	 * way to get Credentials.  However, support is up to the OAuth2 Implementation
	 * 
	 * This method is for setting an App's creds (client) to another App.
	 * 
	 * @param client_id
	 * @param client_secret
	 * @throws IOException
	 */
	public void client_creds(final String client_id, final String client_secret) throws CadiException {
		if(client_id==null) {
			throw new CadiException(Config.AAF_ALT_CLIENT_ID + " is null");
		}
		this.client_id = client_id;
		default_scope = FQI.reverseDomain(client_id);

		if(client_secret!=null) {
			try {
				if(client_secret.startsWith("enc:")) {
					final String temp = factory.access.decrypt(client_secret, false); // this is a more powerful, but non-thread-safe encryption
					hash = Hash.hashSHA256(temp.getBytes());
					this.enc_client_secret = factory.symm.encode(temp.getBytes());
					ss = new GetSetter() {
						@Override
						public <CLIENT> SecuritySetter<CLIENT> get(AAFCon<CLIENT> con) throws CadiException {
							return con.basicAuth(client_id, temp);// Base class encrypts password
						}
					};
				} else {
					byte[] temp = client_secret.getBytes();
					hash = Hash.hashSHA256(temp);
					this.enc_client_secret = factory.symm.encode(temp);
					ss = new GetSetter() {
						@Override
						public <CLIENT> SecuritySetter<CLIENT> get(AAFCon<CLIENT> con) throws CadiException {
							return con.basicAuth(client_id, client_secret);// Base class encrypts password
						}
					};
				}
				authn_method = AUTHN_METHOD.client_credentials;
			} catch(IOException | NoSuchAlgorithmException e) {
				throw new CadiException(e);
			}
		} else {
			ss = new GetSetter() {
				@Override
				public <CLIENT> SecuritySetter<CLIENT> get(AAFCon<CLIENT> con) throws CadiException {
					try {
						return con.x509Alias(client_id);// no password, assume Cert
					} catch (APIException e) {
						throw new CadiException(e);
					} 
				}				
			};
			authn_method = AUTHN_METHOD.client_credentials;
		}
	}
	
	public void username(String username) {
		this.username = username;
	}

	/**
	 * Note: OAuth2 provides for normal Authentication parameters when getting tokens.  Basic Auth is one such valid
	 * way to get Credentials.  However, support is up to the OAuth2 Implementation
	 * 
	 * This method is for setting the End-User's Creds
	 * 
	 * @param client_id
	 * @param client_secret
	 * @throws IOException
	 */
	public void password(final String user, final String password) throws CadiException {
		this.username = user;
		if(password!=null) {
			try {
				if(password.startsWith("enc:")) {
					final String temp = factory.access.decrypt(password, false); // this is a more powerful, but non-thread-safe encryption
					hash = Hash.hashSHA256(temp.getBytes());
					this.enc_password = factory.symm.encode(temp.getBytes());
					ss = new GetSetter() {
						@Override
						public <CLIENT> SecuritySetter<CLIENT> get(AAFCon<CLIENT> con) throws CadiException {
							return con.basicAuth(user, temp);// Base class encrypts password
						}
					};
				} else {
					byte[] temp = password.getBytes();
					hash = Hash.hashSHA256(temp);
					this.enc_password = factory.symm.encode(temp);
					ss = new GetSetter() {
						@Override
						public <CLIENT> SecuritySetter<CLIENT> get(AAFCon<CLIENT> con) throws CadiException {
							return con.basicAuth(user, password);// Base class encrypts password
						}
					};
				}
				authn_method = AUTHN_METHOD.password;
			} catch (IOException | NoSuchAlgorithmException e) {
				throw new CadiException(e);
			}
		}
	}
	
	public void clearEndUser() {
		username = null;
		enc_password = null;
		if(client_id!=null && enc_client_secret!=null) {
			authn_method = AUTHN_METHOD.client_credentials;
		} else {
			authn_method = AUTHN_METHOD.password;
		}
	}

	public Result<TimedToken> getToken(final String ... scopes) throws LocatorException, CadiException, APIException {
		return getToken(Kind.OAUTH,scopes);
	}

	public void clearToken(final String ... scopes) throws CadiException {
		clearToken(Kind.OAUTH,scopes);
	}

	public void clearToken(final char kind, final String ... scopes) throws CadiException {
		final String scope = addScope(scopes);
		char c;
		if(kind==Kind.OAUTH) {
			c = okind;
		} else {
			c = kind;
		}
		final String key = TokenClientFactory.getKey(c,client_id,username,hash,scope);
		factory.delete(key);
	}
	/**
	 * Get AuthToken
	 * @throws APIException 
	 * @throws CadiException 
	 * @throws LocatorException 
	 */
	public Result<TimedToken> getToken(final char kind, final String ... scopes) throws LocatorException, CadiException, APIException {
		final String scope = addScope(scopes);
		char c;
		if(kind==Kind.OAUTH) {
			c = okind;
		} else {
			c = kind;
		}
		final String key = TokenClientFactory.getKey(c,client_id,username,hash,scope);
		if(ss==null) {
			throw new APIException("client_creds(...) must be set before obtaining Access Tokens");
		}
		
		Result<TimedToken> rtt = factory.get(key,hash,new Loader<TimedToken>() {
			@Override
			public Result<TimedToken> load(final String key) throws APIException, CadiException, LocatorException {
				final List<String> params = new ArrayList<String>();
				params.add(scope);
				addSecurity(params,authn_method);
			
				final String paramsa[] = new String[params.size()];
				params.toArray(paramsa);
				Result<Token> rt = tkCon.best(new Retryable<Result<Token>>() {
					@Override
					public Result<Token> code(Rcli<?> client) throws CadiException, ConnectException, APIException {
						// /token?grant_type=client_credential&scope=com.att.aaf+com.att.test
						Future<Token> f = client.postForm(null,tokenDF,paramsa);
						if(f.get(timeout)) {
							return Result.ok(f.code(),f.value);
						} else {
							return Result.err(f.code(), f.body());
						}
					}
				});
				
				if(rt.isOK()) {
					try {
						return Result.ok(rt.code,factory.putTimedToken(key,rt.value, hash));
					} catch (IOException e) {
						// TODO What to do here?
						e.printStackTrace();
						return Result.err(999,e.getMessage());
					}
				} else {
					return Result.err(rt);
				}
			}
		});
		if(rtt.isOK()) { // not validated for Expired
			TimedToken tt = rtt.value;
			if(tt.expired()) {
				rtt = refreshToken(tt);
				if(rtt.isOK()) {
					tkCon.access.printf(Level.INFO, "Refreshed token %s to %s",tt.getAccessToken(),rtt.value.getAccessToken());
					return Result.ok(200,rtt.value);
				} else {
					tkCon.access.printf(Level.INFO, "Expired token %s cannot be renewed %d %s",tt.getAccessToken(),rtt.code,rtt.error);
					factory.delete(key);
					tt=null;
				}
			} else {
				return Result.ok(200,tt);
			}
		} else {
			Result.err(rtt);
		}
		return Result.err(404,"Not Found");
	}
	
	public Result<TimedToken> refreshToken(Token token) throws APIException, LocatorException, CadiException {
		if(ss==null) {
			throw new APIException("client_creds(...) must be set before obtaining Access Tokens");
		}
		final List<String> params = new ArrayList<String>();
		params.add("refresh_token="+token.getRefreshToken());
		addSecurity(params,AUTHN_METHOD.refresh_token);
		final String scope="scope="+token.getScope().replace(' ', '+');
		params.add(scope);
	
		final String paramsa[] = new String[params.size()];
		params.toArray(paramsa);
		Result<Token> rt = tkCon.best(new Retryable<Result<Token>>() {
			@Override
			public Result<Token> code(Rcli<?> client) throws CadiException, ConnectException, APIException {
				// /token?grant_type=client_credential&scope=com.att.aaf+com.att.test
				Future<Token> f = client.postForm(null,tokenDF,paramsa);
				if(f.get(timeout)) {
					return Result.ok(f.code(),f.value);
				} else {
					return Result.err(f.code(), f.body());
				}
			}
		});
		String key =  TokenClientFactory.getKey(okind,client_id, username, hash, scope);
		if(rt.isOK()) {
			try {
				return Result.ok(200,factory.putTimedToken(key, rt.value, hash));
			} catch (IOException e) {
				//TODO what to do here?
				return Result.err(999, e.getMessage());
			}
		} else if(rt.code==404) {
			factory.deleteFromDisk(key);
		}
		return Result.err(rt);
	}

	public Result<Introspect> introspect(final String token) throws APIException, LocatorException, CadiException {
		if(ss==null) {
			throw new APIException("client_creds(...) must be set before introspecting Access Tokens");
		}

		return tkCon.best(new Retryable<Result<Introspect>>() {
				@Override
				public Result<Introspect> code(Rcli<?> client) throws CadiException, ConnectException, APIException {
					final List<String> params = new ArrayList<String>();
					params.add("token="+token);
					addSecurity(params,AUTHN_METHOD.client_credentials);
					final String paramsa[] = new String[params.size()];
					params.toArray(paramsa);
					// /token?grant_type=client_credential&scope=com.att.aaf+com.att.test
					Future<Introspect> f = client.postForm(null,introspectDF,paramsa);
					if(f.get(timeout)) {
						return Result.ok(f.code(),f.value);
					} else {
						return Result.err(f.code(), f.body());
					}
				}
			}
		);
	}
	
	private String addScope(String[] scopes) {
		String rv = null;
		StringBuilder scope=null;
		boolean first = true;
		for(String s : scopes) {
			if(first) {
				scope = new StringBuilder();
				scope.append("scope=");
				first=false;
			} else {
				scope.append('+');
			}
			scope.append(s);
		}
		if(scope!=null) {
			rv=scope.toString();
		}
		return rv;
	}

	private void addSecurity(List<String> params, AUTHN_METHOD authn) throws APIException {
		// Set GrantType... different than Credentials
		switch(authn) {
			case client_credentials:
				params.add("grant_type=client_credentials");
				break;
			case password:
				params.add("grant_type=password");
				break;
			case refresh_token:
				params.add("grant_type=refresh_token");
				break;
			case none:
				break;
			default:
				// Nothing to do
				break;
		}
		
		// Set Credentials appropriate 
		switch(authn_method) {
			case client_credentials:
				if(client_id!=null) {
					params.add("client_id="+client_id);
				}
		
				if(enc_client_secret!=null) {
					try {
						params.add("client_secret="+URLEncoder.encode(new String(factory.symm.decode(enc_client_secret)),UTF_8));
					} catch (IOException e) {
						throw new APIException("Error Decrypting Password",e);
					}
				}
				break;
			case refresh_token:
				if(client_id!=null) {
					params.add("client_id="+client_id);
				}
		
				if(enc_client_secret!=null) {
					try {
						params.add("client_secret="+URLEncoder.encode(new String(factory.symm.decode(enc_client_secret)),UTF_8));
					} catch (IOException e) {
						throw new APIException("Error Decrypting Password",e);
					}
				}
				break;

			case password:
				if(client_id!=null) {
					params.add("client_id="+client_id);
				}
		
				if(enc_client_secret!=null) {
					try {
						params.add("client_secret="+ URLEncoder.encode(new String(factory.symm.decode(enc_client_secret)),UTF_8));
					} catch (IOException e) {
						throw new APIException("Error Decrypting Password",e);
					}
				}
				if(username!=null) {
					params.add("username="+username);
				}
		
				if(enc_password!=null) {
					try {
						params.add("password="+ URLEncoder.encode(new String(factory.symm.decode(enc_password)),UTF_8));
					} catch (IOException e) {
						throw new APIException("Error Decrypting Password",e);
					}
				}
	
				break;
			default:
				// Nothing to do
				break;
		}
	}
}