Files
NodeBB/src/topics/fork.js
2015-08-04 14:26:03 -04:00

155 lines
3.3 KiB
JavaScript

'use strict';
var async = require('async'),
winston = require('winston'),
db = require('../database'),
posts = require('../posts'),
privileges = require('../privileges'),
postTools = require('../postTools'),
plugins = require('../plugins'),
threadTools = require('../threadTools');
module.exports = function(Topics) {
Topics.createTopicFromPosts = function(uid, title, pids, callback) {
if (title) {
title = title.trim();
}
if (!title) {
return callback(new Error('[[error:invalid-title]]'));
}
if (!pids || !pids.length) {
return callback(new Error('[[error:invalid-pid]]'));
}
pids.sort(function(a, b) {
return a - b;
});
var mainPid = pids[0];
async.parallel({
postData: function(callback) {
posts.getPostData(mainPid, callback);
},
cid: function(callback) {
posts.getCidByPid(mainPid, callback);
}
}, function(err, results) {
if (err) {
return callback(err);
}
Topics.create({uid: results.postData.uid, title: title, cid: results.cid}, function(err, tid) {
if (err) {
return callback(err);
}
async.eachSeries(pids, move, function(err) {
if (err) {
return callback(err);
}
Topics.updateTimestamp(tid, Date.now(), function(err) {
if (err) {
return callback(err);
}
Topics.getTopicData(tid, callback);
});
});
function move(pid, next) {
privileges.posts.canEdit(pid, uid, function(err, canEdit) {
if(err || !canEdit) {
return next(err);
}
Topics.movePostToTopic(pid, tid, next);
});
}
});
});
};
Topics.movePostToTopic = function(pid, tid, callback) {
var postData;
async.waterfall([
function(next) {
Topics.exists(tid, next);
},
function(exists, next) {
if (!exists) {
return next(new Error('[[error:no-topic]]'));
}
posts.getPostFields(pid, ['tid', 'timestamp', 'votes'], next);
},
function(post, next) {
if (!post || !post.tid) {
return next(new Error('[[error:no-post]]'));
}
if (parseInt(post.tid, 10) === parseInt(tid, 10)) {
return next(new Error('[[error:cant-move-to-same-topic]]'));
}
postData = post;
postData.pid = pid;
Topics.removePostFromTopic(postData.tid, pid, next);
},
function(next) {
async.parallel([
function(next) {
Topics.decreasePostCount(postData.tid, next);
},
function(next) {
Topics.increasePostCount(tid, next);
},
function(next) {
posts.setPostField(pid, 'tid', tid, next);
},
function(next) {
Topics.addPostToTopic(tid, pid, postData.timestamp, postData.votes, next);
}
], next);
},
function(results, next) {
async.parallel([
async.apply(updateRecentTopic, tid),
async.apply(updateRecentTopic, postData.tid)
], next);
}
], function(err) {
if (err) {
return callback(err);
}
plugins.fireHook('action:post.move', {post: postData, tid: tid});
callback();
});
};
function updateRecentTopic(tid, callback) {
async.waterfall([
function(next) {
Topics.getLatestUndeletedPid(tid, next);
},
function(pid, next) {
if (!pid) {
return callback();
}
posts.getPostField(pid, 'timestamp', next);
},
function(timestamp, next) {
Topics.updateTimestamp(tid, timestamp, next);
}
], callback);
}
};