forked from alexziskind1/nativescript-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tns-oauth.android.ts
416 lines (352 loc) · 15.1 KB
/
tns-oauth.android.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
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
import * as querystring from 'querystring';
import * as URL from 'url';
import * as http from 'http';
import * as trace from "trace";
import * as platform from 'platform';
import * as utils from './tns-oauth-utils';
import * as frameModule from 'ui/frame';
import * as viewModule from "ui/core/view";
import * as application from "application";
import { TnsOAuthPageProvider } from './tns-oauth-page-provider';
import { TnsOAuthTokenCache } from './tns-oauth-token-cache';
import * as TnsOAuthModule from './tns-oauth-interfaces';
import { ViewBase } from 'ui/core/view';
export var ACCESS_TOKEN_CACHE_KEY = 'ACCESS_TOKEN_CACHE_KEY';
export var REFRESH_TOKEN_CACHE_KEY = 'REFRESH_TOKEN_CACHE_KEY';
function getAuthHeaderFromCredentials(credentials: TnsOAuthModule.ITnsOAuthCredentials) {
let customAuthHeader: any;
if (credentials['basicAuthHeader']) {
customAuthHeader = { 'Authorization': credentials['basicAuthHeader'] };
}
return customAuthHeader;
}
/**
* Gets a token for a given resource.
*/
function getTokenFromCode(credentials: TnsOAuthModule.ITnsOAuthCredentials, code: string): Promise<TnsOAuthModule.ITnsOAuthTokenResult> {
let customAuthHeader: any = getAuthHeaderFromCredentials(credentials);
let oauth2 = new TnsOAuth(
credentials.clientId,
credentials.clientSecret,
credentials.authority,
credentials.tokenEndpointBase,
credentials.authorizeEndpoint,
credentials.tokenEndpoint,
customAuthHeader
);
let oauthParams = {
grant_type: 'authorization_code',
redirect_uri: credentials.redirectUri,
response_mode: 'form_post',
nonce: utils.newUUID(),
state: 'abcd'
};
return oauth2.getOAuthAccessToken(code, oauthParams);
}
/**
* Gets a new access token via a previously issued refresh token.
*/
export function getTokenFromRefreshToken(credentials: TnsOAuthModule.ITnsOAuthCredentials, refreshToken: string): Promise<TnsOAuthModule.ITnsOAuthTokenResult> {
let customAuthHeader: any = getAuthHeaderFromCredentials(credentials);
var oauth2 = new TnsOAuth(
credentials.clientId,
credentials.clientSecret,
credentials.authority,
credentials.tokenEndpointBase,
credentials.authorizeEndpoint,
credentials.tokenEndpoint,
customAuthHeader
);
let oauthParams = {
grant_type: 'refresh_token',
redirect_uri: credentials.redirectUri,
response_mode: 'form_post',
nonce: utils.newUUID(),
state: 'abcd'
};
return oauth2.getOAuthAccessToken(refreshToken, oauthParams);
}
/**
* Generate a fully formed uri to use for authentication based on the supplied resource argument
* @return {string} a fully formed uri with which authentication can be completed
*/
export function getAuthUrl(credentials: TnsOAuthModule.ITnsOAuthCredentials): string {
return credentials.authority + credentials.authorizeEndpoint +
'?client_id=' + credentials.clientId +
'&response_type=code' +
'&redirect_uri=' + credentials.redirectUri +
'&scope=' + credentials.scope +
'&response_mode=query' +
'&nonce=' + utils.newUUID() +
'&state=abcd';
}
export function getTokenFromCache() {
return TnsOAuthTokenCache.getToken();
}
let currentView : viewModule.View;
let currentModal : ViewBase;
export function loginViaAuthorizationCodeFlow(credentials: TnsOAuthModule.ITnsOAuthCredentials, successPage?: string): Promise<TnsOAuthModule.ITnsOAuthTokenResult> {
return new Promise((resolve, reject) => {
var navCount = 0;
let hasCode = false;
let checkCodeIntercept = (webView, error, url): boolean => {
var retStr = '';
try {
if (error && error.userInfo && error.userInfo.allValues && error.userInfo.allValues.count > 0) {
let val0 = error.userInfo.allValues[0];
if (val0.absoluteString) {
retStr = error.userInfo.allValues[0].absoluteString;
} else if (val0.userInfo && val0.userInfo.allValues && val0.userInfo.allValues.count > 0) {
retStr = val0.userInfo.allValues[0];
} else {
retStr = val0;
}
//} else if (webView.request && webView.request.URL && webView.request.URL.absoluteString) {
} else if (webView && webView.URL && webView.URL.absoluteString) {
retStr = webView.URL.absoluteString;
} else if (url) {
retStr = url;
}
}
catch (ex) {
reject('Failed to resolve return URL');
}
if (retStr != '') {
let parsedRetStr = URL.parse(retStr);
if (parsedRetStr.query) {
let qsObj = querystring.parse(parsedRetStr.query);
let codeStr = qsObj['code'] ? qsObj['code'] : qsObj['xsrfsign'];
let errSubCode = qsObj['error_subcode'];
if (codeStr && !hasCode) {
hasCode = true;
try {
getTokenFromCode(credentials, codeStr)
.then((response: TnsOAuthModule.ITnsOAuthTokenResult) => {
// Close the modal
if (currentModal) currentModal.closeModal();
if (currentView && currentView.modal) currentView.closeModal();
TnsOAuthTokenCache.setToken(response);
navCount++;
resolve(response);
})
.catch((er) => {
// currentModal.closeModal();
currentView.closeModal();
console.log("Rejecting");
reject(er);
});
} catch (er) {
reject(er);
}
return true;
} else {
if (errSubCode) {
if (errSubCode == 'cancel') {
// Close the modal
if (currentModal) currentModal.closeModal();
if (currentView && currentView.modal) currentView.closeModal();
}
}
}
}
}
return false;
};
let authPage = new TnsOAuthPageProvider(checkCodeIntercept, getAuthUrl(credentials), reject);
let frame = new frameModule.Frame();
frame.navigate(() => { return authPage.loginPageFunc() });
currentView = application.getRootView();
currentModal = currentView.showModal(frame, "context", () => {}, false);
});
}
export function refreshToken(credentials: TnsOAuthModule.ITnsOAuthCredentials): Promise<TnsOAuthModule.ITnsOAuthTokenResult> {
return new Promise((resolve, reject) => {
try {
let oldTokenResult = TnsOAuthTokenCache.getToken();
getTokenFromRefreshToken(credentials, oldTokenResult.refreshToken)
.then((response: TnsOAuthModule.ITnsOAuthTokenResult) => {
TnsOAuthTokenCache.setToken(response);
resolve(response);
})
.catch((er) => {
reject(er);
});
} catch (er) {
console.error('refreshToken error occurred...');
console.dir(er);
reject(er);
}
});
}
export function logout(cookieDomains: string[], successPage?: string) {
let cookieManager = android.webkit.CookieManager.getInstance();
if ((<any>cookieManager).removeAllCookies) {
let cm23 = <any>cookieManager;
cm23.removeAllCookies(null);
cm23.flush();
} else if (cookieManager.removeAllCookie) {
cookieManager.removeAllCookie();
cookieManager.removeSessionCookie();
}
TnsOAuthTokenCache.removeToken();
if (successPage) {
let navEntry: frameModule.NavigationEntry = {
moduleName: successPage,
clearHistory: true
};
frameModule.topmost().navigate(navEntry);
}
}
class TnsOAuth {
private _clientId: string;
private _clientSecret: string;
private _baseSite: string;
private _baseSiteToken: string;
private _authorizeUrl: string;
private _accessTokenUrl: string;
private _accessTokenName: string;
private _authMethod: string;
private _customHeaders: any;
private _useAuthorizationHeaderForGET: boolean;
constructor(clientId: string,
clientSecret: string,
baseSite: string,
baseSiteToken: string,
authorizePath: string,
accessTokenPath: string,
customHeaders?: any) {
this._clientId = clientId;
this._clientSecret = clientSecret;
this._baseSite = baseSite;
this._baseSiteToken = baseSiteToken;
this._authorizeUrl = authorizePath || "/oauth/authorize";
this._accessTokenUrl = accessTokenPath || "/oauth/access_token";
this._accessTokenName = "access_token";
this._authMethod = "Bearer";
this._customHeaders = customHeaders || {};
this._useAuthorizationHeaderForGET = false;
}
get accessTokenUrl(): string {
if (this._baseSiteToken && this._baseSiteToken != '') {
return this._baseSiteToken + this._accessTokenUrl;
} else {
return this._baseSite + this._accessTokenUrl; /* + "?" + querystring.stringify(params); */
}
}
// This 'hack' method is required for sites that don't use
// 'access_token' as the name of the access token (for requests).
// ( http://tools.ietf.org/html/draft-ietf-oauth-v2-16#section-7 )
// it isn't clear what the correct value should be atm, so allowing
// for specific (temporary?) override for now.
public setAccessTokenName(name) {
this._accessTokenName = name;
}
// Sets the authorization method for Authorization header.
// e.g. Authorization: Bearer <token> # "Bearer" is the authorization method.
public setAuthMethod(authMethod) {
this._authMethod = authMethod;
};
// If you use the OAuth2 exposed 'get' method (and don't construct your own _request call )
// this will specify whether to use an 'Authorize' header instead of passing the access_token as a query parameter
public useAuthorizationHeaderforGET(useIt) {
this._useAuthorizationHeaderForGET = useIt;
}
// Build the authorization header. In particular, build the part after the colon.
// e.g. Authorization: Bearer <token> # Build "Bearer <token>"
public buildAuthHeader(token) {
return this._authMethod + ' ' + token;
};
public getAuthorizeUrl(params) {
var params = params || {};
params['client_id'] = this._clientId;
return this._baseSite + this._authorizeUrl + "?" + querystring.stringify(params);
}
public getOAuthAccessToken(code, params): Promise<TnsOAuthModule.ITnsOAuthTokenResult> {
var params = params || {};
params['client_id'] = this._clientId;
if (this._clientSecret && this._clientSecret != '') {
params['client_secret'] = this._clientSecret;
}
var codeParam = (params.grant_type === 'refresh_token') ? 'refresh_token' : 'code';
params[codeParam] = code;
var post_data = querystring.stringify(params);
var post_headers = {
'Content-Type': 'application/x-www-form-urlencoded'
};
return new Promise<TnsOAuthModule.ITnsOAuthTokenResult>((resolve, reject) => {
this._request("POST", this.accessTokenUrl, post_headers, post_data, null)
.then((response: http.HttpResponse) => {
var results;
try {
// As of http://tools.ietf.org/html/draft-ietf-oauth-v2-07
// responses should be in JSON
results = response.content.toJSON();
}
catch (e) {
// .... However both Facebook + Github currently use rev05 of the spec
// and neither seem to specify a content-type correctly in their response headers :(
// clients of these services will suffer a *minor* performance cost of the exception
// being thrown
results = querystring.parse(response.content.toString());
}
let access_token = results["access_token"];
let refresh_token = results["refresh_token"];
let expires_in = results["expires_in"];
delete results["refresh_token"];
let expSecs = Math.floor(parseFloat(expires_in));
let expDate = new Date();
expDate.setSeconds(expDate.getSeconds() + expSecs);
let tokenResult: TnsOAuthModule.ITnsOAuthTokenResult = {
accessToken: access_token,
refreshToken: refresh_token,
accessTokenExpiration: expDate,
refreshTokenExpiration: expDate
};
resolve(tokenResult);
})
.catch((er) => {
reject(er);
});
});
}
private _request(method, url, headers, post_body, access_token): Promise<http.HttpResponse> {
var parsedUrl = URL.parse(url, true);
var realHeaders = {};
for (var key in this._customHeaders) {
realHeaders[key] = this._customHeaders[key];
}
if (headers) {
for (var key in headers) {
realHeaders[key] = headers[key];
}
}
realHeaders['Host'] = parsedUrl.host;
if (access_token && !('Authorization' in realHeaders)) {
if (!parsedUrl.query) {
parsedUrl.query = {};
}
parsedUrl.query[this._accessTokenName] = access_token;
}
var queryStr = querystring.stringify(parsedUrl.query);
if (queryStr) {
queryStr = "?" + queryStr;
}
var options = {
host: parsedUrl.hostname,
port: parsedUrl.port,
path: parsedUrl.pathname + queryStr,
method: method,
headers: realHeaders
};
return this._executeRequest(options, url, post_body);
}
private _executeRequest(options, url, post_body): Promise<http.HttpResponse> {
var promise = http.request({
url: url,
method: options.method,
headers: options.headers,
content: post_body
});
return promise;
}
}