9
9
import java .nio .ByteBuffer ;
10
10
import java .nio .charset .Charset ;
11
11
import java .util .ArrayList ;
12
+ import java .util .List ;
13
+ import java .util .concurrent .CompletableFuture ;
12
14
13
15
import software .amazon .awssdk .crt .http .HttpHeader ;
14
16
import software .amazon .awssdk .crt .http .HttpProxyOptions ;
@@ -47,6 +49,7 @@ static public class CognitoCredentialsProviderBuilder {
47
49
private String identity ;
48
50
private String customRoleArn ;
49
51
private ArrayList <CognitoLoginTokenPair > logins = new ArrayList <CognitoLoginTokenPair >();
52
+ private CognitoLoginTokenSource loginTokenSource ;
50
53
51
54
private TlsContext tlsContext ;
52
55
private ClientBootstrap clientBootstrap ;
@@ -148,6 +151,23 @@ public CognitoCredentialsProviderBuilder withHttpProxyOptions(HttpProxyOptions h
148
151
149
152
HttpProxyOptions getHttpProxyOptions () { return httpProxyOptions ; }
150
153
154
+ /**
155
+ * Sets a login token source for the credentials provider. The login token source will be used to
156
+ * gather additional login tokens to submit as part of the HTTP request sent to Cognito. A login token source
157
+ * allows you to dynamically add login tokens on a per-request basis. Using a login token source requires
158
+ * you to follow certain requirements in order to avoid undesirable behavior. See the documentation for
159
+ * `CognitoLoginTokenSource` for further details.
160
+ *
161
+ * @param loginTokenSource object to source login tokens from before every HTTP request to Cognito
162
+ * @return The current builder
163
+ */
164
+ public CognitoCredentialsProviderBuilder withLoginTokenSource (CognitoLoginTokenSource loginTokenSource ) {
165
+ this .loginTokenSource = loginTokenSource ;
166
+
167
+ return this ;
168
+ }
169
+
170
+ CognitoLoginTokenSource getLoginTokenSource () { return loginTokenSource ; }
151
171
152
172
/**
153
173
* Creates a new Cognito credentials provider, based on this builder's configuration
@@ -213,14 +233,15 @@ private CognitoCredentialsProvider(CognitoCredentialsProviderBuilder builder) {
213
233
proxyTlsContextHandle ,
214
234
proxyAuthorizationType ,
215
235
proxyAuthorizationUsername != null ? proxyAuthorizationUsername .getBytes (UTF8 ) : null ,
216
- proxyAuthorizationPassword != null ? proxyAuthorizationPassword .getBytes (UTF8 ) : null );
236
+ proxyAuthorizationPassword != null ? proxyAuthorizationPassword .getBytes (UTF8 ) : null ,
237
+ builder .loginTokenSource );
217
238
218
239
acquireNativeHandle (nativeHandle );
219
240
addReferenceTo (clientBootstrap );
220
241
addReferenceTo (tlsContext );
221
242
}
222
243
223
- private void writeLengthPrefixedBytesSafe (ByteBuffer buffer , byte [] bytes ) {
244
+ private static void writeLengthPrefixedBytesSafe (ByteBuffer buffer , byte [] bytes ) {
224
245
if (bytes != null ) {
225
246
buffer .putInt (bytes .length );
226
247
buffer .put (bytes );
@@ -229,7 +250,7 @@ private void writeLengthPrefixedBytesSafe(ByteBuffer buffer, byte[] bytes) {
229
250
}
230
251
}
231
252
232
- private byte [] marshalLoginsForJni (ArrayList <CognitoLoginTokenPair > logins ) {
253
+ private static byte [] marshalLoginsForJni (List <CognitoLoginTokenPair > logins ) {
233
254
int size = 0 ;
234
255
235
256
for (CognitoLoginTokenPair login : logins ) {
@@ -256,6 +277,16 @@ private byte[] marshalLoginsForJni(ArrayList<CognitoLoginTokenPair> logins) {
256
277
return buffer .array ();
257
278
}
258
279
280
+ private static CompletableFuture <List <CognitoLoginTokenPair >> createChainedFuture (long invocationHandle , CompletableFuture <List <CognitoLoginTokenPair >> baseFuture ) {
281
+ return baseFuture .whenComplete ((token_pairs , ex ) -> {
282
+ if (ex == null ) {
283
+ completeLoginTokenFetch (invocationHandle , marshalLoginsForJni (token_pairs ), null );
284
+ } else {
285
+ completeLoginTokenFetch (invocationHandle , null , ex );
286
+ }
287
+ });
288
+ }
289
+
259
290
/*******************************************************************************
260
291
* Native methods
261
292
******************************************************************************/
@@ -273,5 +304,8 @@ private static native long cognitoCredentialsProviderNew(CognitoCredentialsProvi
273
304
long proxyTlsContext ,
274
305
int proxyAuthorizationType ,
275
306
byte [] proxyAuthorizationUsername ,
276
- byte [] proxyAuthorizationPassword );
307
+ byte [] proxyAuthorizationPassword ,
308
+ CognitoLoginTokenSource loginTokenSource );
309
+
310
+ private static native void completeLoginTokenFetch (long invocationHandle , byte [] marshalledLogins , Throwable ex );
277
311
}
0 commit comments