mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
920 B
37 lines
920 B
7 years ago
|
/* global wiki */
|
||
|
|
||
|
// ------------------------------------
|
||
|
// Local Account
|
||
|
// ------------------------------------
|
||
|
|
||
|
const LocalStrategy = require('passport-local').Strategy
|
||
|
|
||
7 years ago
|
module.exports = {
|
||
|
key: 'local',
|
||
|
title: 'Local',
|
||
7 years ago
|
useForm: true,
|
||
7 years ago
|
props: [],
|
||
|
init (passport, conf) {
|
||
|
passport.use('local',
|
||
|
new LocalStrategy({
|
||
|
usernameField: 'email',
|
||
|
passwordField: 'password'
|
||
|
}, (uEmail, uPassword, done) => {
|
||
|
wiki.db.User.findOne({ email: uEmail, provider: 'local' }).then((user) => {
|
||
|
if (user) {
|
||
|
return user.validatePassword(uPassword).then(() => {
|
||
|
return done(null, user) || true
|
||
|
}).catch((err) => {
|
||
|
return done(err, null)
|
||
|
})
|
||
|
} else {
|
||
|
return done(new Error('INVALID_LOGIN'), null)
|
||
|
}
|
||
|
}).catch((err) => {
|
||
|
done(err, null)
|
||
|
})
|
||
|
}
|
||
|
))
|
||
|
}
|
||
7 years ago
|
}
|