some login changes

v1.18.x
Baris Soner Usakli 11 years ago
parent b82a5461ce
commit 7e825c61bd

@ -18,29 +18,23 @@ define(function() {
url: RELATIVE_PATH + '/login', url: RELATIVE_PATH + '/login',
data: loginData, data: loginData,
success: function(data, textStatus, jqXHR) { success: function(data, textStatus, jqXHR) {
$('#login').html('Redirecting...');
if(!app.previousUrl) {
app.previousUrl = '/';
}
if (!data.success) { if(app.previousUrl.indexOf('/reset/') !== -1) {
$('#login-error-notify').show(); window.location.replace(RELATIVE_PATH + "/?loggedin");
$('#login').removeAttr('disabled').html('Login');
} else { } else {
$('#login').html('Redirecting...'); var index = app.previousUrl.indexOf('#');
if(!app.previousUrl) { if(index !== -1) {
app.previousUrl = '/'; window.location.replace(app.previousUrl.slice(0, index) + '?loggedin' + app.previousUrl.slice(index));
}
if(app.previousUrl.indexOf('/reset/') !== -1) {
window.location.replace(RELATIVE_PATH + "/?loggedin");
} else { } else {
var index = app.previousUrl.indexOf('#'); window.location.replace(app.previousUrl + "?loggedin");
if(index !== -1) {
window.location.replace(app.previousUrl.slice(0, index) + '?loggedin' + app.previousUrl.slice(index));
} else {
window.location.replace(app.previousUrl + "?loggedin");
}
} }
app.loadConfig();
} }
app.loadConfig();
}, },
error: function(data, textStatus, jqXHR) { error: function(data, textStatus, jqXHR) {
$('#login-error-notify').show(); $('#login-error-notify').show();

@ -13,16 +13,6 @@
login_strategies = []; login_strategies = [];
passport.use(new passportLocal(function(user, password, next) {
Auth.login(user, password, function(err, login) {
if (!err) {
next(null, login.user);
} else {
next(null, false, err);
}
});
}));
plugins.ready(function() { plugins.ready(function() {
plugins.fireHook('filter:auth.init', login_strategies, function(err) { plugins.fireHook('filter:auth.init', login_strategies, function(err) {
if (err) { if (err) {
@ -33,16 +23,6 @@
}); });
}); });
passport.serializeUser(function(user, done) {
done(null, user.uid);
});
passport.deserializeUser(function(uid, done) {
done(null, {
uid: uid
});
});
Auth.initialize = function(app) { Auth.initialize = function(app) {
app.use(passport.initialize()); app.use(passport.initialize());
app.use(passport.session()); app.use(passport.session());
@ -107,11 +87,9 @@
if (err) { if (err) {
return next(err); return next(err);
} }
if (!user) { if (!user) {
return res.send({ return res.json(403, info);
success: false,
message: info.message
});
} }
// Alter user cookie depending on passed-in option // Alter user cookie depending on passed-in option
@ -127,10 +105,7 @@
req.login({ req.login({
uid: user.uid uid: user.uid
}, function() { }, function() {
res.send({ res.json(info);
success: true,
message: 'authentication succeeded'
});
}); });
})(req, res, next); })(req, res, next);
}); });
@ -163,50 +138,60 @@
Auth.login = function(username, password, next) { Auth.login = function(username, password, next) {
if (!username || !password) { if (!username || !password) {
return next({ return next(new Error('invalid-user'));
status: 'error', }
message: 'invalid-user'
}); var userslug = utils.slugify(username);
} else {
user.getUidByUserslug(userslug, function(err, uid) {
if (err) {
return next(err);
}
var userslug = utils.slugify(username); if(!uid) {
return next(null, false, 'user doesn\'t exist');
}
user.getUidByUserslug(userslug, function(err, uid) { user.getUserFields(uid, ['password', 'banned'], function(err, userData) {
if (err) { if (err) {
return next(new Error('redis-error')); return next(err);
} else if (uid == null) {
return next(new Error('invalid-user'));
} }
user.getUserFields(uid, ['password', 'banned'], function(err, userData) { if (!userData || !userData.password) {
if (err) return next(err); return next(new Error('invalid userdata or password'));
}
if (userData.banned && parseInt(userData.banned, 10) === 1) { if (userData.banned && parseInt(userData.banned, 10) === 1) {
return next({ return next(null, false, 'User banned');
status: "error", }
message: "user-banned"
}); bcrypt.compare(password, userData.password, function(err, res) {
if (err) {
winston.err(err.message);
return next(new Error('bcrypt compare error'));
} }
bcrypt.compare(password, userData.password, function(err, res) { if (!res) {
if (err) { next(null, false, 'invalid-password');
winston.err(err.message); }
next(new Error('bcrypt compare error'));
return; next(null, {
} uid: uid
}, 'Authentication successful');
if (res) {
next(null, {
user: {
uid: uid
}
});
} else {
next(new Error('invalid-password'));
}
});
}); });
}); });
} });
} }
passport.use(new passportLocal(Auth.login));
passport.serializeUser(function(user, done) {
done(null, user.uid);
});
passport.deserializeUser(function(uid, done) {
done(null, {
uid: uid
});
});
}(exports)); }(exports));
Loading…
Cancel
Save