refactor: remove posts.tools.purge

moved the check to socketPosts.purge
v1.18.x
Barış Soner Uşaklı 4 years ago
parent dde5b6b814
commit ed092bf6b5

@ -41,13 +41,4 @@ module.exports = function (Posts) {
} }
return post; return post;
} }
Posts.tools.purge = async function (uid, pid) {
const canPurge = await privileges.posts.canPurge(pid, uid);
if (!canPurge) {
throw new Error('[[error:no-privileges]]');
}
require('./cache').del(pid);
await Posts.purge(pid, uid);
};
}; };

@ -131,7 +131,12 @@ module.exports = function (SocketPosts) {
const postData = await posts.getPostFields(data.pid, ['toPid', 'tid']); const postData = await posts.getPostFields(data.pid, ['toPid', 'tid']);
postData.pid = data.pid; postData.pid = data.pid;
await posts.tools.purge(socket.uid, data.pid); const canPurge = await privileges.posts.canPurge(data.pid, socket.uid);
if (!canPurge) {
throw new Error('[[error:no-privileges]]');
}
require('../../posts/cache').del(data.pid);
await posts.purge(data.pid, socket.uid);
websockets.in('topic_' + postData.tid).emit('event:post_purged', postData); websockets.in('topic_' + postData.tid).emit('event:post_purged', postData);
const topicData = await topics.getTopicFields(postData.tid, ['title', 'cid']); const topicData = await topics.getTopicFields(postData.tid, ['title', 'cid']);

Loading…
Cancel
Save