gpt4 book ai didi

hapi.js - 如果用户使用 Hapi.js 登录,则禁用登录路由

转载 作者:行者123 更新时间:2023-12-01 09:19:12 26 4
gpt4 key购买 nike

基本上,我的应用有一个登录/注册登录页面。用户登录或注册后,我不希望他们能够再访问此路由。我不确定如何使用 Hapi.js 实现这一目标。登录页面不使用任何身份验证策略,因此它不知道用户是否登录。

最佳答案

我通常使用的方法不是禁用路由本身,而是将登录用户重定向到登录路由之外。

正如您正确指出的那样,如果未配置身份验证策略,您的登录路由当前不知道用户是否已登录。解决方案是向登录路由添加一个身份验证策略,但使用try模式。这意味着无论身份验证是否成功,都将执行处理程序。诀窍是您可以检查用户是否已通过身份验证(通过检查 request.auth.isAuthenticated 的值)并做出相应的 react 。

所以您的路线可能如下所示:

server.route({
config: {
auth: {
strategy: 'session',
mode: 'try'
}
},
method: 'GET',
path: '/login',
handler: function (request, reply) {

if (request.auth.isAuthenticated) {
return reply.redirect('/'); // user is logged-in send 'em away
}

return reply.view('login'); // do the login thing
}
});

另一种具有相同结果的方法是将您的身份验证策略设置为 try 模式作为所有路由的默认值:

server.auth.strategy('session', 'cookie', 'try', {     
password: 'password-that-is-longer-than-32-chars',
isSecure: true
});

注意第三个参数try。使用这种方法,您不需要向路由本身添加任何身份验证配置,因为它会默认尝试此策略。根据server.auth.strategy文档:

mode - if true, the scheme is automatically assigned as a required strategy to any route without an auth config. Can only be assigned to a single server strategy. Value must be true (which is the same as 'required') or a valid authentication mode ('required', 'optional', 'try'). Defaults to false.

Authentication tutorial 中有更多关于模式的信息。在 hapi 网站上。

关于hapi.js - 如果用户使用 Hapi.js 登录,则禁用登录路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36675665/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com