-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow.ts
329 lines (284 loc) · 9.62 KB
/
flow.ts
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
/*
* Copyright 2017 Google Inc.
*
* 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.
*
* MODIFIED BY: Tony Yates:
* - supports client_secret
* - supports callback handler (without expressjs)
* - validates id_token.
*/
import { AuthorizationRequest } from "@openid/appauth/built/authorization_request";
import {
AuthorizationNotifier,
AuthorizationRequestHandler,
AuthorizationRequestResponse,
BUILT_IN_PARAMETERS
} from "@openid/appauth/built/authorization_request_handler";
import { AuthorizationResponse } from "@openid/appauth/built/authorization_response";
import { AuthorizationServiceConfiguration } from "@openid/appauth/built/authorization_service_configuration";
import { NodeCrypto } from "@openid/appauth/built/node_support/";
import { NodeBasedHandler } from "@openid/appauth/built/node_support/node_request_handler";
import { NodeRequestor } from "@openid/appauth/built/node_support/node_requestor";
import {
GRANT_TYPE_AUTHORIZATION_CODE,
GRANT_TYPE_REFRESH_TOKEN,
TokenRequest
} from "@openid/appauth/built/token_request";
import {
BaseTokenRequestHandler,
TokenRequestHandler
} from "@openid/appauth/built/token_request_handler";
import {
TokenError,
TokenResponse
} from "@openid/appauth/built/token_response";
import EventEmitter = require("events");
import { log } from "./logger";
import { StringMap } from "@openid/appauth/built/types";
import * as jwt from "jsonwebtoken";
import * as jwksRsa from "jwks-rsa";
// var jwksClient = require('jwks-rsa');
// var jwt = require('jsonwebtoken');
export class AuthStateEmitter extends EventEmitter {
static ON_TOKEN_RESPONSE = "on_token_response";
}
export class AuthTenantInfo {
claims: any | undefined;
accessToken: string | undefined;
idToken: string | undefined;
errorMessage: string | undefined;
}
/* the Node.js based HTTP client. */
const requestor = new NodeRequestor();
/* an example open id connect provider */
const openIdConnectUrl = "https://sod.superoffice.com/login";
/* example client configuration */
const clientId = "";
const clientSecret = "";
const sod_jwks_uri = "https://sod.superoffice.com/login/.well-known/jwks";
const sod_signing_key = "Frf7jD-asGiFqADGTmTJfEq16Yw";
const redirectUri = "http://127.0.0.1:8000";
const scope = "openid";
export class AuthFlow {
private notifier: AuthorizationNotifier;
private authorizationHandler: AuthorizationRequestHandler;
private tokenHandler: TokenRequestHandler;
readonly authStateEmitter: AuthStateEmitter;
// state
private configuration: AuthorizationServiceConfiguration | undefined;
private refreshToken: string | undefined;
private accessTokenResponse: TokenResponse | undefined;
constructor() {
this.notifier = new AuthorizationNotifier();
this.authStateEmitter = new AuthStateEmitter();
this.authorizationHandler = new NodeBasedHandler();
this.tokenHandler = new BaseTokenRequestHandler(requestor);
// set notifier to deliver responses
this.authorizationHandler.setAuthorizationNotifier(this.notifier);
// set a listener to listen for authorization responses
// make refresh and access token requests.
this.notifier.setAuthorizationListener((request, response, error) => {
log("Authorization request complete ", request, response, error);
if (response) {
let codeVerifier: string | undefined;
if (request.internal && request.internal.code_verifier) {
codeVerifier = request.internal.code_verifier;
}
log("Calling makeRefreshTokenRequest");
this.makeRefreshTokenRequest(response.code, codeVerifier)
.then(result => this.performWithFreshTokens())
.then(() => {
this.authStateEmitter.emit(AuthStateEmitter.ON_TOKEN_RESPONSE);
log("All Done.");
});
}
});
}
fetchServiceConfiguration(): Promise<void> {
log("In fetchServiceConfiguration");
return AuthorizationServiceConfiguration.fetchFromIssuer(
openIdConnectUrl,
requestor
).then(response => {
log("Fetched service configuration", response);
this.configuration = response;
});
}
makeAuthorizationRequest(username?: string) {
log("In makeAuthorizationRequest");
if (!this.configuration) {
log("Unknown service configuration");
return;
}
const extras: StringMap = { prompt: "consent", access_type: "offline" };
if (username) {
extras["login_hint"] = username;
}
// create a request
const request = new AuthorizationRequest(
{
client_id: clientId,
redirect_uri: redirectUri,
scope: scope,
response_type: AuthorizationRequest.RESPONSE_TYPE_CODE,
state: undefined,
extras: extras
},
new NodeCrypto()
);
log("Making authorization request ", this.configuration, request);
this.authorizationHandler.performAuthorizationRequest(
this.configuration,
request
);
}
private makeRefreshTokenRequest(
code: string,
codeVerifier: string | undefined
): Promise<void> {
log("In makeRefreshTokenRequest");
if (!this.configuration) {
log("Unknown service configuration");
return Promise.resolve();
}
const extras: StringMap = { client_secret: clientSecret };
if (codeVerifier) {
log("code verified!");
extras.code_verifier = codeVerifier;
}
// use the code to make the token request.
let request = new TokenRequest({
client_id: clientId,
redirect_uri: redirectUri,
grant_type: GRANT_TYPE_AUTHORIZATION_CODE,
code: code,
refresh_token: undefined,
extras: extras
});
return this.tokenHandler
.performTokenRequest(this.configuration, request)
.then(response => {
log("Validating id_token...");
this.refreshToken = response.refreshToken;
this.accessTokenResponse = response;
let claims = {};
if (response.idToken) {
claims = this.validateJwtToken(response.idToken);
}
log("Claims: ", claims);
return response;
})
.then(() => { });
}
loggedIn(): boolean {
return !!this.accessTokenResponse && this.accessTokenResponse.isValid();
}
signOut() {
// forget all cached token state
this.accessTokenResponse = undefined;
}
performWithFreshTokens(): Promise<AuthTenantInfo> {
log("In performWithFreshTokens");
if (!this.configuration) {
log("Unknown service configuration");
return Promise.reject("Unknown service configuration");
}
let authTenantInfo = new AuthTenantInfo();
if (!this.refreshToken) {
log("Missing refreshToken.");
authTenantInfo.errorMessage = "Missing refreshToken.";
return Promise.resolve(authTenantInfo);
}
// only verifies expiration time
if (
this.accessTokenResponse &&
this.accessTokenResponse.isValid() &&
this.idTokenIsValid(this.accessTokenResponse, authTenantInfo)
) {
return Promise.resolve(authTenantInfo);
}
const extras: StringMap = { client_secret: clientSecret };
let request = new TokenRequest({
client_id: clientId,
redirect_uri: redirectUri,
grant_type: GRANT_TYPE_REFRESH_TOKEN,
code: undefined,
refresh_token: this.refreshToken,
extras: extras
});
log("Calling performTokenRequest");
return this.tokenHandler
.performTokenRequest(this.configuration, request)
.then(response => {
this.accessTokenResponse = response;
authTenantInfo.accessToken = response.accessToken;
authTenantInfo.idToken = response.idToken;
return authTenantInfo;
});
}
idTokenIsValid(
accessTokenResponse: TokenResponse,
authTenantInfo: AuthTenantInfo
): boolean {
authTenantInfo.accessToken = accessTokenResponse.accessToken;
authTenantInfo.idToken = accessTokenResponse.idToken;
this.validateJwtToken(accessTokenResponse.idToken)
.then(result => {
log("Valid Token!");
authTenantInfo.claims = result;
return true;
})
.catch(err => {
log("Error validating token: ", err);
return false;
});
return false;
}
async validateJwtToken(token: string | undefined) {
if (!token) {
return {};
}
const soPublicKey = await this.getSigningKey();
return await this.validateToken(token, soPublicKey);
}
async getSigningKey(): Promise<any> {
return new Promise(function(resolve, reject) {
var client = jwksRsa({
cache: true,
jwksUri: sod_jwks_uri
});
client.getSigningKey(sod_signing_key, function(err, key) {
if (err) {
reject(err);
} else {
var signingKey = key?.getPublicKey();
resolve(signingKey);
}
});
});
}
validateToken(token: string, publicKey: string): Promise<string | jwt.JwtPayload | undefined> {
return new Promise(function(resolve, reject) {
var options = { ignoreExpiration: true, algorithm: ["RS256"] };
jwt.verify(token, publicKey, options, function(err, decoded) {
if (err) {
reject(err);
} else {
console.log(JSON.stringify(decoded));
resolve(decoded);
}
});
});
}
}