-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathusers.js
81 lines (67 loc) · 1.6 KB
/
users.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
/**
* Controllers: Users
*/
const jwt = require('jsonwebtoken')
const { users } = require('../models')
const { comparePassword } = require('../utils')
/**
* Save
* @param {*} req
* @param {*} res
* @param {*} next
*/
const register = async (req, res, next) => {
try {
await users.register(req.body)
} catch (error) {
return res.status(400).json({ error: error.message })
}
let user
try {
user = await users.getByEmail(req.body.email)
} catch (error) {
console.log(error)
return next(error, null)
}
const token = jwt.sign(user, process.env.tokenSecret, {
expiresIn: 604800 // 1 week
})
res.json({ message: 'Authentication successful', token })
}
/**
* Sign a user in
* @param {*} req
* @param {*} res
* @param {*} next
*/
const login = async (req, res, next) => {
let user
try { user = await users.getByEmail(req.body.email) }
catch (error) { return done(error, null) }
if (!user) {
return res.status(404).send({ error: 'Authentication failed. User not found.' })
}
const isCorrect = comparePassword(req.body.password, user.password)
if (!isCorrect) {
return res.status(401).send({ error: 'Authentication failed. Wrong password.' })
}
const token = jwt.sign(user, process.env.tokenSecret, {
expiresIn: 604800 // 1 week
})
res.json({ message: 'Authentication successful', token })
}
/**
* Get a user
* @param {*} req
* @param {*} res
* @param {*} next
*/
const get = async (req, res, next) => {
const user = users.convertToPublicFormat(req.user)
res.json({ user })
}
module.exports = {
register,
login,
get,
}