forked from googlesamples/appauth-js-electron-sample
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflow.ts
192 lines (170 loc) · 6.31 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
/*
* 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.
*/
import { AuthorizationRequest } from '@openid/appauth/built/authorization_request';
import {
AuthorizationNotifier,
AuthorizationRequestHandler
} from '@openid/appauth/built/authorization_request_handler';
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 { TokenResponse } from '@openid/appauth/built/token_response';
import { log } from './logger';
import { StringMap } from '@openid/appauth/built/types';
import EventEmitter = require('events');
export class AuthStateEmitter extends EventEmitter {
static ON_TOKEN_RESPONSE = 'on_token_response';
}
/* the Node.js based HTTP client. */
const requestor = new NodeRequestor();
const openIdConnectUrl = 'https://dev-737523.oktapreview.com/oauth2/default';
const clientId = '0oahoeur00cVZWSpP0h7';
const redirectUri = 'http://localhost:8000';
const scope = 'openid profile offline_access';
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;
}
this.makeRefreshTokenRequest(response.code, codeVerifier)
.then(result => this.performWithFreshTokens())
.then(() => {
this.authStateEmitter.emit(AuthStateEmitter.ON_TOKEN_RESPONSE);
log('All Done.');
});
}
});
}
fetchServiceConfiguration(): Promise<void> {
return AuthorizationServiceConfiguration.fetchFromIssuer(
openIdConnectUrl,
requestor
).then(response => {
log('Fetched service configuration', response);
this.configuration = response;
});
}
makeAuthorizationRequest(username?: string) {
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,
extras: extras
}, new NodeCrypto());
log('Making authorization request ', this.configuration, request);
this.authorizationHandler.performAuthorizationRequest(
this.configuration,
request
);
}
private makeRefreshTokenRequest(code: string, codeVerifier?: string): Promise<void> {
if (!this.configuration) {
log('Unknown service configuration');
return Promise.resolve();
}
const extras: StringMap = {};
if (codeVerifier) {
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,
extras: extras
});
return this.tokenHandler
.performTokenRequest(this.configuration, request)
.then(response => {
log(`Refresh Token is ${response.refreshToken}`);
this.refreshToken = response.refreshToken;
this.accessTokenResponse = response;
return response;
})
.then(() => {});
}
loggedIn(): boolean {
return !!this.accessTokenResponse && this.accessTokenResponse.isValid();
}
signOut() {
// forget all cached token state
this.accessTokenResponse = undefined;
}
performWithFreshTokens(): Promise<string> {
if (!this.configuration) {
log('Unknown service configuration');
return Promise.reject('Unknown service configuration');
}
if (!this.refreshToken) {
log('Missing refreshToken.');
return Promise.resolve('Missing refreshToken.');
}
if (this.accessTokenResponse && this.accessTokenResponse.isValid()) {
// do nothing
return Promise.resolve(this.accessTokenResponse.accessToken);
}
let request = new TokenRequest({
client_id: clientId,
redirect_uri: redirectUri,
grant_type: GRANT_TYPE_REFRESH_TOKEN,
refresh_token: this.refreshToken
});
return this.tokenHandler
.performTokenRequest(this.configuration, request)
.then(response => {
this.accessTokenResponse = response;
return response.accessToken;
});
}
}