some login changes

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

@ -18,11 +18,6 @@ define(function() {
url: RELATIVE_PATH + '/login', url: RELATIVE_PATH + '/login',
data: loginData, data: loginData,
success: function(data, textStatus, jqXHR) { success: function(data, textStatus, jqXHR) {
if (!data.success) {
$('#login-error-notify').show();
$('#login').removeAttr('disabled').html('Login');
} else {
$('#login').html('Redirecting...'); $('#login').html('Redirecting...');
if(!app.previousUrl) { if(!app.previousUrl) {
app.previousUrl = '/'; app.previousUrl = '/';
@ -40,7 +35,6 @@ define(function() {
} }
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'
});
} else {
var userslug = utils.slugify(username); var userslug = utils.slugify(username);
user.getUidByUserslug(userslug, function(err, uid) { user.getUidByUserslug(userslug, function(err, uid) {
if (err) { if (err) {
return next(new Error('redis-error')); return next(err);
} else if (uid == null) { }
return next(new Error('invalid-user'));
if(!uid) {
return next(null, false, 'user doesn\'t exist');
} }
user.getUserFields(uid, ['password', 'banned'], function(err, userData) { user.getUserFields(uid, ['password', 'banned'], function(err, userData) {
if (err) return next(err); if (err) {
return next(err);
}
if (!userData || !userData.password) {
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) { bcrypt.compare(password, userData.password, function(err, res) {
if (err) { if (err) {
winston.err(err.message); winston.err(err.message);
next(new Error('bcrypt compare error')); return next(new Error('bcrypt compare error'));
return; }
if (!res) {
next(null, false, 'invalid-password');
} }
if (res) {
next(null, { next(null, {
user: {
uid: uid uid: uid
} }, 'Authentication successful');
});
});
}); });
} 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