-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpassport.js
51 lines (42 loc) · 1.31 KB
/
passport.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
const passport = require('passport');
const LocalStrategy = require('passport-local').Strategy;
const Models = require('./models.js');
const Users = Models.User;
const passportJWT = require("passport-jwt");
const JWTStrategy = passportJWT.Strategy;
const ExtractJWT = passportJWT.ExtractJwt;
passport.use(new LocalStrategy({
usernameField: 'Username',
passwordField: 'Password'
},
function(username, password, callback) {
var hashedPassword = Users.hashPassword(password);
Users.findOne({Username: username }, function(err, user) {
if (err) {
console.log(err);
return callback(err);
}
if (!user) {
return callback(null, false, { message: 'Incorrect username' });
}
if (!user.validatePassword(password)) {
return callback(null, false, { message: 'Incorrect password.' });
}
return callback(null, user);
});
})
);
passport.use(new JWTStrategy({
jwtFromRequest: ExtractJWT.fromAuthHeaderAsBearerToken(),
secretOrKey : 'your_jwt_secret'
},
function (jwtPayload, callback) {
return Users.findById(jwtPayload._id) // See if any users match the one stored in the JWT token
.then(user => {
return callback(null, user);
})
.catch(err => {
return callback(err);
});
})
);