mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-12 17:05:51 +01:00
topic exists checks
This commit is contained in:
@@ -26,6 +26,12 @@ module.exports = function(Topics) {
|
|||||||
var topicData;
|
var topicData;
|
||||||
async.waterfall([
|
async.waterfall([
|
||||||
function (next) {
|
function (next) {
|
||||||
|
Topics.exists(tid, next);
|
||||||
|
},
|
||||||
|
function (exists, next) {
|
||||||
|
if (!exists) {
|
||||||
|
return next(new Error('[[error:no-topic]]'));
|
||||||
|
}
|
||||||
privileges.topics.isOwnerOrAdminOrMod(tid, uid, next);
|
privileges.topics.isOwnerOrAdminOrMod(tid, uid, next);
|
||||||
},
|
},
|
||||||
function (isOwnerOrAdminOrMod, next) {
|
function (isOwnerOrAdminOrMod, next) {
|
||||||
@@ -158,7 +164,7 @@ module.exports = function(Topics) {
|
|||||||
},
|
},
|
||||||
function (exists, next) {
|
function (exists, next) {
|
||||||
if (!exists) {
|
if (!exists) {
|
||||||
return callback();
|
return callback(new Error('[[error:no-topic]]'));
|
||||||
}
|
}
|
||||||
Topics.getTopicFields(tid, ['cid', 'lastposttime'], next);
|
Topics.getTopicFields(tid, ['cid', 'lastposttime'], next);
|
||||||
},
|
},
|
||||||
@@ -193,17 +199,23 @@ module.exports = function(Topics) {
|
|||||||
topicTools.move = function(tid, cid, uid, callback) {
|
topicTools.move = function(tid, cid, uid, callback) {
|
||||||
var topic;
|
var topic;
|
||||||
async.waterfall([
|
async.waterfall([
|
||||||
function(next) {
|
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);
|
Topics.getTopicFields(tid, ['cid', 'lastposttime', 'pinned', 'deleted', 'postcount'], next);
|
||||||
},
|
},
|
||||||
function(topicData, next) {
|
function (topicData, next) {
|
||||||
topic = topicData;
|
topic = topicData;
|
||||||
db.sortedSetsRemove([
|
db.sortedSetsRemove([
|
||||||
'cid:' + topicData.cid + ':tids',
|
'cid:' + topicData.cid + ':tids',
|
||||||
'cid:' + topicData.cid + ':tids:posts'
|
'cid:' + topicData.cid + ':tids:posts'
|
||||||
], tid, next);
|
], tid, next);
|
||||||
},
|
},
|
||||||
function(next) {
|
function (next) {
|
||||||
var timestamp = parseInt(topic.pinned, 10) ? Math.pow(2, 53) : topic.lastposttime;
|
var timestamp = parseInt(topic.pinned, 10) ? Math.pow(2, 53) : topic.lastposttime;
|
||||||
async.parallel([
|
async.parallel([
|
||||||
function(next) {
|
function(next) {
|
||||||
|
|||||||
Reference in New Issue
Block a user