You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
2.2 KiB
JavaScript

'use strict';
var async = require('async'),
winston = require('winston'),
db = require('./../database'),
posts = require('./../posts'),
privileges = require('../privileges'),
postTools = require('./../postTools'),
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();
var mainPid = pids[0];
async.parallel({
postData: function(callback) {
posts.getPostData(mainPid, callback);
},
cid: function(callback) {
posts.getCidByPid(mainPid, callback);
}
}, function(err, results) {
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());
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) {
threadTools.exists(tid, function(err, exists) {
if(err || !exists) {
return callback(err || new Error('[[error:no-topic]]'));
}
posts.getPostFields(pid, ['deleted', 'tid', 'timestamp', 'votes'], function(err, postData) {
if(err) {
return callback(err);
}
if(!postData || !postData.tid) {
return callback(new Error('[[error:no-post]]'));
}
Topics.removePostFromTopic(postData.tid, pid, function(err) {
if(err) {
return callback(err);
}
if(!parseInt(postData.deleted, 10)) {
Topics.decreasePostCount(postData.tid);
Topics.increasePostCount(tid);
}
posts.setPostField(pid, 'tid', tid);
Topics.addPostToTopic(tid, pid, postData.timestamp, postData.votes, callback);
});
});
});
};
};