| 
									
										
										
										
											2013-05-27 14:02:57 -04:00
										 |  |  | var utils = require('./../public/src/utils.js'), | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	RDB = require('./redis.js'), | 
					
						
							|  |  |  | 	crypto = require('crypto'), | 
					
						
							|  |  |  | 	emailjs = require('emailjs'), | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 	meta = require('./meta.js'), | 
					
						
							| 
									
										
										
										
											2013-08-27 14:16:56 -04:00
										 |  |  | 	emailjsServer = emailjs.server.connect(meta.config.mailer || '127.0.0.1'), | 
					
						
							| 
									
										
										
										
											2013-05-17 14:48:05 -04:00
										 |  |  | 	bcrypt = require('bcrypt'), | 
					
						
							| 
									
										
										
										
											2013-09-07 15:49:23 -04:00
										 |  |  | 	Groups = require('./groups'), | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 	notifications = require('./notifications.js'), | 
					
						
							| 
									
										
										
										
											2013-06-18 10:47:43 -04:00
										 |  |  | 	topics = require('./topics.js'), | 
					
						
							| 
									
										
										
										
											2013-08-29 13:40:04 -04:00
										 |  |  | 	async = require('async'), | 
					
						
							|  |  |  | 	userSearch = require('reds').createSearch('nodebbusersearch'); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | (function(User) { | 
					
						
							| 
									
										
										
										
											2013-07-07 16:31:37 -04:00
										 |  |  | 	User.create = function(username, password, email, callback) { | 
					
						
							|  |  |  | 		var userslug = utils.slugify(username); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 		username = username.trim(); | 
					
						
							| 
									
										
										
										
											2013-07-24 12:04:32 -04:00
										 |  |  | 		if (email !== undefined) email = email.trim(); | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		async.parallel([ | 
					
						
							|  |  |  | 			function(next) { | 
					
						
							| 
									
										
										
										
											2013-07-24 12:04:32 -04:00
										 |  |  | 				if (email !== undefined) next(!utils.isEmailValid(email) ? new Error('Invalid Email!') : null); | 
					
						
							|  |  |  | 				else next(); | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 			}, | 
					
						
							|  |  |  | 			function(next) { | 
					
						
							|  |  |  | 				next(!utils.isUserNameValid(username) ? new Error('Invalid Username!') : null); | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			function(next) { | 
					
						
							| 
									
										
										
										
											2013-07-24 12:04:32 -04:00
										 |  |  | 				if (password !== undefined) next(!utils.isPasswordValid(password) ? new Error('Invalid Password!') : null); | 
					
						
							|  |  |  | 				else next(); | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 			}, | 
					
						
							|  |  |  | 			function(next) { | 
					
						
							|  |  |  | 				User.exists(userslug, function(exists) { | 
					
						
							|  |  |  | 					next(exists ? new Error('Username taken!') : null); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			function(next) { | 
					
						
							| 
									
										
										
										
											2013-07-24 12:04:32 -04:00
										 |  |  | 				if (email !== undefined) { | 
					
						
							| 
									
										
										
										
											2013-09-11 15:24:01 -04:00
										 |  |  | 					User.isEmailAvailable(email, function(err, available) { | 
					
						
							|  |  |  | 						if(err) | 
					
						
							|  |  |  | 							return next(err); | 
					
						
							| 
									
										
										
										
											2013-07-24 12:04:32 -04:00
										 |  |  | 						next(!available ? new Error('Email taken!') : null); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} else next(); | 
					
						
							| 
									
										
										
										
											2013-07-07 16:31:37 -04:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 		], function(err, results) { | 
					
						
							| 
									
										
										
										
											2013-08-14 13:32:07 -04:00
										 |  |  | 			if (err) return callback(err, null); | 
					
						
							| 
									
										
										
										
											2013-07-07 16:31:37 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 			RDB.incr('global:next_user_id', function(err, uid) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							| 
									
										
										
										
											2013-07-07 16:31:37 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 				var gravatar = User.createGravatarURLFromEmail(email); | 
					
						
							| 
									
										
										
										
											2013-08-12 14:32:56 -04:00
										 |  |  | 				var timestamp = Date.now(); | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 				RDB.hmset('user:'+uid, { | 
					
						
							|  |  |  | 					'uid': uid, | 
					
						
							|  |  |  | 					'username' : username, | 
					
						
							|  |  |  | 					'userslug' : userslug, | 
					
						
							|  |  |  | 					'fullname': '', | 
					
						
							|  |  |  | 					'location':'', | 
					
						
							|  |  |  | 					'birthday':'', | 
					
						
							|  |  |  | 					'website':'', | 
					
						
							| 
									
										
										
										
											2013-07-24 12:04:32 -04:00
										 |  |  | 					'email' : email || '', | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 					'signature':'', | 
					
						
							| 
									
										
										
										
											2013-08-12 14:32:56 -04:00
										 |  |  | 					'joindate' : timestamp, | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 					'picture': gravatar, | 
					
						
							|  |  |  | 					'gravatarpicture' : gravatar, | 
					
						
							|  |  |  | 					'uploadedpicture': '', | 
					
						
							| 
									
										
										
										
											2013-08-16 13:03:56 -04:00
										 |  |  | 					'profileviews': 0, | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 					'reputation': 0, | 
					
						
							|  |  |  | 					'postcount': 0, | 
					
						
							|  |  |  | 					'lastposttime': 0, | 
					
						
							| 
									
										
										
										
											2013-07-25 14:30:12 -04:00
										 |  |  | 					'administrator': (uid == 1) ? 1 : 0, | 
					
						
							| 
									
										
										
										
											2013-08-14 13:32:07 -04:00
										 |  |  | 					'banned': 0, | 
					
						
							| 
									
										
										
										
											2013-07-25 14:30:12 -04:00
										 |  |  | 					'showemail': 0 | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-14 22:28:50 -04:00
										 |  |  | 				RDB.hset('username:uid', username, uid); | 
					
						
							|  |  |  | 				RDB.hset('userslug:uid', userslug, uid); | 
					
						
							| 
									
										
										
										
											2013-07-07 16:31:37 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-24 12:04:32 -04:00
										 |  |  | 				if (email !== undefined) { | 
					
						
							| 
									
										
										
										
											2013-09-14 22:28:50 -04:00
										 |  |  | 					RDB.hset('email:uid', email, uid); | 
					
						
							| 
									
										
										
										
											2013-07-24 12:04:32 -04:00
										 |  |  | 					User.sendConfirmationEmail(email); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-07-07 16:31:37 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 				RDB.incr('usercount', function(err, count) { | 
					
						
							|  |  |  | 					RDB.handle(err); | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 					if (typeof io !== 'undefined') io.sockets.emit('user.count', {count: count}); | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-07-07 16:31:37 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-12 14:32:56 -04:00
										 |  |  | 				RDB.zadd('users:joindate', timestamp, uid); | 
					
						
							|  |  |  | 				RDB.zadd('users:postcount', 0, uid); | 
					
						
							|  |  |  | 				RDB.zadd('users:reputation', 0, uid); | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-29 13:40:04 -04:00
										 |  |  | 				userSearch.index(username, uid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 				if (typeof io !== 'undefined') io.sockets.emit('user.latest', {userslug: userslug, username: username}); | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-24 12:04:32 -04:00
										 |  |  | 				if (password !== undefined) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 					User.hashPassword(password, function(err, hash) { | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 						User.setUserField(uid, 'password', hash); | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 						callback(null, uid); | 
					
						
							| 
									
										
										
										
											2013-07-22 00:24:37 -04:00
										 |  |  | 					}); | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 				} else callback(null, uid); | 
					
						
							| 
									
										
										
										
											2013-07-07 16:31:37 -04:00
										 |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-07 16:31:37 -04:00
										 |  |  | 	User.delete = function(uid, callback) { | 
					
						
							|  |  |  | 		RDB.exists('user:'+uid, function(err, exists) { | 
					
						
							|  |  |  | 			if(exists === 1) { | 
					
						
							|  |  |  | 				console.log('deleting uid ' + uid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-11 13:02:55 -04:00
										 |  |  | 				User.getUserData(uid, function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-09-14 22:28:50 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					RDB.hdel('username:uid', data['username']); | 
					
						
							|  |  |  | 					RDB.hdel('email:uid', data['email']); | 
					
						
							|  |  |  | 					RDB.hdel('userslug:uid', data['userslug']); | 
					
						
							| 
									
										
										
										
											2013-07-07 16:31:37 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					RDB.del('user:' + uid); | 
					
						
							|  |  |  | 					RDB.del('followers:' + uid); | 
					
						
							|  |  |  | 					RDB.del('following:' + uid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-12 14:32:56 -04:00
										 |  |  | 					RDB.zrem('users:joindate', uid); | 
					
						
							|  |  |  | 					RDB.zrem('users:postcount', uid); | 
					
						
							|  |  |  | 					RDB.zrem('users:reputation', uid); | 
					
						
							| 
									
										
										
										
											2013-07-07 16:31:37 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					callback(true); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				callback(false); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-08-14 13:32:07 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	User.ban = function(uid, callback) { | 
					
						
							|  |  |  | 		User.setUserField(uid, 'banned', 1, callback); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.unban = function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 		User.setUserField(uid, 'banned', 0, callback); | 
					
						
							| 
									
										
										
										
											2013-08-14 13:32:07 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	User.getUserField = function(uid, field, callback) { | 
					
						
							| 
									
										
										
										
											2013-08-23 14:57:33 -04:00
										 |  |  | 		RDB.hget('user:' + uid, field, callback); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	User.getUserFields = function(uid, fields, callback) { | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 		RDB.hmgetObject('user:' + uid, fields, callback); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.getMultipleUserFields = function(uids, fields, callback) { | 
					
						
							| 
									
										
										
										
											2013-05-16 13:13:46 -04:00
										 |  |  | 		if(uids.length === 0) { | 
					
						
							| 
									
										
										
										
											2013-09-11 12:49:54 -04:00
										 |  |  | 			return callback(null, []); | 
					
						
							| 
									
										
										
										
											2013-05-16 13:13:46 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 19:08:59 -04:00
										 |  |  | 		var returnData = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		uuids = uids.filter(function(value, index, self) { | 
					
						
							| 
									
										
										
										
											2013-07-05 15:55:58 -05:00
										 |  |  | 			return self.indexOf(value) === index; | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-11 12:49:54 -04:00
										 |  |  | 		function iterator(uid, next) { | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 			User.getUserFields(uid, fields, function(err, userData) { | 
					
						
							|  |  |  | 				if(err) | 
					
						
							| 
									
										
										
										
											2013-09-11 12:49:54 -04:00
										 |  |  | 					return next(err); | 
					
						
							| 
									
										
										
										
											2013-07-05 19:08:59 -04:00
										 |  |  | 				returnData.push(userData); | 
					
						
							| 
									
										
										
										
											2013-09-11 12:49:54 -04:00
										 |  |  | 				next(null); | 
					
						
							| 
									
										
										
										
											2013-07-05 19:08:59 -04:00
										 |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-07-05 19:08:59 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-19 15:26:29 -04:00
										 |  |  | 		async.eachSeries(uuids, iterator, function(err) { | 
					
						
							| 
									
										
										
										
											2013-09-11 12:49:54 -04:00
										 |  |  | 			callback(err, returnData); | 
					
						
							| 
									
										
										
										
											2013-07-05 19:08:59 -04:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.getUserData = function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-02 16:24:13 -04:00
										 |  |  | 		RDB.hgetall('user:' + uid, function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-09-11 13:02:55 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if(data && data['password']) { | 
					
						
							|  |  |  | 				delete data['password']; | 
					
						
							| 
									
										
										
										
											2013-07-05 15:55:58 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-09-11 13:02:55 -04:00
										 |  |  | 			callback(err, data); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-14 13:32:07 -04:00
										 |  |  | 	User.filterBannedUsers = function(users) { | 
					
						
							|  |  |  | 		return users.filter(function(user) { | 
					
						
							|  |  |  | 			return (!user.banned || user.banned === '0'); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 	User.updateProfile = function(uid, data, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-05 15:55:58 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 14:48:05 -04:00
										 |  |  | 		var fields = ['email', 'fullname', 'website', 'location', 'birthday', 'signature']; | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 		var returnData = {success:false}; | 
					
						
							| 
									
										
										
										
											2013-07-05 15:55:58 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 		function isSignatureValid(next) { | 
					
						
							|  |  |  | 			if(data['signature'] !== undefined && data['signature'].length > 150) { | 
					
						
							|  |  |  | 				next({error:'Signature can\'t be longer than 150 characters!'}, false); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 				next(null, true); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 		function isEmailAvailable(next) { | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 			if(!data['email']) { | 
					
						
							|  |  |  | 				return next(null, true); | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-26 11:58:52 -04:00
										 |  |  | 			User.getUserField(uid, 'email', function(err, email) { | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 				if(email !== data['email']) { | 
					
						
							| 
									
										
										
										
											2013-09-11 15:24:01 -04:00
										 |  |  | 					User.isEmailAvailable(data['email'], function(err, available) { | 
					
						
							|  |  |  | 						if(err) | 
					
						
							|  |  |  | 							return next(err, null); | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 						if(!available) { | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 							next({error:'Email not available!'}, false); | 
					
						
							|  |  |  | 						} else { | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 							next(null, true); | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 						} | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 					next(null, true); | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-05-21 13:44:53 -04:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 		async.series([isSignatureValid, isEmailAvailable], function(err, results) { | 
					
						
							|  |  |  | 			if(err) { | 
					
						
							| 
									
										
										
										
											2013-09-11 13:53:42 -04:00
										 |  |  | 				callback(err, returnData); | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 				async.each(fields, updateField, function(err) { | 
					
						
							|  |  |  | 					if(err) { | 
					
						
							| 
									
										
										
										
											2013-09-11 13:53:42 -04:00
										 |  |  | 						callback(err, returnData); | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 					} else { | 
					
						
							|  |  |  | 						returnData.success = true; | 
					
						
							| 
									
										
										
										
											2013-09-11 13:53:42 -04:00
										 |  |  | 						callback(null, returnData); | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-07-05 15:55:58 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-11 13:53:42 -04:00
										 |  |  | 		function updateField(field, next) { | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 			if(data[field] !== undefined) { | 
					
						
							|  |  |  | 				if(field === 'email') { | 
					
						
							|  |  |  | 					var gravatarpicture = User.createGravatarURLFromEmail(data[field]); | 
					
						
							|  |  |  | 					User.setUserField(uid, 'gravatarpicture', gravatarpicture); | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 					User.getUserFields(uid, ['email', 'picture', 'uploadedpicture'], function(err, userData) { | 
					
						
							|  |  |  | 						if(err) | 
					
						
							| 
									
										
										
										
											2013-09-11 13:53:42 -04:00
										 |  |  | 							return next(err); | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-14 22:28:50 -04:00
										 |  |  | 						RDB.hdel('email:uid', userData['email']); | 
					
						
							|  |  |  | 						RDB.hset('email:uid', data['email'], uid); | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 						User.setUserField(uid, field, data[field]); | 
					
						
							|  |  |  | 						if(userData.picture !== userData.uploadedpicture) { | 
					
						
							|  |  |  | 							returnData.picture = gravatarpicture; | 
					
						
							|  |  |  | 							User.setUserField(uid, 'picture', gravatarpicture); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						returnData.gravatarpicture = gravatarpicture; | 
					
						
							| 
									
										
										
										
											2013-09-11 13:53:42 -04:00
										 |  |  | 						next(null); | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 					}); | 
					
						
							|  |  |  | 					return; | 
					
						
							|  |  |  | 				} else if(field === 'signature') { | 
					
						
							|  |  |  | 					data[field] = utils.strip_tags(data[field]); | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 				User.setUserField(uid, field, data[field]); | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-11 13:53:42 -04:00
										 |  |  | 				next(null); | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-09-11 13:53:42 -04:00
										 |  |  | 				next(null); | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 	User.isEmailAvailable = function(email, callback) { | 
					
						
							| 
									
										
										
										
											2013-09-14 22:28:50 -04:00
										 |  |  | 		RDB.hexists('email:uid', email, function(err, exists) { | 
					
						
							| 
									
										
										
										
											2013-09-12 13:37:03 +00:00
										 |  |  | 			callback(err, !exists); | 
					
						
							| 
									
										
										
										
											2013-07-08 14:14:18 -04:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-30 18:30:43 -04:00
										 |  |  | 	User.changePassword = function(uid, data, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-08 12:10:21 -04:00
										 |  |  | 		if(!utils.isPasswordValid(data.newPassword)) { | 
					
						
							| 
									
										
										
										
											2013-09-11 15:24:01 -04:00
										 |  |  | 			return callback({error:'Invalid password!'}); | 
					
						
							| 
									
										
										
										
											2013-07-08 12:10:21 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-26 11:58:52 -04:00
										 |  |  | 		User.getUserField(uid, 'password', function(err, user_password) { | 
					
						
							| 
									
										
										
										
											2013-07-08 12:10:21 -04:00
										 |  |  | 			bcrypt.compare(data.currentPassword, user_password, function(err, res) { | 
					
						
							|  |  |  | 				if(err) { | 
					
						
							| 
									
										
										
										
											2013-09-11 15:24:01 -04:00
										 |  |  | 					return callback(err); | 
					
						
							| 
									
										
										
										
											2013-07-08 12:10:21 -04:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (res) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 					User.hashPassword(data.newPassword, function(err, hash) { | 
					
						
							| 
									
										
										
										
											2013-07-08 12:10:21 -04:00
										 |  |  | 						User.setUserField(uid, 'password', hash); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-11 15:24:01 -04:00
										 |  |  | 						callback(null); | 
					
						
							| 
									
										
										
										
											2013-07-08 12:10:21 -04:00
										 |  |  | 					}); | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2013-09-11 15:24:01 -04:00
										 |  |  | 					callback({error:'Your current password is not correct!'}); | 
					
						
							| 
									
										
										
										
											2013-07-08 12:10:21 -04:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-14 13:32:07 -04:00
										 |  |  | 	User.setUserField = function(uid, field, value, callback) { | 
					
						
							|  |  |  | 		RDB.hset('user:' + uid, field, value, callback); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-24 13:12:56 -04:00
										 |  |  | 	User.setUserFields = function(uid, data) { | 
					
						
							|  |  |  | 		RDB.hmset('user:' + uid, data); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-12 14:32:56 -04:00
										 |  |  | 	User.incrementUserFieldBy = function(uid, field, value, callback) { | 
					
						
							|  |  |  | 		RDB.hincrby('user:' + uid, field, value, callback); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-12 14:32:56 -04:00
										 |  |  | 	User.decrementUserFieldBy = function(uid, field, value, callback) { | 
					
						
							|  |  |  | 		RDB.hincrby('user:' + uid, field, -value, callback); | 
					
						
							| 
									
										
										
										
											2013-07-19 10:59:24 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-12 14:32:56 -04:00
										 |  |  | 	User.getUsers = function(set, start, stop, callback) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		var data = []; | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-12 14:32:56 -04:00
										 |  |  | 		RDB.zrevrange(set, start, stop, function(err, uids) { | 
					
						
							|  |  |  | 			if(err) { | 
					
						
							|  |  |  | 				return callback(err, null); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 23:46:32 -04:00
										 |  |  | 			function iterator(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-09-11 13:02:55 -04:00
										 |  |  | 				User.getUserData(uid, function(err, userData) { | 
					
						
							| 
									
										
										
										
											2013-07-24 15:18:31 -04:00
										 |  |  | 					if(userData) { | 
					
						
							|  |  |  | 						data.push(userData); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2013-07-05 23:46:32 -04:00
										 |  |  | 					callback(null); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 				}); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-12 14:32:56 -04:00
										 |  |  | 			async.eachSeries(uids, iterator, function(err) { | 
					
						
							|  |  |  | 				callback(err, data); | 
					
						
							| 
									
										
										
										
											2013-07-05 23:46:32 -04:00
										 |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.createGravatarURLFromEmail = function(email) { | 
					
						
							| 
									
										
										
										
											2013-07-12 16:23:35 -04:00
										 |  |  | 		var options = { | 
					
						
							|  |  |  | 			size: '128', | 
					
						
							|  |  |  | 			default: 'identicon', | 
					
						
							|  |  |  | 			rating: 'pg' | 
					
						
							|  |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 15:55:58 -05:00
										 |  |  | 		if (!email) { | 
					
						
							| 
									
										
										
										
											2013-07-12 16:23:35 -04:00
										 |  |  | 			email = ''; | 
					
						
							|  |  |  | 			options.forcedefault = 'y'; | 
					
						
							| 
									
										
										
										
											2013-07-05 15:55:58 -05:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-07-12 16:23:35 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-19 13:31:04 -04:00
										 |  |  | 		return require('gravatar').url(email, options, https=nconf.get('https')); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.hashPassword = function(password, callback) { | 
					
						
							|  |  |  | 		if(!password) { | 
					
						
							|  |  |  | 			callback(password); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-07-05 15:55:58 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 		bcrypt.genSalt(nconf.get('bcrypt_rounds'), function(err, salt) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 			bcrypt.hash(password, salt, callback); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-29 13:40:04 -04:00
										 |  |  | 	User.reIndexAll = function(callback) { | 
					
						
							|  |  |  | 		User.getUsers('users:joindate', 0, -1, function(err, usersData) { | 
					
						
							|  |  |  | 			if(err) { | 
					
						
							|  |  |  | 				return callback(err, null); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			function reIndexUser(uid, username) { | 
					
						
							|  |  |  | 				userSearch.remove(uid, function(){ | 
					
						
							|  |  |  | 					userSearch.index(username, uid); | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			for(var i=0; i<usersData.length; ++i) { | 
					
						
							|  |  |  | 				reIndexUser(usersData[i].uid, usersData[i].username); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			callback(null, 1); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-26 12:32:30 -04:00
										 |  |  | 	User.search = function(username, callback) { | 
					
						
							| 
									
										
										
										
											2013-06-26 15:19:18 -04:00
										 |  |  | 		if(!username) { | 
					
						
							|  |  |  | 			callback([]); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-29 13:40:04 -04:00
										 |  |  | 		userSearch.query(query = username).type('or').end(function(err, uids) { | 
					
						
							|  |  |  | 			if(err) { | 
					
						
							| 
									
										
										
										
											2013-06-26 12:32:30 -04:00
										 |  |  | 				console.log(err); | 
					
						
							| 
									
										
										
										
											2013-08-29 13:40:04 -04:00
										 |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if(uids && uids.length) { | 
					
						
							|  |  |  | 				User.getDataForUsers(uids, function(userdata) { | 
					
						
							|  |  |  | 					callback(userdata); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				callback([]); | 
					
						
							| 
									
										
										
										
											2013-07-05 15:55:58 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-06-26 12:32:30 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-02 16:24:13 -04:00
										 |  |  | 	User.onNewPostMade = function(uid, tid, pid, timestamp) { | 
					
						
							| 
									
										
										
										
											2013-07-10 11:51:15 -04:00
										 |  |  | 		User.addPostIdToUser(uid, pid); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-12 14:32:56 -04:00
										 |  |  | 		User.incrementUserFieldBy(uid, 'postcount', 1, function(err, newpostcount) { | 
					
						
							|  |  |  | 			RDB.zadd('users:postcount', newpostcount, uid); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-02 16:24:13 -04:00
										 |  |  | 		User.setUserField(uid, 'lastposttime', timestamp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		User.sendPostNotificationToFollowers(uid, tid, pid); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.addPostIdToUser = function(uid, pid) { | 
					
						
							|  |  |  | 		RDB.lpush('uid:' + uid + ':posts', pid); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.addTopicIdToUser = function(uid, tid) { | 
					
						
							|  |  |  | 		RDB.lpush('uid:' + uid + ':topics', tid); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.getPostIds = function(uid, start, end, callback) { | 
					
						
							|  |  |  | 		RDB.lrange('uid:' + uid + ':posts', start, end, function(err, pids) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			if(!err) { | 
					
						
							| 
									
										
										
										
											2013-07-02 16:24:13 -04:00
										 |  |  | 				if(pids && pids.length) | 
					
						
							|  |  |  | 					callback(pids); | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					callback([]); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-07-02 16:24:13 -04:00
										 |  |  | 				console.log(err); | 
					
						
							|  |  |  | 				callback([]); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	User.sendConfirmationEmail = function (email) { | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 		if (meta.config['email:host'] && meta.config['email:port'] && meta.config['email:from']) { | 
					
						
							| 
									
										
										
										
											2013-05-28 11:50:09 -04:00
										 |  |  | 			var confirm_code = utils.generateUUID(), | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 				confirm_link = nconf.get('url') + 'confirm/' + confirm_code, | 
					
						
							| 
									
										
										
										
											2013-05-28 11:50:09 -04:00
										 |  |  | 				confirm_email = global.templates['emails/header'] + global.templates['emails/email_confirm'].parse({'CONFIRM_LINK': confirm_link}) + global.templates['emails/footer'], | 
					
						
							|  |  |  | 				confirm_email_plaintext = global.templates['emails/email_confirm_plaintext'].parse({ 'CONFIRM_LINK': confirm_link }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Email confirmation code
 | 
					
						
							|  |  |  | 			var expiry_time = 60*60*2,	// Expire after 2 hours
 | 
					
						
							|  |  |  | 				email_key = 'email:' + email + ':confirm', | 
					
						
							|  |  |  | 				confirm_key = 'confirm:' + confirm_code + ':email'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			RDB.set(email_key, confirm_code); | 
					
						
							|  |  |  | 			RDB.expire(email_key, expiry_time); | 
					
						
							|  |  |  | 			RDB.set(confirm_key, email); | 
					
						
							|  |  |  | 			RDB.expire(confirm_key, expiry_time); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 			// Send intro email w/ confirm code
 | 
					
						
							| 
									
										
										
										
											2013-05-28 11:50:09 -04:00
										 |  |  | 			var message = emailjs.message.create({ | 
					
						
							|  |  |  | 				text: confirm_email_plaintext, | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 				from: meta.config.mailer.from, | 
					
						
							| 
									
										
										
										
											2013-05-28 11:50:09 -04:00
										 |  |  | 				to: email, | 
					
						
							|  |  |  | 				subject: '[NodeBB] Registration Email Verification', | 
					
						
							|  |  |  | 				attachment: [ | 
					
						
							|  |  |  | 					{ | 
					
						
							|  |  |  | 						data: confirm_email, | 
					
						
							|  |  |  | 						alternative: true | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				] | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-28 11:50:09 -04:00
										 |  |  | 			emailjsServer.send(message, function(err, success) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 				if (err) { | 
					
						
							| 
									
										
										
										
											2013-05-28 11:50:09 -04:00
										 |  |  | 					console.log(err); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-05-28 11:50:09 -04:00
										 |  |  | 			}); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 	User.follow = function(uid, followid, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 		RDB.sadd('following:' + uid, followid, function(err, data) { | 
					
						
							|  |  |  | 			if(!err) { | 
					
						
							|  |  |  | 				RDB.sadd('followers:' + followid, uid, function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-07-10 11:20:31 -04:00
										 |  |  | 					if(!err) { | 
					
						
							|  |  |  | 						callback(true); | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						console.log(err); | 
					
						
							|  |  |  | 						callback(false); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-05-14 16:44:43 -04:00
										 |  |  | 				console.log(err); | 
					
						
							| 
									
										
										
										
											2013-07-10 11:20:31 -04:00
										 |  |  | 				callback(false); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-05-14 16:44:43 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 	User.unfollow = function(uid, unfollowid, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 		RDB.srem('following:' + uid, unfollowid, function(err, data){ | 
					
						
							|  |  |  | 			if(!err) { | 
					
						
							|  |  |  | 				RDB.srem('followers:' + unfollowid, uid, function(err, data){ | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 					callback(data); | 
					
						
							|  |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 				console.log(err); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.getFollowing = function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 		RDB.smembers('following:' + uid, function(err, userIds) { | 
					
						
							|  |  |  | 			if(!err) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 				User.getDataForUsers(userIds, callback); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} else { | 
					
						
							|  |  |  | 				console.log(err); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-14 16:44:43 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 	User.getFollowers = function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 		RDB.smembers('followers:' + uid, function(err, userIds) { | 
					
						
							|  |  |  | 			if(!err) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 				User.getDataForUsers(userIds, callback); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 				console.log(err); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-15 11:46:41 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:46:13 -04:00
										 |  |  | 	User.getFollowingCount = function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 		RDB.smembers('following:' + uid, function(err, userIds) { | 
					
						
							|  |  |  | 			if(!err) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:46:13 -04:00
										 |  |  | 				callback(userIds.length); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 				console.log(err); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-06-17 15:46:13 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:46:13 -04:00
										 |  |  | 	User.getFollowerCount = function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 		RDB.smembers('followers:' + uid, function(err, userIds) { | 
					
						
							|  |  |  | 			// @note why are error-handling styles being mixed?
 | 
					
						
							|  |  |  | 			// either go with not-error-dosomething-else-dosomethingelse, or
 | 
					
						
							|  |  |  | 			// go with if-error-dosomething-return
 | 
					
						
							|  |  |  | 			// also why is console.log(err) being used when below we're using RDB.handle()?
 | 
					
						
							|  |  |  | 			if(!err) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:46:13 -04:00
										 |  |  | 				callback(userIds.length); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} else { | 
					
						
							|  |  |  | 				console.log(err); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-06-17 15:46:13 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 19:08:59 -04:00
										 |  |  | 	User.getDataForUsers = function(uids, callback) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 		var returnData = []; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 19:08:59 -04:00
										 |  |  | 		if(!uids || !Array.isArray(uids) || uids.length === 0) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 			callback(returnData); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 19:11:27 -04:00
										 |  |  | 		function iterator(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-09-11 13:02:55 -04:00
										 |  |  | 			User.getUserData(uid, function(err, userData) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 				returnData.push(userData); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 19:08:59 -04:00
										 |  |  | 				callback(null); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-19 15:26:29 -04:00
										 |  |  | 		async.eachSeries(uids, iterator, function(err) { | 
					
						
							| 
									
										
										
										
											2013-07-05 19:08:59 -04:00
										 |  |  | 			callback(returnData); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-18 10:01:42 -04:00
										 |  |  | 	User.sendPostNotificationToFollowers = function(uid, tid, pid) { | 
					
						
							| 
									
										
										
										
											2013-08-26 11:58:52 -04:00
										 |  |  | 		User.getUserField(uid, 'username', function(err, username) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			RDB.smembers('followers:' + uid, function(err, followers) { | 
					
						
							| 
									
										
										
										
											2013-08-11 16:12:20 -04:00
										 |  |  | 				topics.getTopicField(tid, 'slug', function(err, slug) { | 
					
						
							| 
									
										
										
										
											2013-08-27 13:04:18 -04:00
										 |  |  | 					var message = '<strong>' + username + '</strong> made a new post'; | 
					
						
							| 
									
										
										
										
											2013-06-18 10:47:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-11 14:41:08 -04:00
										 |  |  | 					notifications.create(message, 5, nconf.get('relative_path') + '/topic/' + slug + '#' + pid, 'topic:'+ tid, function(nid) { | 
					
						
							| 
									
										
										
										
											2013-06-18 10:47:43 -04:00
										 |  |  | 		 				notifications.push(nid, followers); | 
					
						
							|  |  |  | 					}); | 
					
						
							| 
									
										
										
										
											2013-06-18 10:01:42 -04:00
										 |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-15 11:46:41 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 	User.isFollowing = function(uid, theirid, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 		RDB.sismember('following:' + uid, theirid, function(err, data) { | 
					
						
							|  |  |  | 			if(!err) { | 
					
						
							| 
									
										
										
										
											2013-05-15 14:30:03 -04:00
										 |  |  | 				callback(data === 1); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-05-15 14:30:03 -04:00
										 |  |  | 				console.log(err); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-15 14:30:03 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 16:16:50 -04:00
										 |  |  | 	User.exists = function(userslug, callback) { | 
					
						
							|  |  |  | 		User.get_uid_by_userslug(userslug, function(exists) { | 
					
						
							| 
									
										
										
										
											2013-07-05 19:08:59 -04:00
										 |  |  | 			callback(!!exists); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	User.count = function(socket) { | 
					
						
							|  |  |  | 		RDB.get('usercount', function(err, count) { | 
					
						
							| 
									
										
										
										
											2013-07-05 23:46:32 -04:00
										 |  |  | 			RDB.handle(err); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			socket.emit('user.count', { count: count ? count : 0 }); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	User.latest = function(socket) { | 
					
						
							| 
									
										
										
										
											2013-08-12 14:32:56 -04:00
										 |  |  | 		RDB.zrevrange('users:joindate', 0, 0, function(err, uid) { | 
					
						
							| 
									
										
										
										
											2013-07-05 23:46:32 -04:00
										 |  |  | 			RDB.handle(err); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 			User.getUserFields(uid, ['username', 'userslug'], function(err, userData) { | 
					
						
							|  |  |  | 				if(!err && userData) | 
					
						
							|  |  |  | 					socket.emit('user.latest', {userslug: userData.userslug, username: userData.username}); | 
					
						
							| 
									
										
										
										
											2013-06-26 23:31:41 -04:00
										 |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.get_uid_by_username = function(username, callback) { | 
					
						
							| 
									
										
										
										
											2013-09-14 22:28:50 -04:00
										 |  |  | 		RDB.hget('username::uid', username, function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			if (err) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			callback(data); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 14:33:53 -04:00
										 |  |  | 	User.get_uid_by_userslug = function(userslug, callback) { | 
					
						
							| 
									
										
										
										
											2013-09-14 22:28:50 -04:00
										 |  |  | 		RDB.hget('userslug:uid', userslug, function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			if (err) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-06-24 14:33:53 -04:00
										 |  |  | 			callback(data); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	User.get_usernames_by_uids = function(uids, callback) { | 
					
						
							|  |  |  | 		var usernames = []; | 
					
						
							| 
									
										
										
										
											2013-05-17 13:28:34 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 		if (!Array.isArray(uids)) { | 
					
						
							|  |  |  | 			return callback([]); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 19:11:27 -04:00
										 |  |  | 		function iterator(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-08-26 11:58:52 -04:00
										 |  |  | 			User.getUserField(uid, 'username', function(err, username) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 				usernames.push(username); | 
					
						
							| 
									
										
										
										
											2013-07-05 19:11:27 -04:00
										 |  |  | 				callback(null); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			}); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-07-05 19:11:27 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-19 15:26:29 -04:00
										 |  |  | 		async.eachSeries(uids, iterator, function(err) { | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 			callback(usernames); | 
					
						
							| 
									
										
										
										
											2013-07-05 19:11:27 -04:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-06-24 14:33:53 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.get_userslugs_by_uids = function(uids, callback) { | 
					
						
							|  |  |  | 		var userslugs = []; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 		if (!Array.isArray(uids)) { | 
					
						
							|  |  |  | 			return callback([]); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 18:19:55 -04:00
										 |  |  | 		function iterator(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-08-26 11:58:52 -04:00
										 |  |  | 			User.getUserField(uid, 'userslug', function(err, userslug) { | 
					
						
							| 
									
										
										
										
											2013-07-05 18:19:55 -04:00
										 |  |  | 				userslugs.push(userslug); | 
					
						
							|  |  |  | 				callback(null); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-19 15:26:29 -04:00
										 |  |  | 		async.eachSeries(uids, iterator, function(err) { | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 			callback(userslugs); | 
					
						
							| 
									
										
										
										
											2013-07-05 18:19:55 -04:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-06-24 14:33:53 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	User.get_uid_by_email = function(email, callback) { | 
					
						
							| 
									
										
										
										
											2013-09-14 22:28:50 -04:00
										 |  |  | 		RDB.hget('email:uid', email, function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			if (err) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			callback(data); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.get_uid_by_session = function(session, callback) { | 
					
						
							|  |  |  | 		RDB.get('sess:' + session + ':uid', function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			if (err) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			callback(data); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.get_uid_by_twitter_id = function(twid, callback) { | 
					
						
							| 
									
										
										
										
											2013-05-24 12:12:59 -04:00
										 |  |  | 		RDB.hget('twid:uid', twid, function(err, uid) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			if (err) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			callback(uid); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.get_uid_by_google_id = function(gplusid, callback) { | 
					
						
							| 
									
										
										
										
											2013-05-24 12:12:59 -04:00
										 |  |  | 		RDB.hget('gplusid:uid', gplusid, function(err, uid) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			if (err) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			callback(uid); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.get_uid_by_fbid = function(fbid, callback) { | 
					
						
							| 
									
										
										
										
											2013-05-24 12:12:59 -04:00
										 |  |  | 		RDB.hget('fbid:uid', fbid, function(err, uid) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			if (err) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			callback(uid); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.session_ping = function(sessionID, uid) { | 
					
						
							|  |  |  | 		// Start, replace, or extend a session
 | 
					
						
							|  |  |  | 		RDB.get('sess:' + sessionID, function(err, session) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			if (err) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-09 05:48:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			var expiry = 60*60*24*14, // Login valid for two weeks
 | 
					
						
							|  |  |  | 				sess_key = 'sess:' + sessionID + ':uid', | 
					
						
							|  |  |  | 				uid_key = 'uid:' + uid + ':session'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			RDB.set(sess_key, uid); | 
					
						
							|  |  |  | 			RDB.expire(sess_key, expiry); | 
					
						
							|  |  |  | 			RDB.set(uid_key, sessionID); | 
					
						
							|  |  |  | 			RDB.expire(uid_key, expiry); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-16 12:49:39 -04:00
										 |  |  | 	User.isModerator = function(uid, cid, callback) { | 
					
						
							| 
									
										
										
										
											2013-05-16 15:55:17 -04:00
										 |  |  | 		RDB.sismember('cid:' + cid + ':moderators', uid, function(err, exists) { | 
					
						
							| 
									
										
										
										
											2013-07-20 15:23:04 -04:00
										 |  |  | 			RDB.handle(err); | 
					
						
							| 
									
										
										
										
											2013-05-17 21:14:58 -04:00
										 |  |  | 			callback(!!exists); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.isAdministrator = function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-09-07 15:49:23 -04:00
										 |  |  | 		Groups.getGidFromName('Administrators', function(err, gid) { | 
					
						
							|  |  |  | 			Groups.isMember(uid, gid, function(err, isAdmin) { | 
					
						
							| 
									
										
										
										
											2013-09-09 14:31:17 -04:00
										 |  |  | 				callback(!!isAdmin); | 
					
						
							| 
									
										
										
										
											2013-09-07 15:49:23 -04:00
										 |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-06-20 14:45:38 -04:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-06-20 14:45:38 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	User.reset = { | 
					
						
							|  |  |  | 		validate: function(socket, code, callback) { | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 			if (typeof callback !== 'function') { | 
					
						
							|  |  |  | 				callback = null; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			RDB.get('reset:' + code + ':uid', function(err, uid) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 				if (err) { | 
					
						
							|  |  |  | 					RDB.handle(err); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				if (uid !== null) { | 
					
						
							|  |  |  | 					RDB.get('reset:' + code + ':expiry', function(err, expiry) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 						if (err) { | 
					
						
							|  |  |  | 							RDB.handle(err); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 						if (expiry >= +Date.now()/1000|0) { | 
					
						
							|  |  |  | 							if (!callback) { | 
					
						
							|  |  |  | 								socket.emit('user:reset.valid', { valid: true }); | 
					
						
							|  |  |  | 							} else { | 
					
						
							|  |  |  | 								callback(true); | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 						} else { | 
					
						
							|  |  |  | 							// Expired, delete from db
 | 
					
						
							|  |  |  | 							RDB.del('reset:' + code + ':uid'); | 
					
						
							|  |  |  | 							RDB.del('reset:' + code + ':expiry'); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 							if (!callback) { | 
					
						
							|  |  |  | 								socket.emit('user:reset.valid', { valid: false }); | 
					
						
							|  |  |  | 							} else { | 
					
						
							|  |  |  | 								callback(false); | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 						} | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 					if (!callback) { | 
					
						
							|  |  |  | 						socket.emit('user:reset.valid', { valid: false }); | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						callback(false); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		send: function(socket, email) { | 
					
						
							|  |  |  | 			User.get_uid_by_email(email, function(uid) { | 
					
						
							|  |  |  | 				if (uid !== null) { | 
					
						
							|  |  |  | 					// Generate a new reset code
 | 
					
						
							|  |  |  | 					var reset_code = utils.generateUUID(); | 
					
						
							|  |  |  | 					RDB.set('reset:' + reset_code + ':uid', uid); | 
					
						
							|  |  |  | 					RDB.set('reset:' + reset_code + ':expiry', (60*60)+new Date()/1000|0);	// Active for one hour
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-19 13:31:04 -04:00
										 |  |  | 					var reset_link = nconf.get('url') + 'reset/' + reset_code, | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 						reset_email = global.templates['emails/reset'].parse({'RESET_LINK': reset_link}), | 
					
						
							|  |  |  | 						reset_email_plaintext = global.templates['emails/reset_plaintext'].parse({ 'RESET_LINK': reset_link }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					var message = emailjs.message.create({ | 
					
						
							|  |  |  | 						text: reset_email_plaintext, | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 						from: meta.config.mailer?meta.config.mailer.from:'localhost@example.org', | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 						to: email, | 
					
						
							|  |  |  | 						subject: 'Password Reset Requested', | 
					
						
							|  |  |  | 						attachment: [ | 
					
						
							|  |  |  | 							{ | 
					
						
							|  |  |  | 								data: reset_email, | 
					
						
							|  |  |  | 								alternative: true | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						] | 
					
						
							|  |  |  | 					}); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:37:45 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 					emailjsServer.send(message, function(err, success) { | 
					
						
							|  |  |  | 						if (err === null) { | 
					
						
							|  |  |  | 							socket.emit('user.send_reset', { | 
					
						
							|  |  |  | 								status: "ok", | 
					
						
							|  |  |  | 								message: "code-sent", | 
					
						
							|  |  |  | 								email: email | 
					
						
							|  |  |  | 							}); | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							socket.emit('user.send_reset', { | 
					
						
							|  |  |  | 								status: "error", | 
					
						
							|  |  |  | 								message: "send-failed" | 
					
						
							|  |  |  | 							}); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 							// @todo handle error properly
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 							throw new Error(err); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					socket.emit('user.send_reset', { | 
					
						
							|  |  |  | 						status: "error", | 
					
						
							|  |  |  | 						message: "invalid-email", | 
					
						
							|  |  |  | 						email: email | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		commit: function(socket, code, password) { | 
					
						
							| 
									
										
										
										
											2013-08-19 13:31:04 -04:00
										 |  |  | 			this.validate(socket, code, function(validated) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 				if (validated) { | 
					
						
							|  |  |  | 					RDB.get('reset:' + code + ':uid', function(err, uid) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 						if (err) { | 
					
						
							|  |  |  | 							RDB.handle(err); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 						User.hashPassword(password, function(err, hash) { | 
					
						
							| 
									
										
										
										
											2013-08-19 13:31:04 -04:00
										 |  |  | 							User.setUserField(uid, 'password', hash); | 
					
						
							|  |  |  | 						}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 						RDB.del('reset:' + code + ':uid'); | 
					
						
							|  |  |  | 						RDB.del('reset:' + code + ':expiry'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						socket.emit('user:reset.commit', { status: 'ok' }); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.email = { | 
					
						
							|  |  |  | 		exists: function(socket, email, callback) { | 
					
						
							|  |  |  | 			User.get_uid_by_email(email, function(exists) { | 
					
						
							|  |  |  | 				exists = !!exists; | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 				if (typeof callback !== 'function') { | 
					
						
							|  |  |  | 					socket.emit('user.email.exists', { exists: exists }); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					callback(exists); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			}); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		confirm: function(code, callback) { | 
					
						
							|  |  |  | 			RDB.get('confirm:' + code + ':email', function(err, email) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 				if (err) { | 
					
						
							|  |  |  | 					RDB.handle(err); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				if (email !== null) { | 
					
						
							|  |  |  | 					RDB.set('email:' + email + ':confirm', true); | 
					
						
							|  |  |  | 					RDB.del('confirm:' + code + ':email'); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 					callback({ status: 'ok' }); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 					callback({ status: 'not_ok' }); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-05-21 17:02:04 -04:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 	User.notifications = { | 
					
						
							|  |  |  | 		get: function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-22 15:31:28 -04:00
										 |  |  | 			var	maxNotifs = 15; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 			async.parallel({ | 
					
						
							|  |  |  | 				unread: function(next) { | 
					
						
							| 
									
										
										
										
											2013-06-24 16:02:39 -04:00
										 |  |  | 					RDB.zrevrangebyscore('uid:' + uid + ':notifications:unread', 10, 0, function(err, nids) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 						// @todo handle err
 | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 						var unread = []; | 
					
						
							| 
									
										
										
										
											2013-07-22 15:31:28 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						// Cap the number of notifications returned
 | 
					
						
							|  |  |  | 						if (nids.length > maxNotifs) nids.length = maxNotifs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 						if (nids && nids.length > 0) { | 
					
						
							|  |  |  | 							async.eachSeries(nids, function(nid, next) { | 
					
						
							|  |  |  | 								notifications.get(nid, function(notif_data) { | 
					
						
							|  |  |  | 									unread.push(notif_data); | 
					
						
							|  |  |  | 									next(); | 
					
						
							|  |  |  | 								}); | 
					
						
							|  |  |  | 							}, function(err) { | 
					
						
							|  |  |  | 								next(null, unread); | 
					
						
							|  |  |  | 							}); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 						} else { | 
					
						
							|  |  |  | 							next(null, unread); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 					}); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				read: function(next) { | 
					
						
							| 
									
										
										
										
											2013-06-24 16:02:39 -04:00
										 |  |  | 					RDB.zrevrangebyscore('uid:' + uid + ':notifications:read', 10, 0, function(err, nids) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 						// @todo handle err
 | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 						var read = []; | 
					
						
							| 
									
										
										
										
											2013-07-22 15:31:28 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						// Cap the number of notifications returned
 | 
					
						
							|  |  |  | 						if (nids.length > maxNotifs) nids.length = maxNotifs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 						if (nids && nids.length > 0) { | 
					
						
							|  |  |  | 							async.eachSeries(nids, function(nid, next) { | 
					
						
							|  |  |  | 								notifications.get(nid, function(notif_data) { | 
					
						
							|  |  |  | 									read.push(notif_data); | 
					
						
							|  |  |  | 									next(); | 
					
						
							|  |  |  | 								}); | 
					
						
							|  |  |  | 							}, function(err) { | 
					
						
							|  |  |  | 								next(null, read); | 
					
						
							|  |  |  | 							}); | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 						} else { | 
					
						
							|  |  |  | 							next(null, read); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 					}); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}, function(err, notifications) { | 
					
						
							| 
									
										
										
										
											2013-06-24 16:02:39 -04:00
										 |  |  | 				// While maintaining score sorting, sort by time
 | 
					
						
							| 
									
										
										
										
											2013-07-22 15:31:28 -04:00
										 |  |  | 				var	readCount = notifications.read.length, | 
					
						
							|  |  |  | 					unreadCount = notifications.unread.length; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 16:02:39 -04:00
										 |  |  | 				notifications.read.sort(function(a, b) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 					if (a.score === b.score) { | 
					
						
							|  |  |  | 						return (a.datetime - b.datetime) > 0 ? -1 : 1; | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2013-06-24 16:02:39 -04:00
										 |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-07-22 15:31:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 16:02:39 -04:00
										 |  |  | 				notifications.unread.sort(function(a, b) { | 
					
						
							| 
									
										
										
										
											2013-07-05 16:25:51 -05:00
										 |  |  | 					if (a.score === b.score) { | 
					
						
							|  |  |  | 						return (a.datetime - b.datetime) > 0 ? -1 : 1; | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2013-06-24 16:02:39 -04:00
										 |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-07-22 15:31:28 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				// Limit the number of notifications to `maxNotifs`, prioritising unread notifications
 | 
					
						
							|  |  |  | 				if (notifications.read.length + notifications.unread.length > maxNotifs) { | 
					
						
							|  |  |  | 					notifications.read.length = maxNotifs - notifications.unread.length; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 				callback(notifications); | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-05-23 12:54:57 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2013-07-24 15:19:26 -04:00
										 |  |  | 		getUnreadCount: function(uid, callback) { | 
					
						
							|  |  |  | 			RDB.zcount('uid:' + uid + ':notifications:unread', 0, 10, callback); | 
					
						
							| 
									
										
										
										
											2013-09-11 15:41:20 -04:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		getUnreadByUniqueId: function(uid, uniqueId, callback) { | 
					
						
							|  |  |  | 			RDB.zrange('uid:' + uid + ':notifications:unread', 0, -1, function(err, nids) { | 
					
						
							|  |  |  | 				async.filter(nids, function(nid, next) { | 
					
						
							|  |  |  | 					notifications.get(nid, function(notifObj) { | 
					
						
							|  |  |  | 						if (notifObj.uniqueId === uniqueId) next(true); | 
					
						
							|  |  |  | 						else next(false); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				}, function(nids) { | 
					
						
							|  |  |  | 					callback(null, nids); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-07-05 15:55:58 -05:00
										 |  |  | }(exports)); |