12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* global WIKI */
- import bcrypt from 'bcryptjs'
- // ------------------------------------
- // Local Account
- // ------------------------------------
- import { Strategy } from 'passport-local'
- export default {
- init (passport, conf) {
- passport.use(conf.key,
- new Strategy({
- usernameField: 'email',
- passwordField: 'password'
- }, async (uEmail, uPassword, done) => {
- try {
- const user = await WIKI.db.users.query().findOne({
- email: uEmail.toLowerCase()
- })
- if (user) {
- const authStrategyData = user.auth[conf.key]
- if (!authStrategyData) {
- throw new WIKI.Error.AuthLoginFailed()
- } else if (await bcrypt.compare(uPassword, authStrategyData.password) !== true) {
- throw new WIKI.Error.AuthLoginFailed()
- } else if (!user.isActive) {
- throw new WIKI.Error.AuthAccountBanned()
- } else if (!user.isVerified) {
- throw new WIKI.Error.AuthAccountNotVerified()
- } else {
- done(null, user)
- }
- } else {
- throw new WIKI.Error.AuthLoginFailed()
- }
- } catch (err) {
- done(err, null)
- }
- })
- )
- }
- }
|