| 
									
										
										
										
											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'), | 
					
						
							|  |  |  | 	emailjsServer = emailjs.server.connect(config.mailer), | 
					
						
							| 
									
										
										
										
											2013-05-17 14:48:05 -04:00
										 |  |  | 	bcrypt = require('bcrypt'), | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 	marked = require('marked'), | 
					
						
							|  |  |  | 	notifications = require('./notifications.js'), | 
					
						
							| 
									
										
										
										
											2013-06-18 10:47:43 -04:00
										 |  |  | 	topics = require('./topics.js'), | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 	async = require('async'); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | (function(User) { | 
					
						
							|  |  |  | 	User.getUserField = function(uid, field, callback) { | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 		RDB.hget('user:'+uid, field, function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			if(err === null) | 
					
						
							|  |  |  | 				callback(data); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				console.log(err); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	User.getUserFields = function(uid, fields, callback) { | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 		RDB.hmget('user:'+uid, fields, function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			if(err === null) { | 
					
						
							|  |  |  | 				var returnData = {}; | 
					
						
							|  |  |  | 				 | 
					
						
							|  |  |  | 				for(var i=0, ii=fields.length; i<ii; ++i) { | 
					
						
							|  |  |  | 					returnData[fields[i]] = data[i]; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				callback(returnData); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				console.log(err); | 
					
						
							|  |  |  | 		});		 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.getMultipleUserFields = function(uids, fields, callback) { | 
					
						
							| 
									
										
										
										
											2013-05-16 13:13:46 -04:00
										 |  |  | 		if(uids.length === 0) { | 
					
						
							|  |  |  | 			callback({}); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		var uuids = uids.filter(function(value, index, self) {  | 
					
						
							| 
									
										
										
										
											2013-06-20 11:20:37 -04:00
										 |  |  | 			return self.indexOf(value) === index; | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		var data = {}, | 
					
						
							|  |  |  | 			loaded = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (var i=0, ii=uuids.length; i<ii; i++) { | 
					
						
							|  |  |  | 			(function(user_id) { | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 				User.getUserFields(user_id, fields, function(user_data) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 					data[user_id] = user_data; | 
					
						
							|  |  |  | 					loaded ++; | 
					
						
							|  |  |  | 					if (loaded == uuids.length) callback(data); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			}(uuids[i])) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.getUserData = function(uid, callback) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 		RDB.hgetall('user:'+uid, function(err, data) { | 
					
						
							|  |  |  | 			if(err === null) { | 
					
						
							| 
									
										
										
										
											2013-06-20 11:20:37 -04:00
										 |  |  | 				if(data) { | 
					
						
							|  |  |  | 					if(data['password']) | 
					
						
							|  |  |  | 						delete data['password']; | 
					
						
							|  |  |  | 					data.uid = uid; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-06-20 11:22:10 -04:00
										 |  |  | 				callback(data); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				console.log(err); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-21 13:44:53 -04:00
										 |  |  | 	User.updateProfile = function(uid, data, callback) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		 | 
					
						
							| 
									
										
										
										
											2013-05-17 14:48:05 -04:00
										 |  |  | 		var fields = ['email', 'fullname', 'website', 'location', 'birthday', 'signature']; | 
					
						
							| 
									
										
										
										
											2013-05-09 13:53:58 -04:00
										 |  |  | 		var key = ''; | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 		if(data['signature'] !== undefined && data['signature'].length > 150) { | 
					
						
							| 
									
										
										
										
											2013-05-21 13:44:53 -04:00
										 |  |  | 			callback({error:'Signature can\'t be longer than 150 characters!'}); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2013-05-09 13:53:58 -04:00
										 |  |  | 		for(var i=0,ii=fields.length; i<ii; ++i) { | 
					
						
							|  |  |  | 			key = fields[i]; | 
					
						
							| 
									
										
										
										
											2013-05-16 11:53:27 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 14:48:05 -04:00
										 |  |  | 			if(data[key] !== undefined) { | 
					
						
							| 
									
										
										
										
											2013-05-13 16:41:28 -04:00
										 |  |  | 				 | 
					
						
							|  |  |  | 				if(key === 'email') { | 
					
						
							|  |  |  | 					User.setUserField(uid, 'gravatarpicture', User.createGravatarURLFromEmail(data[key])); | 
					
						
							| 
									
										
										
										
											2013-05-17 14:22:34 -04:00
										 |  |  | 					RDB.set('email:' + data['email'] +':uid', uid); | 
					
						
							| 
									
										
										
										
											2013-05-13 16:41:28 -04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-05-21 22:36:21 -04:00
										 |  |  | 				else if(key === 'signature') { | 
					
						
							|  |  |  | 					data[key] = utils.strip_tags(data[key]); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-05-21 13:44:53 -04:00
										 |  |  | 				 | 
					
						
							| 
									
										
										
										
											2013-05-17 14:48:05 -04:00
										 |  |  | 				User.setUserField(uid, key, data[key]); | 
					
						
							| 
									
										
										
										
											2013-05-13 16:41:28 -04:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-05-21 13:44:53 -04:00
										 |  |  | 		 | 
					
						
							|  |  |  | 		callback({}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.setUserField = function(uid, field, value) { | 
					
						
							| 
									
										
										
										
											2013-05-15 16:44:08 -04:00
										 |  |  | 		RDB.hset('user:'+uid, field, value);				 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.incrementUserFieldBy = function(uid, field, value) { | 
					
						
							|  |  |  | 		RDB.hincrby('user:'+uid, field, value); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:46:13 -04:00
										 |  |  | 	User.getUserList = function(callback) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		var data = []; | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:46:13 -04:00
										 |  |  | 		RDB.keys('user:*', function(err, userkeys) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-05-14 16:10:16 -04:00
										 |  |  | 			var anonUserIndex = userkeys.indexOf("user:0"); | 
					
						
							|  |  |  | 			if(anonUserIndex !== -1) { | 
					
						
							|  |  |  | 				userkeys.splice(anonUserIndex, 1); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			for(var i=0,ii=userkeys.length; i<ii; ++i) { | 
					
						
							| 
									
										
										
										
											2013-06-20 14:45:38 -04:00
										 |  |  | 				var uid = userkeys[i].substr(5); | 
					
						
							| 
									
										
										
										
											2013-06-20 16:04:58 -04:00
										 |  |  | 				 | 
					
						
							| 
									
										
										
										
											2013-06-20 14:45:38 -04:00
										 |  |  | 				User.getUserData(uid, function(userData) { | 
					
						
							|  |  |  | 					data.push(userData); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 					if(data.length == userkeys.length) | 
					
						
							|  |  |  | 						callback(data); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 14:33:53 -04:00
										 |  |  | 	User.delete = function(uid, callback) { | 
					
						
							|  |  |  | 		RDB.exists('user:'+uid, function(err, exists) { | 
					
						
							|  |  |  | 			if(exists === 1) { | 
					
						
							|  |  |  | 				console.log('deleting uid ' + uid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				User.getUserData(uid, function(data) { | 
					
						
							|  |  |  | 					 | 
					
						
							|  |  |  | 					RDB.del('username:' + data['username'] + ':uid'); | 
					
						
							|  |  |  | 					RDB.del('email:' + data['email'] +':uid'); | 
					
						
							|  |  |  | 					RDB.del('userslug:'+ data['userslug'] +':uid'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					RDB.del('user:' + uid);		 | 
					
						
							|  |  |  | 					RDB.del('followers:' + uid); | 
					
						
							|  |  |  | 					RDB.del('following:' + uid); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 					RDB.lrem('userlist', 1, uid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					callback(true);	 | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				callback(false); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	User.create = function(username, password, email, callback) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-25 15:50:14 -04:00
										 |  |  | 		username = username.trim(); | 
					
						
							|  |  |  | 		email = email.trim(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if(!utils.isEmailValid(email) || !utils.isUserNameValid(username) || !utils.isPasswordValid(password)) { | 
					
						
							|  |  |  | 			console.log('Invalid email/username/password!'); | 
					
						
							|  |  |  | 			callback(null, 0); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 16:16:50 -04:00
										 |  |  | 		var userslug = utils.slugify(username); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		User.exists(userslug, function(exists) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(exists) { | 
					
						
							|  |  |  | 				callback(null, 0); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-13 16:57:47 -04:00
										 |  |  | 			RDB.incr('global:next_user_id', function(err, uid) { | 
					
						
							| 
									
										
										
										
											2013-05-19 13:39:51 -04:00
										 |  |  | 				RDB.handle(err); | 
					
						
							| 
									
										
										
										
											2013-05-16 21:30:16 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				var gravatar = User.createGravatarURLFromEmail(email); | 
					
						
							| 
									
										
										
										
											2013-06-24 12:08:21 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-16 21:30:16 -04:00
										 |  |  | 				RDB.hmset('user:'+uid, { | 
					
						
							|  |  |  | 					'username' : username, | 
					
						
							| 
									
										
										
										
											2013-06-24 14:33:53 -04:00
										 |  |  | 					'userslug' : userslug, | 
					
						
							| 
									
										
										
										
											2013-05-16 21:30:16 -04:00
										 |  |  | 					'fullname': '', | 
					
						
							|  |  |  | 					'location':'', | 
					
						
							|  |  |  | 					'birthday':'', | 
					
						
							|  |  |  | 					'website':'', | 
					
						
							|  |  |  | 					'email' : email, | 
					
						
							| 
									
										
										
										
											2013-05-17 14:48:05 -04:00
										 |  |  | 					'signature':'', | 
					
						
							| 
									
										
										
										
											2013-06-19 21:39:41 -04:00
										 |  |  | 					'joindate' : Date.now(), | 
					
						
							| 
									
										
										
										
											2013-05-16 21:30:16 -04:00
										 |  |  | 					'picture': gravatar, | 
					
						
							|  |  |  | 					'gravatarpicture' : gravatar, | 
					
						
							|  |  |  | 					'uploadedpicture': '', | 
					
						
							|  |  |  | 					'reputation': 0, | 
					
						
							| 
									
										
										
										
											2013-05-24 12:32:28 -04:00
										 |  |  | 					'postcount': 0, | 
					
						
							| 
									
										
										
										
											2013-06-20 14:45:38 -04:00
										 |  |  | 					'lastposttime': 0, | 
					
						
							| 
									
										
										
										
											2013-06-24 14:56:23 -04:00
										 |  |  | 					'administrator': (uid==1)?1:0 | 
					
						
							| 
									
										
										
										
											2013-05-16 21:30:16 -04:00
										 |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 				 | 
					
						
							| 
									
										
										
										
											2013-05-16 21:30:16 -04:00
										 |  |  | 				RDB.set('username:' + username + ':uid', uid); | 
					
						
							| 
									
										
										
										
											2013-05-17 10:57:26 -04:00
										 |  |  | 				RDB.set('email:' + email +':uid', uid); | 
					
						
							| 
									
										
										
										
											2013-06-24 14:33:53 -04:00
										 |  |  | 				RDB.set('userslug:'+ userslug +':uid', uid); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 				 | 
					
						
							| 
									
										
										
										
											2013-05-16 21:30:16 -04:00
										 |  |  | 				if(email) | 
					
						
							|  |  |  | 					User.sendConfirmationEmail(email); | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 				RDB.incr('usercount', function(err, count) { | 
					
						
							|  |  |  | 					RDB.handle(err); | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 					io.sockets.emit('user.count', {count: count}); | 
					
						
							|  |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-16 21:30:16 -04:00
										 |  |  | 				RDB.lpush('userlist', username); | 
					
						
							|  |  |  | 				io.sockets.emit('user.latest', {username: username}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-16 21:30:16 -04:00
										 |  |  | 				callback(null, uid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (password) { | 
					
						
							|  |  |  | 					User.hashPassword(password, function(hash) { | 
					
						
							|  |  |  | 						RDB.hset('user:'+uid, 'password', hash); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.createGravatarURLFromEmail = function(email) { | 
					
						
							| 
									
										
										
										
											2013-05-29 14:36:01 -04:00
										 |  |  | 		if (!email) email = utils.generateUUID(); | 
					
						
							|  |  |  | 		var md5sum = crypto.createHash('md5'); | 
					
						
							| 
									
										
										
										
											2013-05-29 14:55:43 -04:00
										 |  |  | 		md5sum.update(email.toLowerCase().trim()); | 
					
						
							|  |  |  | 		var gravatarURL = 'http://www.gravatar.com/avatar/' + md5sum.digest('hex') + '?default=identicon'; | 
					
						
							| 
									
										
										
										
											2013-05-29 14:36:01 -04:00
										 |  |  | 		return gravatarURL; | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.hashPassword = function(password, callback) { | 
					
						
							|  |  |  | 		if(!password) { | 
					
						
							|  |  |  | 			callback(password); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		bcrypt.genSalt(10, function(err, salt) { | 
					
						
							|  |  |  | 			bcrypt.hash(password, salt, function(err, hash) { | 
					
						
							|  |  |  | 				callback(hash);	 | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-26 12:32:30 -04:00
										 |  |  | 	User.search = function(username, callback) { | 
					
						
							|  |  |  | 		console.log('searching '+username); | 
					
						
							|  |  |  | 		RDB.keys('username:'+ username + '*:uid', function(err, data) { | 
					
						
							|  |  |  | 			if(err === null) { | 
					
						
							|  |  |  | 				console.log(data); | 
					
						
							|  |  |  | 				callback(data); | 
					
						
							|  |  |  | 			}	 | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				console.log(err); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	User.sendConfirmationEmail = function (email) { | 
					
						
							| 
									
										
										
										
											2013-05-28 11:50:09 -04:00
										 |  |  | 		if (global.config['email:host'] && global.config['email:port'] && global.config['email:from']) { | 
					
						
							|  |  |  | 			var confirm_code = utils.generateUUID(), | 
					
						
							|  |  |  | 				confirm_link = config.url + 'confirm/' + confirm_code, | 
					
						
							|  |  |  | 				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); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// Send intro email w/ confirm code
 | 
					
						
							|  |  |  | 			var message = emailjs.message.create({ | 
					
						
							|  |  |  | 				text: confirm_email_plaintext, | 
					
						
							|  |  |  | 				from: config.mailer.from, | 
					
						
							|  |  |  | 				to: email, | 
					
						
							|  |  |  | 				subject: '[NodeBB] Registration Email Verification', | 
					
						
							|  |  |  | 				attachment: [ | 
					
						
							|  |  |  | 					{ | 
					
						
							|  |  |  | 						data: confirm_email, | 
					
						
							|  |  |  | 						alternative: true | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				] | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 				 | 
					
						
							|  |  |  | 			emailjsServer.send(message, function(err, success) { | 
					
						
							|  |  |  | 				if (err)  | 
					
						
							|  |  |  | 					console.log(err); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 	User.follow = function(uid, followid, callback) { | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 		RDB.sadd('following:'+uid, followid, function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 			if(err === null) { | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 				RDB.sadd('followers:'+followid, uid, function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 					callback(data);	 | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-14 16:44:43 -04:00
										 |  |  | 			else | 
					
						
							|  |  |  | 				console.log(err); | 
					
						
							| 
									
										
										
										
											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-06-21 12:53:50 -04:00
										 |  |  | 		RDB.srem('following:'+uid, unfollowid, function(err, data){ | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 			if(err === null) { | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 				RDB.srem('followers:'+unfollowid, uid, function(err, data){ | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 					callback(data); | 
					
						
							|  |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-05-15 13:57:13 -04:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 			else | 
					
						
							|  |  |  | 				console.log(err); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.getFollowing = function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 		RDB.smembers('following:'+uid, function(err, userIds) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 			if(err === null) | 
					
						
							|  |  |  | 				User.getDataForUsers(userIds, callback); | 
					
						
							| 
									
										
										
										
											2013-05-14 16:44:43 -04:00
										 |  |  | 			else | 
					
						
							|  |  |  | 				console.log(err);	 | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 	User.getFollowers = function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 		RDB.smembers('followers:'+uid, function(err, userIds) { | 
					
						
							| 
									
										
										
										
											2013-05-15 11:46:41 -04:00
										 |  |  | 			if(err === null) | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 				User.getDataForUsers(userIds, callback); | 
					
						
							| 
									
										
										
										
											2013-05-15 11:46:41 -04:00
										 |  |  | 			else | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 				console.log(err);	 | 
					
						
							| 
									
										
										
										
											2013-05-15 11:46:41 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:46:13 -04:00
										 |  |  | 	User.getFollowingCount = function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 		RDB.smembers('following:'+uid, function(err, userIds) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:46:13 -04:00
										 |  |  | 			if(err === null) | 
					
						
							|  |  |  | 				callback(userIds.length); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				console.log(err);	 | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	User.getFollowerCount = function(uid, callback) { | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 		RDB.smembers('followers:'+uid, function(err, userIds) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:46:13 -04:00
										 |  |  | 			if(err === null) | 
					
						
							|  |  |  | 				callback(userIds.length); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				console.log(err);	 | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 	User.getDataForUsers = function(userIds, callback) { | 
					
						
							|  |  |  | 		var returnData = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if(userIds.length === 0) { | 
					
						
							|  |  |  | 			callback(returnData); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for(var i=0, ii=userIds.length; i<ii; ++i) { | 
					
						
							|  |  |  | 			User.getUserData(userIds[i], function(userData) { | 
					
						
							|  |  |  | 				returnData.push(userData); | 
					
						
							|  |  |  | 				 | 
					
						
							|  |  |  | 				if(returnData.length == userIds.length) | 
					
						
							|  |  |  | 					callback(returnData);			 | 
					
						
							|  |  |  | 			});	 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2013-06-18 10:01:42 -04:00
										 |  |  | 	User.sendPostNotificationToFollowers = function(uid, tid, pid) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		User.getUserField(uid, 'username', function(username) { | 
					
						
							| 
									
										
										
										
											2013-06-21 12:53:50 -04:00
										 |  |  | 			RDB.smembers('followers:'+uid, function(err, followers) { | 
					
						
							| 
									
										
										
										
											2013-06-18 10:47:43 -04:00
										 |  |  | 				 | 
					
						
							|  |  |  | 				topics.getSlug(tid, function(slug) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					var message = username + ' made a new post'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-19 21:39:41 -04:00
										 |  |  | 					notifications.create(message, 5, global.config.url + 'topic/' + slug + '#' + pid, 'notification_'+ Date.now(), 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-06-21 12:53:50 -04:00
										 |  |  | 		RDB.sismember('following:'+uid, theirid, function(err, data) { | 
					
						
							| 
									
										
										
										
											2013-06-17 15:25:09 -04:00
										 |  |  | 			if(err === null) | 
					
						
							| 
									
										
										
										
											2013-05-15 14:30:03 -04:00
										 |  |  | 				callback(data === 1); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				console.log(err); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 16:16:50 -04:00
										 |  |  | 	User.exists = function(userslug, callback) { | 
					
						
							|  |  |  | 		User.get_uid_by_userslug(userslug, function(exists) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 			exists = !!exists; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (callback)  | 
					
						
							|  |  |  | 				callback(exists); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	User.count = function(socket) { | 
					
						
							|  |  |  | 		RDB.get('usercount', function(err, count) { | 
					
						
							|  |  |  | 			RDB.handle(err); | 
					
						
							|  |  |  | 			socket.emit('user.count', {count: (count === null) ? 0 : count}); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	User.latest = function(socket) { | 
					
						
							|  |  |  | 		RDB.lrange('userlist', 0, 0, function(err, username) { | 
					
						
							|  |  |  | 			RDB.handle(err); | 
					
						
							|  |  |  | 			socket.emit('user.latest', {username: username}); | 
					
						
							|  |  |  | 		});	 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.get_uid_by_username = function(username, callback) { | 
					
						
							|  |  |  | 		RDB.get('username:' + username + ':uid', function(err, data) { | 
					
						
							|  |  |  | 			RDB.handle(err); | 
					
						
							|  |  |  | 			callback(data); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-24 14:33:53 -04:00
										 |  |  | 	User.get_uid_by_userslug = function(userslug, callback) { | 
					
						
							|  |  |  | 		RDB.get('userslug:' + userslug + ':uid', function(err, data) { | 
					
						
							|  |  |  | 			RDB.handle(err); | 
					
						
							|  |  |  | 			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
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (!Array.isArray(uids)) return callback([]); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		 | 
					
						
							|  |  |  | 		for(var i=0, ii=uids.length; i<ii; ++i) { | 
					
						
							|  |  |  | 		 | 
					
						
							| 
									
										
										
										
											2013-06-24 14:33:53 -04:00
										 |  |  | 			User.getUserField(uids[i],'username', function(username) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				usernames.push(username); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if(usernames.length >= uids.length) | 
					
						
							|  |  |  | 					callback(usernames); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-06-24 14:33:53 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.get_userslugs_by_uids = function(uids, callback) { | 
					
						
							|  |  |  | 		var userslugs = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!Array.isArray(uids)) return callback([]); | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		for(var i=0, ii=uids.length; i<ii; ++i) { | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 			User.getUserField(uids[i],'userslug', function(userslug) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				userslugs.push(userslug); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if(userslugs.length >= uids.length) | 
					
						
							|  |  |  | 					callback(userslugs); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	User.get_uid_by_email = function(email, callback) { | 
					
						
							|  |  |  | 		RDB.get('email:' + email + ':uid', function(err, data) { | 
					
						
							|  |  |  | 			RDB.handle(err); | 
					
						
							|  |  |  | 			callback(data); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.get_uid_by_session = function(session, callback) { | 
					
						
							|  |  |  | 		RDB.get('sess:' + session + ':uid', function(err, data) { | 
					
						
							|  |  |  | 			RDB.handle(err); | 
					
						
							|  |  |  | 			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-05-09 01:04:15 -04:00
										 |  |  | 			RDB.handle(err);			 | 
					
						
							|  |  |  | 			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-05-09 01:04:15 -04:00
										 |  |  | 			RDB.handle(err); | 
					
						
							|  |  |  | 			callback(uid); | 
					
						
							|  |  |  | 		});	 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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-05-09 01:04:15 -04:00
										 |  |  | 			RDB.handle(err); | 
					
						
							|  |  |  | 			callback(uid); | 
					
						
							|  |  |  | 		});	 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.session_ping = function(sessionID, uid) { | 
					
						
							|  |  |  | 		// Start, replace, or extend a session
 | 
					
						
							|  |  |  | 		RDB.get('sess:' + sessionID, function(err, session) { | 
					
						
							|  |  |  | 			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-05-17 21:14:58 -04:00
										 |  |  | 			callback(!!exists); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.isAdministrator = function(uid, callback) { | 
					
						
							|  |  |  | 		RDB.sismember('administrators', uid, function(err, exists) { | 
					
						
							|  |  |  | 			callback(!!exists); | 
					
						
							| 
									
										
										
										
											2013-05-16 12:49:39 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-20 14:45:38 -04:00
										 |  |  | 	User.makeAdministrator = function(uid, callback) { | 
					
						
							|  |  |  | 		RDB.sadd('administrators', uid, function(err, data){ | 
					
						
							|  |  |  | 			if(err === null) { | 
					
						
							|  |  |  | 				User.setUserField(uid, 'administrator', 1); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if(callback) | 
					
						
							|  |  |  | 				callback(err === null); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.removeAdministrator = function(uid, callback) { | 
					
						
							|  |  |  | 		RDB.srem('administrators', uid, function(err, data){ | 
					
						
							|  |  |  | 			if(err === null) { | 
					
						
							|  |  |  | 				User.setUserField(uid, 'administrator', 0); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if(callback) | 
					
						
							|  |  |  | 				callback(err === null); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}	 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	User.reset = { | 
					
						
							|  |  |  | 		validate: function(socket, code, callback) { | 
					
						
							|  |  |  | 			if (typeof callback !== 'function') callback = undefined; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			RDB.get('reset:' + code + ':uid', function(err, uid) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (uid !== null) { | 
					
						
							|  |  |  | 					RDB.get('reset:' + code + ':expiry', function(err, expiry) { | 
					
						
							|  |  |  | 						RDB.handle(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						if (expiry >= +new Date()/1000|0) { | 
					
						
							|  |  |  | 							if (!callback) socket.emit('user:reset.valid', { valid: true }); | 
					
						
							|  |  |  | 							else callback(true); | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							// Expired, delete from db
 | 
					
						
							|  |  |  | 							RDB.del('reset:' + code + ':uid'); | 
					
						
							|  |  |  | 							RDB.del('reset:' + code + ':expiry'); | 
					
						
							|  |  |  | 							if (!callback) socket.emit('user:reset.valid', { valid: false }); | 
					
						
							|  |  |  | 							else callback(false); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					if (!callback) socket.emit('user:reset.valid', { valid: false }); | 
					
						
							|  |  |  | 					else callback(false); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		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
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					var reset_link = config.url + 'reset/' + reset_code, | 
					
						
							|  |  |  | 						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, | 
					
						
							|  |  |  | 						from: config.mailer.from, | 
					
						
							|  |  |  | 						to: email, | 
					
						
							|  |  |  | 						subject: 'Password Reset Requested', | 
					
						
							|  |  |  | 						attachment: [ | 
					
						
							|  |  |  | 							{ | 
					
						
							|  |  |  | 								data: reset_email, | 
					
						
							|  |  |  | 								alternative: true | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						] | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 					 | 
					
						
							|  |  |  | 					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" | 
					
						
							|  |  |  | 							}); | 
					
						
							|  |  |  | 							throw new Error(err); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					socket.emit('user.send_reset', { | 
					
						
							|  |  |  | 						status: "error", | 
					
						
							|  |  |  | 						message: "invalid-email", | 
					
						
							|  |  |  | 						email: email | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		commit: function(socket, code, password) { | 
					
						
							|  |  |  | 			this.validate(code, function(validated) { | 
					
						
							|  |  |  | 				if (validated) { | 
					
						
							|  |  |  | 					RDB.get('reset:' + code + ':uid', function(err, uid) { | 
					
						
							|  |  |  | 						RDB.handle(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						User.setUserField(uid, 'password', password); | 
					
						
							|  |  |  | 						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; | 
					
						
							|  |  |  | 				if (typeof callback !== 'function') socket.emit('user.email.exists', { exists: exists }); | 
					
						
							|  |  |  | 				else callback(exists); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		confirm: function(code, callback) { | 
					
						
							|  |  |  | 			RDB.get('confirm:' + code + ':email', function(err, email) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (email !== null) { | 
					
						
							|  |  |  | 					RDB.set('email:' + email + ':confirm', true); | 
					
						
							|  |  |  | 					RDB.del('confirm:' + code + ':email'); | 
					
						
							|  |  |  | 					callback({ | 
					
						
							|  |  |  | 						status: 'ok' | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					callback({ | 
					
						
							|  |  |  | 						status: 'not_ok' | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-05-21 17:02:04 -04:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.get_online_users = function(socket, uids) { | 
					
						
							|  |  |  | 		RDB.sismembers('users:online', uids, function(err, data) { | 
					
						
							|  |  |  | 			socket.emit('api:user.get_online_users', data); | 
					
						
							|  |  |  | 		});		 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.go_online = function(uid) { | 
					
						
							| 
									
										
										
										
											2013-06-21 13:28:55 -04:00
										 |  |  | 		RDB.sadd('users:online', uid, function(err) { | 
					
						
							|  |  |  | 			if (err) RDB.handle(err); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-05-21 17:02:04 -04:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	User.go_offline = function(uid) { | 
					
						
							| 
									
										
										
										
											2013-06-21 13:28:55 -04:00
										 |  |  | 		RDB.srem('users:online', uid, function(err) { | 
					
						
							|  |  |  | 			if (err) RDB.handle(err); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-05-21 17:02:04 -04:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	User.active = { | 
					
						
							|  |  |  | 		get_record : function(socket) { | 
					
						
							|  |  |  | 			RDB.mget(['global:active_user_record', 'global:active_user_record_date'], function(err, data) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 				socket.emit('api:user.active.get_record', {record: data[0], timestamp: data[1]}); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		get: function(callback) { | 
					
						
							|  |  |  | 			function user_record(total) { | 
					
						
							|  |  |  | 				RDB.get('global:active_user_record', function(err, record) { | 
					
						
							|  |  |  | 					RDB.handle(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if (total > record) { | 
					
						
							|  |  |  | 						RDB.set('global:active_user_record', total); | 
					
						
							| 
									
										
										
										
											2013-06-19 21:39:41 -04:00
										 |  |  | 						RDB.set('global:active_user_record_date', Date.now()); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			RDB.keys('active:*', function(err, active) { | 
					
						
							|  |  |  | 				RDB.handle(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				var	returnObj = { | 
					
						
							|  |  |  | 						users: 0, | 
					
						
							|  |  |  | 						anon: 0, | 
					
						
							|  |  |  | 						uids: [] | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 					keys = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (active.length > 0) { | 
					
						
							|  |  |  | 					for(var a in active) { | 
					
						
							|  |  |  | 						keys.push('sess:' + active[a].split(':')[1] + ':uid'); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					RDB.mget(keys, function(err, uids) { | 
					
						
							|  |  |  | 						RDB.handle(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						for(var u in uids) { | 
					
						
							|  |  |  | 							if (uids[u] !== null) { | 
					
						
							|  |  |  | 								if (returnObj.uids.indexOf(uids[u]) === -1) { | 
					
						
							|  |  |  | 									returnObj.users++; | 
					
						
							|  |  |  | 									returnObj.uids.push(uids[u]); | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							} else { | 
					
						
							|  |  |  | 								returnObj.anon++; | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						user_record(returnObj.anon + returnObj.users); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						if (callback === undefined) { | 
					
						
							|  |  |  | 							io.sockets.emit('api:user.active.get', returnObj) | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							callback(returnObj); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					io.sockets.emit('api:user.active.get', returnObj) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		register: function(sessionID) { | 
					
						
							|  |  |  | 			// Active state persists for 10 minutes
 | 
					
						
							|  |  |  | 			var active_session = 'active:' + sessionID; | 
					
						
							|  |  |  | 			RDB.set(active_session, ''); | 
					
						
							|  |  |  | 			RDB.expire(active_session, 60*10) | 
					
						
							|  |  |  | 			this.get(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	User.notifications = { | 
					
						
							|  |  |  | 		get: function(uid, callback) { | 
					
						
							|  |  |  | 			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-05-22 21:43:01 -04:00
										 |  |  | 						var unread = []; | 
					
						
							|  |  |  | 						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); | 
					
						
							|  |  |  | 							}); | 
					
						
							|  |  |  | 						} else next(null, unread); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				read: function(next) { | 
					
						
							| 
									
										
										
										
											2013-06-24 16:02:39 -04:00
										 |  |  | 					RDB.zrevrangebyscore('uid:' + uid + ':notifications:read', 10, 0, function(err, nids) { | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 						var read = []; | 
					
						
							|  |  |  | 						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); | 
					
						
							|  |  |  | 							}); | 
					
						
							|  |  |  | 						} else next(null, read); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}, function(err, notifications) { | 
					
						
							| 
									
										
										
										
											2013-06-24 16:02:39 -04:00
										 |  |  | 				// While maintaining score sorting, sort by time
 | 
					
						
							|  |  |  | 				notifications.read.sort(function(a, b) { | 
					
						
							|  |  |  | 					if (a.score === b.score) return (a.datetime - b.datetime) > 0 ? -1 : 1; | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 				notifications.unread.sort(function(a, b) { | 
					
						
							|  |  |  | 					if (a.score === b.score) return (a.datetime - b.datetime) > 0 ? -1 : 1; | 
					
						
							|  |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 				callback(notifications); | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-05-23 12:54:57 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2013-06-24 16:35:50 -04:00
										 |  |  | 		hasFlag: function(uid, callback) { | 
					
						
							|  |  |  | 			RDB.get('uid:1:notifications:flag', function(err, flag) { | 
					
						
							|  |  |  | 				if (err) RDB.handle(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (flag === '1') callback(true); | 
					
						
							|  |  |  | 				else callback(false); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		removeFlag: function(uid) { | 
					
						
							|  |  |  | 			RDB.del('uid:' + uid + ':notifications:flag', function(err) { | 
					
						
							|  |  |  | 				if (err) RDB.handle(err); | 
					
						
							| 
									
										
										
										
											2013-05-23 12:54:57 -04:00
										 |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-05-22 21:43:01 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-04-22 16:51:32 +00:00
										 |  |  | }(exports)); |