| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | var	RDB = require('./redis.js'), | 
					
						
							| 
									
										
										
										
											2013-05-23 13:21:38 -04:00
										 |  |  | 	utils = require('./../public/src/utils.js'), | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 	marked = require('marked'), | 
					
						
							|  |  |  | 	user = require('./user.js'), | 
					
						
							| 
									
										
										
										
											2013-05-09 07:27:55 +00:00
										 |  |  | 	topics = require('./topics.js'), | 
					
						
							| 
									
										
										
										
											2013-05-23 15:11:55 -04:00
										 |  |  | 	favourites = require('./favourites.js'), | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 	threadTools = require('./threadTools.js'), | 
					
						
							| 
									
										
										
										
											2013-05-27 14:55:03 -04:00
										 |  |  | 	feed = require('./feed.js'), | 
					
						
							| 
									
										
										
										
											2013-05-16 12:49:39 -04:00
										 |  |  | 	async = require('async'); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 00:45:04 -04:00
										 |  |  | marked.setOptions({ | 
					
						
							|  |  |  | 	breaks: true | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | (function(Posts) { | 
					
						
							| 
									
										
										
										
											2013-05-24 11:18:28 -04:00
										 |  |  | 	Posts.getPostsByTid = function(tid, current_user, start, end, callback) { | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 		RDB.lrange('tid:' + tid + ':posts', start, end, function(err, pids) { | 
					
						
							|  |  |  | 			RDB.handle(err); | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			if (pids.length === 0 ) { | 
					
						
							| 
									
										
										
										
											2013-05-24 11:18:28 -04:00
										 |  |  | 				throw new Error('Topic should never have 0 posts. tid: ' + tid); | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			topics.markAsRead(tid, current_user); | 
					
						
							| 
									
										
										
										
											2013-05-24 12:46:19 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			Posts.getPostsByPids(pids, current_user, function(posts) { | 
					
						
							|  |  |  | 				callback(posts); | 
					
						
							|  |  |  | 			}) | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2013-05-24 12:46:19 -04:00
										 |  |  | 			 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-24 14:34:55 -04:00
										 |  |  | 	// todo, getPostsByPids has duplicated stuff, have that call this fn - after userinfo calls are pulled out.
 | 
					
						
							| 
									
										
										
										
											2013-05-24 12:46:19 -04:00
										 |  |  | 	Posts.getPostSummaryByPids = function(pids, callback) { | 
					
						
							|  |  |  | 		var content = [], uid = [], timestamp = []; | 
					
						
							| 
									
										
										
										
											2013-05-24 14:34:55 -04:00
										 |  |  | 		for (var i=0, ii=pids.length; i<ii; i++) { | 
					
						
							|  |  |  | 			content.push('pid:' + pids[i] + ':content'); | 
					
						
							|  |  |  | 			uid.push('pid:' + pids[i] + ':uid'); | 
					
						
							|  |  |  | 			timestamp.push('pid:' + pids[i] + ':timestamp'); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-24 14:34:55 -04:00
										 |  |  | 		RDB.multi() | 
					
						
							|  |  |  | 			.mget(content) | 
					
						
							|  |  |  | 			.mget(uid) | 
					
						
							|  |  |  | 			.mget(timestamp) | 
					
						
							|  |  |  | 			.exec(function(err, replies) { | 
					
						
							|  |  |  | 				post_data = { | 
					
						
							|  |  |  | 					pids: pids, | 
					
						
							|  |  |  | 					content: replies[0], | 
					
						
							|  |  |  | 					uid: replies[1], | 
					
						
							|  |  |  | 					timestamp: replies[2] | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// below, to be deprecated
 | 
					
						
							|  |  |  | 				user.getMultipleUserFields(post_data.uid, ['username','reputation','picture'], function(user_details) { | 
					
						
							|  |  |  | 					callback({ | 
					
						
							|  |  |  | 						users: user_details, | 
					
						
							|  |  |  | 						posts: post_data | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 				// above, to be deprecated
 | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-05-24 12:46:19 -04:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Posts.getPostsByPids = function(pids, current_user, callback) { | 
					
						
							|  |  |  | 		var content = [], uid = [], timestamp = [], post_rep = [], editor = [], editTime = [], deleted = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (var i=0, ii=pids.length; i<ii; i++) { | 
					
						
							|  |  |  | 			content.push('pid:' + pids[i] + ':content'); | 
					
						
							|  |  |  | 			uid.push('pid:' + pids[i] + ':uid'); | 
					
						
							|  |  |  | 			timestamp.push('pid:' + pids[i] + ':timestamp'); | 
					
						
							|  |  |  | 			post_rep.push('pid:' + pids[i] + ':rep'); | 
					
						
							|  |  |  | 			editor.push('pid:' + pids[i] + ':editor'); | 
					
						
							|  |  |  | 			editTime.push('pid:' + pids[i] + ':edited'); | 
					
						
							|  |  |  | 			deleted.push('pid:' + pids[i] + ':deleted'); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-24 12:46:19 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		function getFavouritesData(next) { | 
					
						
							|  |  |  | 			favourites.getFavouritesByPostIDs(pids, current_user, function(fav_data) { | 
					
						
							|  |  |  | 				next(null, fav_data); | 
					
						
							|  |  |  | 			}); // to be moved
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		function getPostData(next) { | 
					
						
							|  |  |  | 			RDB.multi() | 
					
						
							|  |  |  | 				.mget(content) | 
					
						
							|  |  |  | 				.mget(uid) | 
					
						
							|  |  |  | 				.mget(timestamp) | 
					
						
							|  |  |  | 				.mget(post_rep) | 
					
						
							|  |  |  | 				.mget(editor) | 
					
						
							|  |  |  | 				.mget(editTime) | 
					
						
							|  |  |  | 				.mget(deleted) | 
					
						
							|  |  |  | 				.exec(function(err, replies) { | 
					
						
							|  |  |  | 					post_data = { | 
					
						
							|  |  |  | 						pid: pids, | 
					
						
							|  |  |  | 						content: replies[0], | 
					
						
							|  |  |  | 						uid: replies[1], | 
					
						
							|  |  |  | 						timestamp: replies[2], | 
					
						
							|  |  |  | 						reputation: replies[3], | 
					
						
							|  |  |  | 						editor: replies[4], | 
					
						
							|  |  |  | 						editTime: replies[5], | 
					
						
							|  |  |  | 						deleted: replies[6] | 
					
						
							|  |  |  | 					}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// below, to be deprecated
 | 
					
						
							|  |  |  | 					// Add any editors to the user_data object
 | 
					
						
							|  |  |  | 					for(var x = 0, numPosts = post_data.editor.length; x < numPosts; x++) { | 
					
						
							|  |  |  | 						if (post_data.editor[x] !== null && post_data.uid.indexOf(post_data.editor[x]) === -1) { | 
					
						
							|  |  |  | 							post_data.uid.push(post_data.editor[x]); | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-05-24 12:46:19 -04:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-24 12:46:19 -04:00
										 |  |  | 					user.getMultipleUserFields(post_data.uid, ['username','reputation','picture', 'signature'], function(user_details) { | 
					
						
							|  |  |  | 						next(null, { | 
					
						
							|  |  |  | 							users: user_details, | 
					
						
							|  |  |  | 							posts: post_data | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 						}); | 
					
						
							| 
									
										
										
										
											2013-05-18 14:59:50 -04:00
										 |  |  | 					}); | 
					
						
							| 
									
										
										
										
											2013-05-24 12:46:19 -04:00
										 |  |  | 					// above, to be deprecated
 | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-05-24 12:46:19 -04:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-24 12:46:19 -04:00
										 |  |  | 		async.parallel([getFavouritesData, getPostData], function(err, results) { | 
					
						
							|  |  |  | 			callback({ | 
					
						
							|  |  |  | 				'voteData' : results[0], // to be moved
 | 
					
						
							|  |  |  | 				'userData' : results[1].users, // to be moved
 | 
					
						
							|  |  |  | 				'postData' : results[1].posts | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-05-16 21:30:16 -04:00
										 |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2013-05-16 18:15:58 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Posts.get_tid_by_pid = function(pid, callback) { | 
					
						
							|  |  |  | 		RDB.get('pid:' + pid + ':tid', function(err, tid) { | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 			if (tid && parseInt(tid) > 0) { | 
					
						
							|  |  |  | 				callback(tid); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				callback(false); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-16 18:15:58 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Posts.get_cid_by_pid = function(pid, callback) { | 
					
						
							| 
									
										
										
										
											2013-05-21 18:12:39 -04:00
										 |  |  | 		Posts.get_tid_by_pid(pid, function(tid) { | 
					
						
							| 
									
										
										
										
											2013-05-16 18:15:58 -04:00
										 |  |  | 			if (tid) topics.get_cid_by_tid(tid, function(cid) { | 
					
						
							| 
									
										
										
										
											2013-05-23 12:52:16 -04:00
										 |  |  | 				if (cid) { | 
					
						
							|  |  |  | 					callback(cid); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					callback(false); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-05-16 18:15:58 -04:00
										 |  |  | 			}); | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Posts.reply = function(socket, tid, uid, content) { | 
					
						
							| 
									
										
										
										
											2013-05-14 17:19:22 -04:00
										 |  |  | 		if (uid < 1) { | 
					
						
							|  |  |  | 			socket.emit('event:alert', { | 
					
						
							|  |  |  | 				title: 'Reply Unsuccessful', | 
					
						
							|  |  |  | 				message: 'You don't seem to be logged in, so you cannot reply.', | 
					
						
							|  |  |  | 				type: 'error', | 
					
						
							|  |  |  | 				timeout: 2000 | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-16 10:59:45 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-24 12:53:45 -04:00
										 |  |  | 		user.getUserField(uid, 'lastposttime', function(lastposttime) { | 
					
						
							| 
									
										
										
										
											2013-05-24 12:32:28 -04:00
										 |  |  | 			if(new Date().getTime() - lastposttime < config.post_delay) { | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 				socket.emit('event:alert', { | 
					
						
							| 
									
										
										
										
											2013-05-24 12:32:28 -04:00
										 |  |  | 					title: 'Too many posts!', | 
					
						
							|  |  |  | 					message: 'You can only post every '+ (config.post_delay / 1000) + ' seconds.', | 
					
						
							|  |  |  | 					type: 'error', | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 					timeout: 2000 | 
					
						
							|  |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-05-24 12:32:28 -04:00
										 |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-24 12:32:28 -04:00
										 |  |  | 			Posts.create(uid, tid, content, function(pid) { | 
					
						
							|  |  |  | 				if (pid > 0) { | 
					
						
							|  |  |  | 					RDB.rpush('tid:' + tid + ':posts', pid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					RDB.del('tid:' + tid + ':read_by_uid'); // let everybody know there is an unread post
 | 
					
						
							| 
									
										
										
										
											2013-05-24 14:34:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-24 12:32:28 -04:00
										 |  |  | 					Posts.get_cid_by_pid(pid, function(cid) { | 
					
						
							|  |  |  | 						RDB.del('cid:' + cid + ':read_by_uid'); | 
					
						
							| 
									
										
										
										
											2013-05-24 14:34:55 -04:00
										 |  |  | 						RDB.zadd('categories:recent_posts:cid:' + cid, (new Date()).getTime(), pid); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 					}); | 
					
						
							| 
									
										
										
										
											2013-05-24 12:32:28 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					// Re-add the poster, so he/she does not get an "unread" flag on this topic
 | 
					
						
							|  |  |  | 					topics.markAsRead(tid, uid); | 
					
						
							|  |  |  | 					// this will duplicate once we enter the thread, which is where we should be going
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					socket.emit('event:alert', { | 
					
						
							|  |  |  | 						title: 'Reply Successful', | 
					
						
							|  |  |  | 						message: 'You have successfully replied. Click here to view your reply.', | 
					
						
							|  |  |  | 						type: 'notify', | 
					
						
							|  |  |  | 						timeout: 2000 | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-06 20:39:45 -04:00
										 |  |  | 					// Send notifications to users who are following this topic
 | 
					
						
							|  |  |  | 					threadTools.notify_followers(tid, uid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-24 12:32:28 -04:00
										 |  |  | 					user.getUserFields(uid, ['username','reputation','picture','signature'], function(data) { | 
					
						
							|  |  |  | 						 | 
					
						
							|  |  |  | 						var timestamp = new Date().getTime(); | 
					
						
							|  |  |  | 						 | 
					
						
							|  |  |  | 						io.sockets.in('topic_' + tid).emit('event:new_post', { | 
					
						
							|  |  |  | 							'posts' : [ | 
					
						
							|  |  |  | 								{ | 
					
						
							|  |  |  | 									'pid' : pid, | 
					
						
							|  |  |  | 									'content' : marked(content || ''), | 
					
						
							|  |  |  | 									'uid' : uid, | 
					
						
							|  |  |  | 									'username' : data.username || 'anonymous', | 
					
						
							|  |  |  | 									'user_rep' : data.reputation || 0, | 
					
						
							|  |  |  | 									'post_rep' : 0, | 
					
						
							|  |  |  | 									'gravatar' : data.picture, | 
					
						
							|  |  |  | 									'signature' : marked(data.signature || ''), | 
					
						
							|  |  |  | 									'timestamp' : timestamp, | 
					
						
							|  |  |  | 									'relativeTime': utils.relativeTime(timestamp), | 
					
						
							|  |  |  | 									'fav_star_class' :'icon-star-empty', | 
					
						
							|  |  |  | 									'edited-class': 'none', | 
					
						
							|  |  |  | 									'editor': '', | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							] | 
					
						
							|  |  |  | 						}); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					socket.emit('event:alert', { | 
					
						
							|  |  |  | 						title: 'Reply Unsuccessful', | 
					
						
							|  |  |  | 						message: 'Your reply could not be posted at this time. Please try again later.', | 
					
						
							|  |  |  | 						type: 'notify', | 
					
						
							|  |  |  | 						timeout: 2000 | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Posts.create = function(uid, tid, content, callback) { | 
					
						
							|  |  |  | 		if (uid === null) return; | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		RDB.get('tid:' + tid + ':locked', function(err, locked) { | 
					
						
							|  |  |  | 			RDB.handle(err); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!locked || locked === '0') { | 
					
						
							|  |  |  | 				RDB.incr('global:next_post_id', function(err, pid) { | 
					
						
							|  |  |  | 					RDB.handle(err); | 
					
						
							| 
									
										
										
										
											2013-05-24 12:32:28 -04:00
										 |  |  | 					 | 
					
						
							|  |  |  | 					var timestamp = new Date().getTime(); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 					// Posts Info
 | 
					
						
							|  |  |  | 					RDB.set('pid:' + pid + ':content', content); | 
					
						
							|  |  |  | 					RDB.set('pid:' + pid + ':uid', uid); | 
					
						
							| 
									
										
										
										
											2013-05-24 12:32:28 -04:00
										 |  |  | 					RDB.set('pid:' + pid + ':timestamp', timestamp); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 					RDB.set('pid:' + pid + ':rep', 0); | 
					
						
							| 
									
										
										
										
											2013-05-09 10:20:25 -04:00
										 |  |  | 					RDB.set('pid:' + pid + ':tid', tid); | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 					 | 
					
						
							|  |  |  | 					RDB.incr('tid:' + tid + ':postcount'); | 
					
						
							| 
									
										
										
										
											2013-05-14 17:06:48 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-27 14:55:03 -04:00
										 |  |  | 					user.getUserFields(uid, ['username'], function(data) { // todo parallel
 | 
					
						
							| 
									
										
										
										
											2013-05-15 15:42:24 -04:00
										 |  |  | 						//add active users to this category
 | 
					
						
							|  |  |  | 						RDB.get('tid:' + tid + ':cid', function(err, cid) { | 
					
						
							|  |  |  | 							RDB.handle(err); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-27 14:55:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 							feed.updateTopic(tid, cid); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-15 15:42:24 -04:00
										 |  |  | 							// this is a bit of a naive implementation, defn something to look at post-MVP
 | 
					
						
							|  |  |  | 							RDB.scard('cid:' + cid + ':active_users', function(amount) { | 
					
						
							|  |  |  | 								if (amount > 10) { | 
					
						
							|  |  |  | 									RDB.spop('cid:' + cid + ':active_users'); | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 								RDB.sadd('cid:' + cid + ':active_users', data.username); | 
					
						
							|  |  |  | 							}); | 
					
						
							|  |  |  | 						}); | 
					
						
							| 
									
										
										
										
											2013-05-14 17:06:48 -04:00
										 |  |  | 					}); | 
					
						
							|  |  |  | 					 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 					 | 
					
						
							|  |  |  | 					// User Details - move this out later
 | 
					
						
							|  |  |  | 					RDB.lpush('uid:' + uid + ':posts', pid); | 
					
						
							|  |  |  | 					 | 
					
						
							|  |  |  | 					user.incrementUserFieldBy(uid, 'postcount', 1); | 
					
						
							| 
									
										
										
										
											2013-05-24 12:32:28 -04:00
										 |  |  | 					user.setUserField(uid, 'lastposttime', timestamp); | 
					
						
							| 
									
										
										
										
											2013-05-09 10:20:25 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-09 01:04:15 -04:00
										 |  |  | 					if (callback)  | 
					
						
							|  |  |  | 						callback(pid); | 
					
						
							|  |  |  | 				}); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				callback(-1); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-04 16:47:07 -04:00
										 |  |  | 	Posts.getRawContent = function(pid, callback) { | 
					
						
							| 
									
										
										
										
											2013-05-09 10:20:25 -04:00
										 |  |  | 		RDB.get('pid:' + pid + ':content', function(err, raw) { | 
					
						
							| 
									
										
										
										
											2013-06-04 16:47:07 -04:00
										 |  |  | 			callback(raw); | 
					
						
							| 
									
										
										
										
											2013-05-09 10:20:25 -04:00
										 |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-23 15:11:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-24 20:40:34 +00:00
										 |  |  | }(exports)); |