javascript - Node.js redirect to login if user is not logged in - Stack Overflow

I am using the node-login module to login on my website. Ok, after the user logs in I render my dashboa

I am using the node-login module to login on my website. Ok, after the user logs in I render my dashboard.html website:

app.get('/', function(req, res){
// check if the user's credentials are saved in a cookie //
    if (req.cookies.user == undefined || req.cookies.pass == undefined){
        res.render(req.locale+'/login', { title: 'Hello - Please Login To Your Account' });
    }   else{
// attempt automatic login //
        AM.autoLogin(req.cookies.user, req.cookies.pass, function(o){
            if (o != null){
                req.session.user = o;
                res.redirect('/home');
            }   else{
                res.render('/login', { title: 'Hello - Please Login To Your Account' });
            }
        });
    }
});

After that, all other html websites are linked from within dashboard.html, so there are no other app.get methods called.

If a user tries to navigate to .html (or any other html page that is not the login page ), if the user is not logged in, I need to redirect him to the login page.

I first thought somehting like this but I don't know if this is possible:

app.get('I-don't-know-what-to-insert-here', function(req, res) {
    if (req.session.user == null){
// if user is not logged-in redirect back to login page //
        res.redirect('/');
    }   else{
        res.redirect('redirect-here-to-the-requested-html-page')  
    }
});

Regards,

I am using the node-login module to login on my website. Ok, after the user logs in I render my dashboard.html website:

app.get('/', function(req, res){
// check if the user's credentials are saved in a cookie //
    if (req.cookies.user == undefined || req.cookies.pass == undefined){
        res.render(req.locale+'/login', { title: 'Hello - Please Login To Your Account' });
    }   else{
// attempt automatic login //
        AM.autoLogin(req.cookies.user, req.cookies.pass, function(o){
            if (o != null){
                req.session.user = o;
                res.redirect('/home');
            }   else{
                res.render('/login', { title: 'Hello - Please Login To Your Account' });
            }
        });
    }
});

After that, all other html websites are linked from within dashboard.html, so there are no other app.get methods called.

If a user tries to navigate to http://www.example./news.html (or any other html page that is not the login page ), if the user is not logged in, I need to redirect him to the login page.

I first thought somehting like this but I don't know if this is possible:

app.get('I-don't-know-what-to-insert-here', function(req, res) {
    if (req.session.user == null){
// if user is not logged-in redirect back to login page //
        res.redirect('/');
    }   else{
        res.redirect('redirect-here-to-the-requested-html-page')  
    }
});

Regards,

Share Improve this question asked Mar 17, 2015 at 16:49 EgidiEgidi 1,7769 gold badges45 silver badges70 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

You want to write middleware, not a route handler:

app.use(function(req, res, next) {
    if (req.session.user == null){
// if user is not logged-in redirect back to login page //
        res.redirect('/');
    }   else{
        next();
    }
});

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743647577a4484019.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信