-
Notifications
You must be signed in to change notification settings - Fork 0
/
passport-config.js
31 lines (28 loc) · 1.01 KB
/
passport-config.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
const LocalStrategy = require('passport-local').Strategy
const bcrpyt = require('bcrypt')
// add async in front of function??
async function initialize(passport, getUserByEmail, getUserById){
const authenticateUser = async (email, password, done) => {
const user = getUserByEmail(email)
if (user == null) {
return done(null, false, { message: 'no user with email' })
}
try {
if(await bcrpyt.compare(password, user.password)) {
res.send('Success')
return done(null, user)
} else {
return done(null, false, {message: 'password incorrect'})
}
} catch (e) {
return done(e)
}
passport.use(new LocalStrategy({ usernameField: 'email'},
authenticateUser))
passport.serializeUser((user, done) => done(null, user.id))
passport.deserializeUser((id, done) => {
return done(null, getUserById(id))
})
}
}
module.exports = initialize