-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathauth.js
383 lines (340 loc) · 11.9 KB
/
auth.js
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
var JSONAPIClient = require('./json-api-client');
var Model = JSONAPIClient.Model;
var makeHTTPRequest = JSONAPIClient.makeHTTPRequest;
var makeCredentialHTTPRequest = JSONAPIClient.makeCredentialHTTPRequest;
var config = require('./config');
var apiClient = require('./api-client');
var getCSRFToken = require('./csrf-token');
// We don't want to wait until the token is already expired before refreshing it.
// attempt to get a new token 5mins (300sec) before the current one expires
var BEARER_TOKEN_EXPIRATION_ALLOWANCE = 300 * 1000;
const authClient = new Model({
_currentUserPromise: null,
_bearerToken: '',
_bearerTokenExpiration: NaN,
_refreshToken: '',
_tokenRefreshPromise: null,
_getBearerToken: function() {
console.log('Getting bearer token');
if (this._bearerToken) {
console.info('Already had a bearer token');
return Promise.resolve(this._bearerToken);
} else {
var url = config.host + '/oauth/token';
var data = {
'grant_type': 'password',
'client_id': config.clientAppID,
};
return makeCredentialHTTPRequest('POST', url, data, config.jsonHeaders)
.then(function(request) {
var token = this._handleNewBearerToken(request);
console.info('Got bearer token', token.slice(-6));
return token;
}.bind(this))
.catch(function(request) {
// You're probably not signed in.
console.error('Failed to get bearer token');
return apiClient.handleError(request);
});
}
},
_handleNewBearerToken: function(request) {
var response = JSON.parse(request.text);
this._bearerToken = response.access_token;
apiClient.headers.Authorization = 'Bearer ' + this._bearerToken;
this._bearerTokenExpiration = Date.now() + (response.expires_in * 1000);
this._refreshToken = response.refresh_token;
this.emit('refresh', this._bearerToken);
return this._bearerToken;
},
_bearerTokenIsExpired: function() {
return Date.now() >= this._bearerTokenExpiration - BEARER_TOKEN_EXPIRATION_ALLOWANCE;
},
_refreshBearerToken: function() {
if (this._tokenRefreshPromise === null) {
console.log('Refreshing expired bearer token');
var url = config.host + '/oauth/token';
var data = {
grant_type: 'refresh_token',
refresh_token: this._refreshToken,
client_id: config.clientAppID,
};
this._tokenRefreshPromise = makeHTTPRequest('POST', url, data, config.jsonHeaders)
.then(function(request) {
var token = this._handleNewBearerToken(request);
console.info('Refreshed bearer token', token.slice(-6));
return token;
}.bind(this))
.catch(function(request) {
console.error('Failed to refresh bearer token');
apiClient.handleError(request);
return '';
})
.then(function(token) {
this._tokenRefreshPromise = null;
return token
}.bind(this));
}
return this._tokenRefreshPromise;
},
_deleteBearerToken: function() {
this._bearerToken = '';
delete apiClient.headers.Authorization;
this._bearerTokenExpiration = NaN;
this._refreshToken = '';
console.log('Deleted bearer token');
},
_getSession: function() {
console.log('Getting session');
return apiClient.get('/me')
.then(function(users) {
var user = users[0];
console.info('Got session', user.login, user.id);
return user;
})
.catch(function(error) {
console.error('Failed to get session');
throw error;
});
},
register: function(given) {
var originalArguments = arguments;
return this.checkCurrent().then(function(user) {
if (user) {
return this.signOut().then(function() {
return this.register.apply(this, originalArguments);
}.bind(this));
} else {
console.log('Registering new account', given.login);
var registrationRequest = getCSRFToken(config.host).then(function(token) {
var data = {
authenticity_token: token,
user: {
login: given.login,
email: given.email,
password: given.password,
credited_name: given.credited_name,
global_email_communication: given.global_email_communication,
project_id: given.project_id,
beta_email_communication: given.beta_email_communication,
project_email_communication: given.project_email_communication,
},
};
var url = config.host + '/users';
return makeCredentialHTTPRequest('POST', url, data, config.jsonHeaders)
.then(function() {
return this._getBearerToken().then(function() {
return this._getSession().then(function(user) {
console.info('Registered account', user.login, user.id);
return user;
});
}.bind(this));
}.bind(this))
.catch(function(request) {
console.error('Failed to register');
return apiClient.handleError(request);
});
}.bind(this));
this.update({
_currentUserPromise: registrationRequest.catch(function() {
return null;
}),
});
return registrationRequest;
}
}.bind(this));
},
checkCurrent: function() {
if (!this._currentUserPromise) {
console.log('Checking current user');
this.update({
_currentUserPromise: this._getBearerToken()
.then(function() {
return this._getSession();
}.bind(this))
.catch(function() {
// Nobody's signed in. This isn't an error.
console.info('No current user');
return null;
}),
});
}
return this._currentUserPromise;
},
checkBearerToken: function() {
var awaitBearerToken;
if (this._bearerTokenIsExpired()) {
awaitBearerToken = this._refreshBearerToken();
} else {
awaitBearerToken = Promise.resolve(this._bearerToken);
}
return awaitBearerToken;
},
signIn: function(credentials) {
var originalArguments = arguments;
return this.checkCurrent().then(function(user) {
if (user) {
return this.signOut().then(function() {
return this.signIn.apply(this, originalArguments);
}.bind(this));
} else {
console.log('Signing in', credentials.login);
var signInRequest = getCSRFToken(config.host).then(function(token) {
var url = config.host + '/users/sign_in';
var data = {
authenticity_token: token,
user: {
login: credentials.login,
password: credentials.password,
remember_me: true,
},
};
return makeCredentialHTTPRequest('POST', url, data, config.jsonHeaders)
.then(function() {
return this._getBearerToken().then(function() {
return this._getSession().then(function(user) {
console.info('Signed in', user.login, user.id);
return user;
}.bind(this));
}.bind(this));
}.bind(this))
.catch(function(request) {
console.error('Failed to sign in');
return apiClient.handleError(request);
});
}.bind(this));
this.update({
_currentUserPromise: signInRequest.catch(function() {
return null;
}),
});
return signInRequest;
}
}.bind(this));
},
changePassword: function(given) {
return this.checkCurrent().then(function(user) {
if (user) {
return getCSRFToken(config.host).then(function(token) {
var data = {
authenticity_token: token,
user: {
current_password: given.current,
password: given.replacement,
password_confirmation: given.replacement,
},
};
const url = config.host + '/users';
return makeCredentialHTTPRequest('PUT', url, data, config.jsonHeaders)
.then(function() {
// Resetting the password changes the underlying cookie session data
// need to sign out and back in to refresh
return this.signOut();
}.bind(this))
.then(function() {
return this.signIn({
login: user.login,
password: given.replacement,
});
}.bind(this));
}.bind(this));
} else {
throw new Error('No signed-in user to change the password for');
}
}.bind(this));
},
requestPasswordReset: function(given) {
return getCSRFToken(config.host).then(function(token) {
var data = {
authenticity_token: token,
user: {
email: given.email,
},
};
return apiClient.post('/../users/password', data, config.jsonHeaders);
}.bind(this));
},
resetPassword: function(given) {
return getCSRFToken(config.host).then(function(authToken) {
var data = {
authenticity_token: authToken,
user: {
password: given.password,
password_confirmation: given.confirmation,
reset_password_token: given.token,
},
};
const url = config.host + '/users/password';
return makeCredentialHTTPRequest('PUT', url, data, config.jsonHeaders);
}.bind(this));
},
disableAccount: function() {
console.log('Disabling account');
return this.checkCurrent().then(function(user) {
if (user) {
return user.delete().then(function() {
this._deleteBearerToken();
this.update({
_currentUserPromise: Promise.resolve(null),
});
console.info('Disabled account');
return null;
}.bind(this));
} else {
throw new Error('Failed to disable account; not signed in');
}
}.bind(this));
},
async signOut() {
console.log('Signing out');
const user = await this.checkCurrent();
if (user) {
const token = await getCSRFToken(config.host);
const url = config.host + '/users/sign_out';
const bearerToken = await this.checkBearerToken();
const deleteHeaders = {
...config.jsonHeaders,
['X-CSRF-Token']: token,
['Authorization']: 'Bearer ' + bearerToken
};
try {
makeCredentialHTTPRequest('DELETE', url, null, deleteHeaders);
this._deleteBearerToken();
this.update({
_currentUserPromise: Promise.resolve(null),
});
console.info('Signed out');
return null;
} catch (error) {
console.error('Failed to sign out');
return apiClient.handleError(error);
}
} else {
throw new Error('Failed to sign out; not signed in');
}
},
unsubscribeEmail: function(given) {
return getCSRFToken(config.host).then(function(token) {
var url = config.host + '/unsubscribe';
var data = {
authenticity_token: token,
email: given.email,
};
return makeHTTPRequest('POST', url, data, config.jsonHeaders);
}.bind(this));
},
});
module.exports = {
changePassword: authClient.changePassword.bind(authClient),
checkCurrent: authClient.checkCurrent.bind(authClient),
checkBearerToken: authClient.checkBearerToken.bind(authClient),
disableAccount: authClient.disableAccount.bind(authClient),
listen: authClient.listen.bind(authClient),
register: authClient.register.bind(authClient),
requestPasswordReset: authClient.requestPasswordReset.bind(authClient),
resetPassword: authClient.resetPassword.bind(authClient),
signIn: authClient.signIn.bind(authClient),
stopListening: authClient.stopListening.bind(authClient),
signOut: authClient.signOut.bind(authClient),
unsubscribeEmail: authClient.unsubscribeEmail.bind(authClient)
};