mirror of
https://github.com/sstent/expressmongotest.git
synced 2026-01-25 16:42:00 +00:00
31 lines
827 B
JavaScript
31 lines
827 B
JavaScript
/*
|
|
* Session Routes
|
|
*/
|
|
var User = require('../data/models/user');
|
|
var notLoggedIn = require('./middleware/not_logged_in');
|
|
|
|
module.exports = function(app) {
|
|
app.get('/session/new', notLoggedIn, function(req, res) {
|
|
res.render('session/new', {title: "Log in"});
|
|
});
|
|
|
|
app.post('/session', notLoggedIn, function(req, res) {
|
|
User.findOne({username: req.body.username, password: req.body.password},
|
|
function(err, user) {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
if (user) {
|
|
req.session.user = user;
|
|
res.redirect('/users/' + req.session.user.username);
|
|
} else {
|
|
res.redirect('/session/new');
|
|
}
|
|
});
|
|
});
|
|
|
|
app.del('/session', function(req, res, next) {
|
|
req.session.destroy();
|
|
res.redirect('/session/new');
|
|
});
|
|
}; |