溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

koa-passport實(shí)現(xiàn)本地驗(yàn)證的方法示例

發(fā)布時(shí)間:2020-08-20 12:02:02 來(lái)源:腳本之家 閱讀:138 作者:蘇荷酒吧 欄目:web開發(fā)

安裝

yarn add koa-passport passport-local

先看下passport.js登錄策略,判斷用戶和密碼

const passport = require('koa-passport')
const LocalStrategy = require('passport-local').Strategy
const User = require('../../dbs/models/users')

passport.use(new LocalStrategy((username, password, done) => {
 User.findOne({username}, (err, user) => {
  if (err) return done(err)
  if (!user) return done(null, false, {message: '用戶不存在'})
  if (user.password !== password) return done(null, false, {message: '密碼錯(cuò)誤'})
  return done(null, user)
 })
}))

passport.serializeUser((user, done) => {
 done(null, user)
})

passport.deserializeUser((user, done) => {
 done(null, user)
})

module.exports = passport

在入口中掛載passport

app.use(passport.initialize())
app.use(passport.session())

這時(shí)候passport策略配置完成

登錄接口實(shí)現(xiàn)

router.post('/signin', async ctx => {
 return Passport.authenticate('local', (err, user, info, status) => {
  if (err) {
   ctx.body = {
    code:-1,
    msg:err
   }
  }else {
   if (user) {
    ctx.body = {
     code:0,
     msg:'登錄成功',
     user
    }
    return ctx.login(user)
   } else {
    ctx.body = {
     code:1,
     msg:info
    }
   }
  }
 })(ctx)
})

用戶是否登錄

router.get('/getUser', async ctx => {
 if (ctx.isAuthenticated()){
  const {username, email} = ctx.session.passport.user
  ctx.body = {
   username,
   email
  }
 } else {
  ctx.body = {
   username: '',
   email: ''
  }
 }
})

用戶退出

router.get('/exit', async ctx => {
 await ctx.logout()
 if (!ctx.isAuthenticated()) {
  ctx.body = {
   code:0
  }
 } else {
  ctx.body = {
   code:-1
  }
 }
})

分析

通過(guò)passport.serializeUser函數(shù)定義序列化操作,調(diào)用ctx.login()會(huì)觸發(fā)序列化操作

通過(guò)passport.deserializeUser函數(shù)定義反序列化操作,在session中如果存在passport:{user:'Susan'}會(huì)觸發(fā)反序列化操作

通過(guò)passport.use(new LocalStrategy('local', ...)) 注冊(cè)策略,調(diào)用passport.authenticate('local',...)調(diào)用策略

app.use(passport.initialize()) 會(huì)在ctx掛載以下方法

  ctx.state.user 認(rèn)證用戶

  ctx.login(user) 登錄用戶

  ctx.logout() 用戶退出登錄

  ctx.isAuthenticated() 判斷是否認(rèn)證

到此這篇關(guān)于koa-passport實(shí)現(xiàn)本地驗(yàn)證的方法示例的文章就介紹到這了,更多相關(guān)koa-passport 本地驗(yàn)證內(nèi)容請(qǐng)搜素億速云以前的文章或下面相關(guān)文章,希望大家以后多多支持億速云!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI