2014-03-12 22:11:48 -04:00
|
|
|
'use strict';
|
|
|
|
|
|
2014-01-31 15:13:52 -05:00
|
|
|
var async = require('async'),
|
2015-09-25 15:56:58 -04:00
|
|
|
|
|
|
|
|
|
2014-01-31 15:13:52 -05:00
|
|
|
user = require('../user'),
|
2014-01-09 22:46:51 -05:00
|
|
|
topics = require('../topics'),
|
2014-08-13 19:25:58 -04:00
|
|
|
notifications = require('../notifications'),
|
2014-07-19 10:33:27 -04:00
|
|
|
messaging = require('../messaging'),
|
2014-08-14 17:52:17 -04:00
|
|
|
plugins = require('../plugins'),
|
2014-09-06 22:08:55 -04:00
|
|
|
utils = require('../../public/src/utils'),
|
|
|
|
|
websockets = require('./index'),
|
2014-03-19 21:32:13 -04:00
|
|
|
meta = require('../meta'),
|
2015-02-01 19:11:58 -05:00
|
|
|
events = require('../events'),
|
2015-02-08 21:06:38 -05:00
|
|
|
emailer = require('../emailer'),
|
|
|
|
|
db = require('../database'),
|
2015-09-25 15:56:58 -04:00
|
|
|
|
2014-01-09 22:46:51 -05:00
|
|
|
SocketUser = {};
|
|
|
|
|
|
2015-09-25 15:56:58 -04:00
|
|
|
|
|
|
|
|
require('./user/profile')(SocketUser);
|
|
|
|
|
require('./user/search')(SocketUser);
|
|
|
|
|
require('./user/status')(SocketUser);
|
|
|
|
|
require('./user/picture')(SocketUser);
|
|
|
|
|
|
2014-01-16 15:46:37 -05:00
|
|
|
SocketUser.exists = function(socket, data, callback) {
|
|
|
|
|
if (data && data.username) {
|
2014-05-22 10:21:01 -04:00
|
|
|
meta.userOrGroupExists(utils.slugify(data.username), callback);
|
2014-01-09 22:46:51 -05:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2014-08-26 13:47:48 -04:00
|
|
|
SocketUser.deleteAccount = function(socket, data, callback) {
|
2015-04-22 10:41:44 -04:00
|
|
|
if (!socket.uid) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
user.isAdministrator(socket.uid, function(err, isAdmin) {
|
|
|
|
|
if (err || isAdmin) {
|
|
|
|
|
return callback(err || new Error('[[error:cant-delete-admin]]'));
|
|
|
|
|
}
|
2015-04-08 18:11:17 -04:00
|
|
|
|
2015-04-22 10:41:44 -04:00
|
|
|
socket.broadcast.emit('event:user_status_change', {uid: socket.uid, status: 'offline'});
|
|
|
|
|
user.deleteAccount(socket.uid, function(err) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
websockets.in('uid_' + socket.uid).emit('event:logout');
|
|
|
|
|
callback();
|
2014-09-24 00:07:24 -04:00
|
|
|
});
|
2015-04-22 10:41:44 -04:00
|
|
|
});
|
2014-08-26 13:47:48 -04:00
|
|
|
};
|
|
|
|
|
|
2014-01-16 15:46:37 -05:00
|
|
|
SocketUser.emailExists = function(socket, data, callback) {
|
2015-04-22 10:41:44 -04:00
|
|
|
if (data && data.email) {
|
2014-01-16 18:18:42 -05:00
|
|
|
user.email.exists(data.email, callback);
|
|
|
|
|
}
|
2014-01-09 22:46:51 -05:00
|
|
|
};
|
|
|
|
|
|
2014-06-03 18:39:54 -04:00
|
|
|
SocketUser.emailConfirm = function(socket, data, callback) {
|
|
|
|
|
if (socket.uid && parseInt(meta.config.requireEmailConfirmation, 10) === 1) {
|
|
|
|
|
user.getUserField(socket.uid, 'email', function(err, email) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!email) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-13 17:29:43 -04:00
|
|
|
user.email.sendValidationEmail(socket.uid, email, callback);
|
2014-06-03 18:39:54 -04:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2014-01-19 22:07:29 -05:00
|
|
|
|
2014-01-09 22:46:51 -05:00
|
|
|
// Password Reset
|
|
|
|
|
SocketUser.reset = {};
|
|
|
|
|
|
2014-04-04 13:11:05 -04:00
|
|
|
SocketUser.reset.send = function(socket, email, callback) {
|
|
|
|
|
if (email) {
|
2014-11-01 16:55:50 -04:00
|
|
|
user.reset.send(email, callback);
|
2014-01-16 18:18:42 -05:00
|
|
|
}
|
2014-01-09 22:46:51 -05:00
|
|
|
};
|
|
|
|
|
|
2014-01-16 15:46:37 -05:00
|
|
|
SocketUser.reset.commit = function(socket, data, callback) {
|
2015-02-11 21:54:20 -05:00
|
|
|
if (!data || !data.code || !data.password) {
|
|
|
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
|
|
|
}
|
2015-02-08 21:06:38 -05:00
|
|
|
|
2015-02-11 21:54:20 -05:00
|
|
|
async.parallel({
|
|
|
|
|
uid: async.apply(db.getObjectField, 'reset:uid', data.code),
|
|
|
|
|
reset: async.apply(user.reset.commit, data.code, data.password)
|
|
|
|
|
}, function(err, results) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var uid = results.uid,
|
|
|
|
|
now = new Date(),
|
|
|
|
|
parsedDate = now.getFullYear() + '/' + (now.getMonth()+1) + '/' + now.getDate();
|
|
|
|
|
|
|
|
|
|
user.getUserField(uid, 'username', function(err, username) {
|
|
|
|
|
emailer.send('reset_notify', uid, {
|
|
|
|
|
username: username,
|
|
|
|
|
date: parsedDate,
|
|
|
|
|
site_title: meta.config.title || 'NodeBB',
|
|
|
|
|
subject: '[[email:reset.notify.subject]]'
|
2015-02-01 19:11:58 -05:00
|
|
|
});
|
|
|
|
|
});
|
2015-02-11 21:54:20 -05:00
|
|
|
|
|
|
|
|
events.log({
|
|
|
|
|
type: 'password-reset',
|
|
|
|
|
uid: uid,
|
|
|
|
|
ip: socket.ip
|
|
|
|
|
});
|
|
|
|
|
callback();
|
|
|
|
|
});
|
2014-01-09 22:46:51 -05:00
|
|
|
};
|
|
|
|
|
|
2015-10-29 22:22:33 -04:00
|
|
|
SocketUser.isFollowing = function(socket, data, callback) {
|
|
|
|
|
if (!socket.uid || !data.uid) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
user.isFollowing(socket.uid, data.uid, callback);
|
|
|
|
|
};
|
|
|
|
|
|
2014-01-16 15:46:37 -05:00
|
|
|
SocketUser.follow = function(socket, data, callback) {
|
2014-09-08 23:03:37 -04:00
|
|
|
if (!socket.uid || !data) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-03-19 15:55:56 -04:00
|
|
|
var userData;
|
2015-02-27 17:57:09 -05:00
|
|
|
async.waterfall([
|
|
|
|
|
function(next) {
|
|
|
|
|
toggleFollow('follow', socket.uid, data.uid, next);
|
|
|
|
|
},
|
|
|
|
|
function(next) {
|
|
|
|
|
user.getUserFields(socket.uid, ['username', 'userslug'], next);
|
|
|
|
|
},
|
2015-03-19 15:55:56 -04:00
|
|
|
function(_userData, next) {
|
|
|
|
|
userData = _userData;
|
2014-09-08 23:03:37 -04:00
|
|
|
notifications.create({
|
|
|
|
|
bodyShort: '[[notifications:user_started_following_you, ' + userData.username + ']]',
|
2014-09-12 16:35:30 -04:00
|
|
|
nid: 'follow:' + data.uid + ':uid:' + socket.uid,
|
2015-08-20 11:23:16 -04:00
|
|
|
from: socket.uid,
|
|
|
|
|
path: '/user/' + userData.userslug
|
2015-02-27 17:57:09 -05:00
|
|
|
}, next);
|
|
|
|
|
},
|
|
|
|
|
function(notification, next) {
|
2015-03-19 15:55:56 -04:00
|
|
|
notification.user = userData;
|
2015-02-27 17:57:09 -05:00
|
|
|
notifications.push(notification, [data.uid], next);
|
|
|
|
|
}
|
|
|
|
|
], callback);
|
2014-01-09 22:46:51 -05:00
|
|
|
};
|
|
|
|
|
|
2014-01-16 15:46:37 -05:00
|
|
|
SocketUser.unfollow = function(socket, data, callback) {
|
2014-01-16 18:18:42 -05:00
|
|
|
if (socket.uid && data) {
|
2014-08-14 17:59:33 -04:00
|
|
|
toggleFollow('unfollow', socket.uid, data.uid, callback);
|
2014-01-09 22:46:51 -05:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2014-08-14 17:59:33 -04:00
|
|
|
function toggleFollow(method, uid, theiruid, callback) {
|
|
|
|
|
user[method](uid, theiruid, function(err) {
|
|
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plugins.fireHook('action:user.' + method, {
|
|
|
|
|
fromUid: uid,
|
|
|
|
|
toUid: theiruid
|
|
|
|
|
});
|
2014-08-17 00:14:45 -04:00
|
|
|
callback();
|
2014-08-14 17:59:33 -04:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-16 15:46:37 -05:00
|
|
|
SocketUser.saveSettings = function(socket, data, callback) {
|
2014-07-20 21:10:23 -04:00
|
|
|
if (!socket.uid || !data) {
|
|
|
|
|
return callback(new Error('[[error:invalid-data]]'));
|
2014-01-09 22:46:51 -05:00
|
|
|
}
|
2014-07-20 21:10:23 -04:00
|
|
|
|
2015-10-09 17:52:55 -04:00
|
|
|
user.isAdminOrSelf(socket.uid, data.uid, function(err) {
|
2014-07-20 21:10:23 -04:00
|
|
|
if (err) {
|
|
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
user.saveSettings(data.uid, data.settings, callback);
|
|
|
|
|
});
|
2014-01-09 22:46:51 -05:00
|
|
|
};
|
|
|
|
|
|
2014-06-06 22:12:14 -04:00
|
|
|
SocketUser.setTopicSort = function(socket, sort, callback) {
|
2014-07-20 21:10:23 -04:00
|
|
|
if (socket.uid) {
|
2014-06-06 22:12:14 -04:00
|
|
|
user.setSetting(socket.uid, 'topicPostSort', sort, callback);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2015-01-08 13:47:15 -05:00
|
|
|
SocketUser.setCategorySort = function(socket, sort, callback) {
|
|
|
|
|
if (socket.uid) {
|
|
|
|
|
user.setSetting(socket.uid, 'categoryTopicSort', sort, callback);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2014-01-16 15:46:37 -05:00
|
|
|
SocketUser.getOnlineAnonCount = function(socket, data, callback) {
|
2014-01-16 18:10:38 -05:00
|
|
|
callback(null, module.parent.exports.getOnlineAnonCount());
|
2014-01-09 22:46:51 -05:00
|
|
|
};
|
|
|
|
|
|
2014-01-16 15:46:37 -05:00
|
|
|
SocketUser.getUnreadCount = function(socket, data, callback) {
|
2014-11-01 16:55:50 -04:00
|
|
|
if (!socket.uid) {
|
|
|
|
|
return callback(null, 0);
|
|
|
|
|
}
|
2014-03-09 14:02:30 -04:00
|
|
|
topics.getTotalUnread(socket.uid, callback);
|
2014-01-09 22:46:51 -05:00
|
|
|
};
|
|
|
|
|
|
2014-07-19 10:33:27 -04:00
|
|
|
SocketUser.getUnreadChatCount = function(socket, data, callback) {
|
2014-11-01 16:55:50 -04:00
|
|
|
if (!socket.uid) {
|
|
|
|
|
return callback(null, 0);
|
|
|
|
|
}
|
2014-07-19 10:33:27 -04:00
|
|
|
messaging.getUnreadCount(socket.uid, callback);
|
|
|
|
|
};
|
|
|
|
|
|
2015-10-20 19:19:50 -04:00
|
|
|
SocketUser.getUnreadCounts = function(socket, data, callback) {
|
|
|
|
|
if (!socket.uid) {
|
|
|
|
|
return callback(null, {});
|
|
|
|
|
}
|
|
|
|
|
async.parallel({
|
|
|
|
|
unreadTopicCount: async.apply(topics.getTotalUnread, socket.uid),
|
|
|
|
|
unreadChatCount: async.apply(messaging.getUnreadCount, socket.uid),
|
|
|
|
|
unreadNotificationCount: async.apply(user.notifications.getUnreadCount, socket.uid)
|
|
|
|
|
}, callback);
|
|
|
|
|
};
|
|
|
|
|
|
2014-01-16 15:46:37 -05:00
|
|
|
SocketUser.loadMore = function(socket, data, callback) {
|
2015-03-31 23:40:58 -04:00
|
|
|
if (!data || !data.set || parseInt(data.after, 10) < 0) {
|
2014-04-09 21:44:00 -04:00
|
|
|
return callback(new Error('[[error:invalid-data]]'));
|
2014-01-31 15:47:26 -05:00
|
|
|
}
|
2014-01-10 16:00:03 -05:00
|
|
|
|
2014-03-19 21:32:13 -04:00
|
|
|
if (!socket.uid && !!parseInt(meta.config.privateUserInfo, 10)) {
|
2014-04-09 21:44:00 -04:00
|
|
|
return callback(new Error('[[error:no-privileges]]'));
|
2014-03-19 21:32:13 -04:00
|
|
|
}
|
|
|
|
|
|
2015-01-13 17:15:10 -05:00
|
|
|
var start = parseInt(data.after, 10),
|
2015-03-31 23:40:58 -04:00
|
|
|
stop = start + 19;
|
2014-01-16 18:10:38 -05:00
|
|
|
|
2015-03-31 23:40:58 -04:00
|
|
|
async.parallel({
|
|
|
|
|
isAdmin: function(next) {
|
|
|
|
|
user.isAdministrator(socket.uid, next);
|
|
|
|
|
},
|
|
|
|
|
users: function(next) {
|
|
|
|
|
user.getUsersFromSet(data.set, socket.uid, start, stop, next);
|
|
|
|
|
}
|
|
|
|
|
}, function(err, results) {
|
2015-01-13 17:15:10 -05:00
|
|
|
if (err) {
|
2014-01-31 15:47:26 -05:00
|
|
|
return callback(err);
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 17:12:13 -05:00
|
|
|
|
2015-03-31 23:40:58 -04:00
|
|
|
if (!results.isAdmin && data.set === 'users:online') {
|
|
|
|
|
results.users = results.users.filter(function(user) {
|
|
|
|
|
return user.status !== 'offline';
|
2014-02-06 17:12:13 -05:00
|
|
|
});
|
2015-03-31 23:40:58 -04:00
|
|
|
}
|
2015-04-01 16:41:14 -04:00
|
|
|
var result = {
|
2015-03-31 23:40:58 -04:00
|
|
|
users: results.users,
|
2015-04-01 16:41:14 -04:00
|
|
|
nextStart: stop + 1,
|
|
|
|
|
};
|
|
|
|
|
result['route_' + data.set] = true;
|
|
|
|
|
callback(null, result);
|
2014-01-31 15:47:26 -05:00
|
|
|
});
|
2014-01-10 16:00:03 -05:00
|
|
|
};
|
|
|
|
|
|
2015-06-28 21:54:21 -04:00
|
|
|
SocketUser.invite = function(socket, email, callback) {
|
|
|
|
|
if (!email || !socket.uid) {
|
|
|
|
|
return callback(new Error('[[error:invald-data]]'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (meta.config.registrationType !== 'invite-only') {
|
|
|
|
|
return callback(new Error('[[error:forum-not-invite-only]]'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
user.sendInvitationEmail(socket.uid, email, callback);
|
|
|
|
|
};
|
|
|
|
|
|
2014-01-09 22:46:51 -05:00
|
|
|
|
2014-04-10 20:31:57 +01:00
|
|
|
module.exports = SocketUser;
|