checks in socket.io/user

reset doesnt need socket
v1.18.x
barisusakli 11 years ago
parent 8e84e47578
commit 84b7a2c92d

@ -78,19 +78,19 @@ SocketUser.reset = {};
SocketUser.reset.send = function(socket, email, callback) { SocketUser.reset.send = function(socket, email, callback) {
if (email) { if (email) {
user.reset.send(socket, email, callback); user.reset.send(email, callback);
} }
}; };
SocketUser.reset.valid = function(socket, code, callback) { SocketUser.reset.valid = function(socket, code, callback) {
if (code) { if (code) {
user.reset.validate(socket, code, callback); user.reset.validate(code, callback);
} }
}; };
SocketUser.reset.commit = function(socket, data, callback) { SocketUser.reset.commit = function(socket, data, callback) {
if(data && data.code && data.password) { if(data && data.code && data.password) {
user.reset.commit(socket, data.code, data.password, callback); user.reset.commit(data.code, data.password, callback);
} }
}; };
@ -112,12 +112,16 @@ SocketUser.checkStatus = function(socket, uid, callback) {
}; };
SocketUser.changePassword = function(socket, data, callback) { SocketUser.changePassword = function(socket, data, callback) {
if(data) { if (data && socket.uid) {
user.changePassword(socket.uid, data, callback); user.changePassword(socket.uid, data, callback);
} }
}; };
SocketUser.updateProfile = function(socket, data, callback) { SocketUser.updateProfile = function(socket, data, callback) {
if (!socket.uid) {
return callback('[[error:invalid-uid]]');
}
if (!data || !data.uid) { if (!data || !data.uid) {
return callback(new Error('[[error:invalid-data]]')); return callback(new Error('[[error:invalid-data]]'));
} }
@ -140,6 +144,10 @@ SocketUser.updateProfile = function(socket, data, callback) {
}; };
SocketUser.changePicture = function(socket, data, callback) { SocketUser.changePicture = function(socket, data, callback) {
if (!socket.uid) {
return callback('[[error:invalid-uid]]');
}
if (!data) { if (!data) {
return callback(new Error('[[error:invalid-data]]')); return callback(new Error('[[error:invalid-data]]'));
} }
@ -305,10 +313,16 @@ SocketUser.getOnlineAnonCount = function(socket, data, callback) {
}; };
SocketUser.getUnreadCount = function(socket, data, callback) { SocketUser.getUnreadCount = function(socket, data, callback) {
if (!socket.uid) {
return callback(null, 0);
}
topics.getTotalUnread(socket.uid, callback); topics.getTotalUnread(socket.uid, callback);
}; };
SocketUser.getUnreadChatCount = function(socket, data, callback) { SocketUser.getUnreadChatCount = function(socket, data, callback) {
if (!socket.uid) {
return callback(null, 0);
}
messaging.getUnreadCount(socket.uid, callback); messaging.getUnreadCount(socket.uid, callback);
}; };

@ -223,7 +223,7 @@ module.exports = function(User) {
} }
User.changePassword = function(uid, data, callback) { User.changePassword = function(uid, data, callback) {
if(!data || !data.uid) { if (!uid || !data || !data.uid) {
return callback(new Error('[[error:invalid-uid]]')); return callback(new Error('[[error:invalid-uid]]'));
} }

@ -11,12 +11,11 @@ var async = require('async'),
db = require('../database'), db = require('../database'),
meta = require('../meta'), meta = require('../meta'),
events = require('../events'), events = require('../events'),
emailer = require('../emailer'), emailer = require('../emailer');
tran;
(function(UserReset) { (function(UserReset) {
UserReset.validate = function(socket, code, callback) { UserReset.validate = function(code, callback) {
db.getObjectField('reset:uid', code, function(err, uid) { db.getObjectField('reset:uid', code, function(err, uid) {
if (err || !uid) { if (err || !uid) {
return callback(err, false); return callback(err, false);
@ -39,7 +38,7 @@ var async = require('async'),
}); });
}; };
UserReset.send = function(socket, email, callback) { UserReset.send = function(email, callback) {
user.getUidByEmail(email, function(err, uid) { user.getUidByEmail(email, function(err, uid) {
if (err || !uid) { if (err || !uid) {
return callback(err || new Error('[[error:invalid-email]]')); return callback(err || new Error('[[error:invalid-email]]'));
@ -64,8 +63,8 @@ var async = require('async'),
}); });
}; };
UserReset.commit = function(socket, code, password, callback) { UserReset.commit = function(code, password, callback) {
UserReset.validate(socket, code, function(err, validated) { UserReset.validate(code, function(err, validated) {
if(err) { if(err) {
return callback(err); return callback(err);
} }

Loading…
Cancel
Save