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.

267 lines
6.1 KiB
JavaScript

'use strict';
var async = require('async'),
db = require('../database'),
categories = require('../categories'),
plugins = require('../plugins'),
privileges = require('../privileges');
module.exports = function(Topics) {
var topicTools = {};
Topics.tools = topicTools;
topicTools.delete = function(tid, uid, callback) {
toggleDelete(tid, uid, true, callback);
};
topicTools.restore = function(tid, uid, callback) {
toggleDelete(tid, uid, false, callback);
};
function toggleDelete(tid, uid, isDelete, callback) {
var topicData;
async.waterfall([
function (next) {
Topics.exists(tid, next);
},
function (exists, next) {
if (!exists) {
return next(new Error('[[error:no-topic]]'));
}
privileges.topics.isOwnerOrAdminOrMod(tid, uid, next);
},
function (isOwnerOrAdminOrMod, next) {
if (!isOwnerOrAdminOrMod) {
return next(new Error('[[error:no-privileges]]'));
}
Topics.getTopicFields(tid, ['tid', 'cid', 'uid', 'deleted', 'title', 'mainPid'], next);
},
function (_topicData, next) {
topicData = _topicData;
if (parseInt(topicData.deleted, 10) === 1 && isDelete) {
return callback(new Error('[[error:topic-already-deleted]]'));
} else if(parseInt(topicData.deleted, 10) !== 1 && !isDelete) {
return callback(new Error('[[error:topic-already-restored]]'));
}
Topics[isDelete ? 'delete' : 'restore'](tid, uid, next);
},
function (next) {
topicData.deleted = isDelete ? 1 : 0;
if (isDelete) {
plugins.fireHook('action:topic.delete', topicData);
} else {
plugins.fireHook('action:topic.restore', topicData);
}
var data = {
tid: tid,
cid: topicData.cid,
isDelete: isDelete,
uid: uid
};
next(null, data);
}
], callback);
}
topicTools.purge = function(tid, uid, callback) {
var cid;
async.waterfall([
function(next) {
Topics.exists(tid, next);
},
function(exists, next) {
if (!exists) {
return callback();
}
privileges.topics.canPurge(tid, uid, next);
},
function (canPurge, next) {
if (!canPurge) {
return next(new Error('[[error:no-privileges]]'));
}
Topics.getTopicField(tid, 'cid', next);
},
function (_cid, next) {
cid = _cid;
Topics.purgePostsAndTopic(tid, uid, next);
},
function (next) {
next(null, {tid: tid, cid: cid, uid: uid});
}
], callback);
};
topicTools.lock = function(tid, uid, callback) {
toggleLock(tid, uid, true, callback);
};
topicTools.unlock = function(tid, uid, callback) {
toggleLock(tid, uid, false, callback);
};
function toggleLock(tid, uid, lock, callback) {
callback = callback || function() {};
var cid;
async.waterfall([
function (next) {
Topics.getTopicField(tid, 'cid', next);
},
function (_cid, next) {
cid = _cid;
if (!cid) {
return next(new Error('[[error:no-topic]]'));
}
privileges.categories.isAdminOrMod(cid, uid, next);
},
function (isAdminOrMod, next) {
if (!isAdminOrMod) {
return next(new Error('[[error:no-privileges]]'));
}
Topics.setTopicField(tid, 'locked', lock ? 1 : 0, next);
},
function (next) {
var data = {
tid: tid,
isLocked: lock,
uid: uid,
cid: cid
};
plugins.fireHook('action:topic.lock', data);
next(null, data);
}
], callback);
}
topicTools.pin = function(tid, uid, callback) {
togglePin(tid, uid, true, callback);
};
topicTools.unpin = function(tid, uid, callback) {
togglePin(tid, uid, false, callback);
};
function togglePin(tid, uid, pin, callback) {
var topicData;
async.waterfall([
function (next) {
Topics.exists(tid, next);
},
function (exists, next) {
if (!exists) {
return callback(new Error('[[error:no-topic]]'));
}
Topics.getTopicFields(tid, ['cid', 'lastposttime'], next);
},
function (_topicData, next) {
topicData = _topicData;
privileges.categories.isAdminOrMod(_topicData.cid, uid, next);
},
function(isAdminOrMod, next) {
if (!isAdminOrMod) {
return next(new Error('[[error:no-privileges]]'));
}
async.parallel([
async.apply(Topics.setTopicField, tid, 'pinned', pin ? 1 : 0),
async.apply(db.sortedSetAdd, 'cid:' + topicData.cid + ':tids', pin ? Math.pow(2, 53) : topicData.lastposttime, tid)
], next);
},
function(results, next) {
var data = {
tid: tid,
isPinned: pin,
uid: uid,
cid: topicData.cid
};
plugins.fireHook('action:topic.pin', data);
next(null, data);
}
], callback);
}
topicTools.move = function(tid, cid, uid, callback) {
var topic;
async.waterfall([
function (next) {
Topics.exists(tid, next);
},
function (exists, next) {
if (!exists) {
return next(new Error('[[error:no-topic]]'));
}
Topics.getTopicFields(tid, ['cid', 'lastposttime', 'pinned', 'deleted', 'postcount'], next);
},
function (topicData, next) {
topic = topicData;
db.sortedSetsRemove([
'cid:' + topicData.cid + ':tids',
'cid:' + topicData.cid + ':tids:posts'
], tid, next);
},
function (next) {
var timestamp = parseInt(topic.pinned, 10) ? Math.pow(2, 53) : topic.lastposttime;
async.parallel([
function(next) {
db.sortedSetAdd('cid:' + cid + ':tids', timestamp, tid, next);
},
function(next) {
topic.postcount = topic.postcount || 0;
db.sortedSetAdd('cid:' + cid + ':tids:posts', topic.postcount, tid, next);
}
], next);
}
], function(err) {
if (err) {
return callback(err);
}
var oldCid = topic.cid;
categories.moveRecentReplies(tid, oldCid, cid);
async.parallel([
function (next) {
categories.incrementCategoryFieldBy(oldCid, 'topic_count', -1, next);
},
function (next) {
categories.incrementCategoryFieldBy(cid, 'topic_count', 1, next);
},
function (next) {
Topics.setTopicFields(tid, {
cid: cid,
oldCid: oldCid
}, next);
}
], function(err) {
if (err) {
return callback(err);
}
plugins.fireHook('action:topic.move', {
tid: tid,
fromCid: oldCid,
toCid: cid,
uid: uid
});
callback();
});
});
};
};