refactored posts.create to use waterfall

v1.18.x
Baris Soner Usakli 11 years ago
parent ebf07626de
commit d0a2c077ff

@ -28,63 +28,70 @@ var db = require('./database'),
return callback(new Error('invalid-user'), null); return callback(new Error('invalid-user'), null);
} }
topics.isLocked(tid, function(err, locked) { async.waterfall([
if(err) { function(next) {
return callback(err, null); topics.isLocked(tid, next);
} else if(locked) { },
return callback(new Error('topic-locked'), null); function(locked, next) {
} if(locked) {
return next(new Error('topic-locked'));
db.incrObjectField('global', 'nextPid', function(err, pid) {
if(err) {
return callback(err, null);
} }
db.incrObjectField('global', 'nextPid', next);
},
function(pid, next) {
plugins.fireHook('filter:post.save', content, function(err, newContent) { 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) { 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'); db.incrObjectField('global', 'postCount');
topics.onNewPostMade(tid, pid, timestamp); topics.onNewPostMade(tid, pid, timestamp);
categories.onNewPostMade(uid, tid, pid, timestamp); categories.onNewPostMade(uid, tid, pid, timestamp);
user.onNewPostMade(uid, tid, pid, timestamp); user.onNewPostMade(uid, tid, pid, timestamp);
plugins.fireHook('filter:post.get', postData, function(err, newPostData) { next(null, postData);
if(err) { });
return callback(err, null); },
} 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) { postData.content = content;
if(err) {
return callback(err, null);
}
newPostData.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);
}); });
}; };

Loading…
Cancel
Save