-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapi.js
388 lines (325 loc) · 9.71 KB
/
api.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
384
385
386
387
388
const jsonBody = require('body/json')
const URL = require('@dguttman/node-url')
const jwt = require('jsonwebtoken')
const { OAuth2Client } = require('google-auth-library')
const Tokens = require('./tokens')
const Users = require('./users')
const Expiry = require('./expiry')
const clientErrors = {
'User Exists': 400,
'ConfirmUrl Not Provided': 400,
'ChangeUrl Not Provided': 400,
'Invalid Email': 400,
'Invalid Password': 400,
'User Not Confirmed': 401,
'Token Mismatch': 401,
'Already Confirmed': 400,
'Password Mismatch': 401,
'User Not Found': 401,
'Token Expired': 400
}
module.exports = API
API.prototype.publicKey = publicKey
API.prototype.signup = signup
API.prototype.confirm = confirm
API.prototype.login = login
API.prototype.changePasswordRequest = changePasswordRequest
API.prototype.changePassword = changePassword
API.prototype.magicRequest = magicRequest
API.prototype.magicLogin = magicLogin
API.prototype.googleAuth = googleAuth
API.prototype.googleCallback = googleCallback
API.prototype.expired = expired
function API (opts) {
if (!(this instanceof API)) return new API(opts)
this.sendEmail = opts.sendEmail
this.Tokens = Tokens(opts)
this.Users = Users(opts.dbUsers)
this.Expiry = opts.dbExpiry ? Expiry(opts.dbExpiry) : null
const { googleClientId, googleClientSecret, googleRedirectUrl } = opts
const shouldGoogle = googleClientId && googleClientSecret && googleRedirectUrl
if (shouldGoogle) {
this.googleClient = new OAuth2Client(
googleClientId,
googleClientSecret,
googleRedirectUrl
)
}
}
function publicKey (req, res, opts, cb) {
res.end(
JSON.stringify({
success: true,
data: {
publicKey: this.Tokens.publicKey
}
})
)
}
function signup (req, res, opts, cb) {
parseBody(req, res, (err, userData) => {
if (err) return cb(err)
const { email, password: pass, confirmUrl } = userData
this.Users.createUser(email, pass, (err, user) => {
if (err) {
err.statusCode = clientErrors[err.message] || 500
return cb(err)
}
let formattedConfirmUrl = confirmUrl
if (confirmUrl) {
const urlObj = URL.parse(confirmUrl, true)
urlObj.query.confirmToken = user.data.confirmToken
urlObj.query.email = email
formattedConfirmUrl = URL.format(urlObj)
}
const emailOpts = {
...userData,
type: 'signup',
email,
confirmUrl: formattedConfirmUrl,
confirmToken: user.data.confirmToken
}
delete emailOpts.password
this.sendEmail(emailOpts, err => {
if (err) return cb(err)
res.writeHead(201, { 'Content-Type': 'application/json' })
res.end(
JSON.stringify({
success: true,
message: 'User created. Check email for confirmation link.',
data: {
email: user.email,
createdDate: user.createdDate
}
})
)
})
})
})
}
function confirm (req, res, opts, cb) {
parseBody(req, res, (err, userData) => {
if (err) return cb(err)
const { email, confirmToken } = userData
this.Users.confirmUser(email, confirmToken, err => {
if (err) {
err.statusCode = clientErrors[err.message] || 500
return cb(err)
}
const token = this.Tokens.encode(email)
res.writeHead(202, { 'Content-Type': 'application/json' })
res.end(
JSON.stringify({
success: true,
message: 'User confirmed.',
data: {
authToken: token
}
})
)
})
})
}
function login (req, res, opts, cb) {
parseBody(req, res, (err, userData) => {
if (err) return cb(err)
const { email, password: pass } = userData
this.Users.checkPassword(email, pass, (err, user) => {
if (err) {
err.statusCode = clientErrors[err.message] || 500
return cb(err)
}
const isConfirmed = (user.data || {}).emailConfirmed
if (!isConfirmed) {
err = new Error('User Not Confirmed')
err.statusCode = clientErrors[err.message] || 500
return cb(err)
}
const token = this.Tokens.encode(email)
res.writeHead(202, { 'Content-Type': 'application/json' })
res.end(
JSON.stringify({
success: true,
message: 'Login successful.',
data: {
authToken: token
}
})
)
})
})
}
function changePasswordRequest (req, res, opts, cb) {
parseBody(req, res, (err, userData) => {
if (err) return cb(err)
const { email, changeUrl } = userData
this.Users.createChangeToken(email, (err, changeToken) => {
if (err) return cb(err)
let formattedChangeUrl = changeUrl
if (changeUrl) {
const urlObj = URL.parse(changeUrl, true)
urlObj.query.changeToken = changeToken
urlObj.query.email = email
formattedChangeUrl = URL.format(urlObj)
}
const emailOpts = {
...userData,
type: 'change-password-request',
email,
changeUrl: formattedChangeUrl,
changeToken
}
this.sendEmail(emailOpts, err => {
if (err) return cb(err)
res.writeHead(200, { 'Content-Type': 'application/json' })
res.end(
JSON.stringify({
success: true,
message:
'Change password request received. Check email for confirmation link.'
})
)
})
})
})
}
function changePassword (req, res, opts, cb) {
parseBody(req, res, (err, userData) => {
if (err) return cb(err)
const { email, password, changeToken } = userData
this.Users.changePassword(email, password, changeToken, err => {
if (err) {
err.statusCode = clientErrors[err.message] || 500
return cb(err)
}
this.Users.checkPassword(email, password, (err, user) => {
if (err) return cb(err)
const authToken = this.Tokens.encode(email)
const hash = this.Users.hashEmail(email)
if (this.Expiry) {
this.Expiry.set(hash, (err, data) => {
if (err) return cb(err)
})
}
res.writeHead(200, { 'Content-Type': 'application/json' })
res.end(
JSON.stringify({
success: true,
message: 'Password changed.',
data: {
authToken
}
})
)
})
})
})
}
function magicRequest (req, res, opts, cb) {
parseBody(req, res, (err, userData) => {
if (err) return cb(err)
const { email, magicUrl } = userData
this.Users.createMagicToken(email, (err, magicToken) => {
if (err) return cb(err)
let formattedMagicUrl = magicUrl
if (magicUrl) {
const urlObj = URL.parse(magicUrl, true)
urlObj.query.magicToken = magicToken
urlObj.query.email = email
formattedMagicUrl = URL.format(urlObj)
}
const emailOpts = {
...userData,
type: 'magic-request',
email,
magicUrl: formattedMagicUrl,
magicToken
}
this.sendEmail(emailOpts, err => {
if (err) return cb(err)
res.writeHead(200, { 'Content-Type': 'application/json' })
res.end(
JSON.stringify({
success: true,
message:
'Magic login request received. Check email for confirmation link.'
})
)
})
})
})
}
function magicLogin (req, res, opts, cb) {
parseBody(req, res, (err, userData) => {
if (err) return cb(err)
const { email, magicToken } = userData
this.Users.checkMagicToken(email, magicToken, (err, user) => {
if (err) {
err.statusCode = clientErrors[err.message] || 500
return cb(err)
}
const authToken = this.Tokens.encode(email)
res.writeHead(200, { 'Content-Type': 'application/json' })
res.end(
JSON.stringify({
success: true,
message: 'Magic login successful.',
data: {
authToken
}
})
)
})
})
}
function googleAuth (req, res, opts, cb) {
const reqUrl = URL.parse(req.url, true)
const { redirectUrl, redirectParam = 'jwt' } = reqUrl.query
if (!redirectUrl) {
return cb(new Error('redirectUrl is required'))
}
const scopes = ['https://www.googleapis.com/auth/userinfo.email']
const authUrl = this.googleClient.generateAuthUrl({
access_type: 'offline',
prompt: 'select_account',
state: JSON.stringify({ redirectUrl, redirectParam }),
scope: scopes
})
res.writeHead(302, { Location: authUrl })
res.end()
}
function googleCallback (req, res, opts, cb) {
const googleClient = this.googleClient
const reqUrl = URL.parse(req.url, true)
const { code, state } = reqUrl.query
const { redirectUrl, redirectParam } = JSON.parse(state)
googleClient
.getToken(code)
.catch(cb)
.then(({ tokens }) => {
const userInfo = jwt.decode(tokens.id_token)
const authToken = this.Tokens.encode(userInfo.email)
const parsedRedirectUrl = URL.parse(redirectUrl, true)
parsedRedirectUrl.query[redirectParam] = authToken
const destination = URL.format(parsedRedirectUrl)
res.writeHead(302, { Location: destination })
res.end()
})
}
function expired (req, res, opts, cb) {
const oneMonth = 30 * 24 * 60 * 60 * 1000
const since = new Date(Date.now() - oneMonth)
res.writeHead(200, { 'Content-Type': 'application/json' })
this.Expiry.getSince(since.toISOString(), (err, list) => {
if (err) return cb(err)
res.end(JSON.stringify(list))
})
}
function parseBody (req, res, cb) {
jsonBody(req, res, (err, parsed) => {
if (typeof (parsed || {}).email === 'string') {
parsed.email = parsed.email.toLowerCase()
}
cb(err, parsed)
})
}