From d0a2c077ffcaa55e04507b368c626ae843b4107a Mon Sep 17 00:00:00 2001 From: Baris Soner Usakli Date: Fri, 3 Jan 2014 19:32:52 -0500 Subject: [PATCH] refactored posts.create to use waterfall --- src/posts.js | 87 ++++++++++++++++++++++++++++------------------------ 1 file changed, 47 insertions(+), 40 deletions(-) diff --git a/src/posts.js b/src/posts.js index 0ab4222321..7b15c9d4ec 100644 --- a/src/posts.js +++ b/src/posts.js @@ -28,63 +28,70 @@ var db = require('./database'), return callback(new Error('invalid-user'), null); } - topics.isLocked(tid, function(err, locked) { - if(err) { - return callback(err, null); - } else if(locked) { - return callback(new Error('topic-locked'), null); - } - - db.incrObjectField('global', 'nextPid', function(err, pid) { - if(err) { - return callback(err, null); + async.waterfall([ + function(next) { + topics.isLocked(tid, next); + }, + function(locked, next) { + if(locked) { + return next(new Error('topic-locked')); } + db.incrObjectField('global', 'nextPid', next); + }, + function(pid, next) { plugins.fireHook('filter:post.save', content, function(err, newContent) { + next(err, pid, newContent) + }); + }, + function(pid, newContent, next) { + var timestamp = Date.now(), + postData = { + 'pid': pid, + 'uid': uid, + 'tid': tid, + 'content': newContent, + 'timestamp': timestamp, + 'reputation': 0, + 'editor': '', + 'edited': 0, + 'deleted': 0 + }; + + db.setObject('post:' + pid, postData, function(err) { if(err) { - return callback(err, null); + return next(err); } - var timestamp = Date.now(), - postData = { - 'pid': pid, - 'uid': uid, - 'tid': tid, - 'content': newContent, - 'timestamp': timestamp, - 'reputation': 0, - 'editor': '', - 'edited': 0, - 'deleted': 0 - }; - - db.setObject('post:' + pid, postData); db.incrObjectField('global', 'postCount'); topics.onNewPostMade(tid, pid, timestamp); categories.onNewPostMade(uid, tid, pid, timestamp); user.onNewPostMade(uid, tid, pid, timestamp); - plugins.fireHook('filter:post.get', postData, function(err, newPostData) { - if(err) { - return callback(err, null); - } + next(null, postData); + }); + }, + function(postData, next) { + plugins.fireHook('filter:post.get', postData, next); + }, + function(postData, next) { + postTools.parse(postData.content, function(err, content) { + if(err) { + return next(err, null); + } - postTools.parse(newPostData.content, function(err, content) { - if(err) { - return callback(err, null); - } - newPostData.content = content; + postData.content = content; - plugins.fireHook('action:post.save', newPostData); + plugins.fireHook('action:post.save', postData); - db.searchIndex('post', content, pid); + db.searchIndex('post', content, postData.pid); - callback(null, newPostData); - }); - }); + next(null, postData); }); - }); + } + ], function(err, postData) { + callback(err, postData); }); };