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.
185 lines
5.0 KiB
JavaScript
185 lines
5.0 KiB
JavaScript
'use strict';
|
|
|
|
const _ = require('lodash');
|
|
|
|
const db = require('../database');
|
|
const user = require('../user');
|
|
const meta = require('../meta');
|
|
const groups = require('../groups');
|
|
const topics = require('../topics');
|
|
const categories = require('../categories');
|
|
const notifications = require('../notifications');
|
|
const privileges = require('../privileges');
|
|
const plugins = require('../plugins');
|
|
const socketHelpers = require('../socket.io/helpers');
|
|
|
|
module.exports = function (Posts) {
|
|
Posts.shouldQueue = async function (uid, data) {
|
|
const userData = await user.getUserFields(uid, ['uid', 'reputation', 'postcount']);
|
|
const isMemberOfExempt = await groups.isMemberOfAny(userData.uid, meta.config.groupsExemptFromPostQueue);
|
|
const shouldQueue = meta.config.postQueue && !isMemberOfExempt && (!userData.uid || userData.reputation < meta.config.postQueueReputationThreshold || userData.postcount <= 0);
|
|
const result = await plugins.fireHook('filter:post.shouldQueue', {
|
|
shouldQueue: !!shouldQueue,
|
|
uid: uid,
|
|
data: data,
|
|
});
|
|
return result.shouldQueue;
|
|
};
|
|
|
|
async function removeQueueNotification(id) {
|
|
await notifications.rescind('post-queue-' + id);
|
|
const data = await getParsedObject(id);
|
|
if (!data) {
|
|
return;
|
|
}
|
|
const cid = await getCid(data.type, data);
|
|
const uids = await getNotificationUids(cid);
|
|
uids.forEach(uid => user.notifications.pushCount(uid));
|
|
}
|
|
|
|
async function getNotificationUids(cid) {
|
|
const results = await Promise.all([
|
|
groups.getMembersOfGroups(['administrators', 'Global Moderators']),
|
|
categories.getModeratorUids([cid]),
|
|
]);
|
|
return _.uniq(_.flattenDeep(results));
|
|
}
|
|
|
|
Posts.addToQueue = async function (data) {
|
|
const type = data.title ? 'topic' : 'reply';
|
|
const now = Date.now();
|
|
const id = type + '-' + now;
|
|
await canPost(type, data);
|
|
await db.sortedSetAdd('post:queue', now, id);
|
|
await db.setObject('post:queue:' + id, {
|
|
id: id,
|
|
uid: data.uid,
|
|
type: type,
|
|
data: JSON.stringify(data),
|
|
});
|
|
await user.setUserField(data.uid, 'lastqueuetime', now);
|
|
|
|
const cid = await getCid(type, data);
|
|
const uids = await getNotificationUids(cid);
|
|
const notifObj = await notifications.create({
|
|
type: 'post-queue',
|
|
nid: 'post-queue-' + id,
|
|
mergeId: 'post-queue',
|
|
bodyShort: '[[notifications:post_awaiting_review]]',
|
|
bodyLong: data.content,
|
|
path: '/post-queue',
|
|
});
|
|
await notifications.push(notifObj, uids);
|
|
return {
|
|
id: id,
|
|
type: type,
|
|
queued: true,
|
|
message: '[[success:post-queued]]',
|
|
};
|
|
};
|
|
|
|
async function getCid(type, data) {
|
|
if (type === 'topic') {
|
|
return data.cid;
|
|
} else if (type === 'reply') {
|
|
return await topics.getTopicField(data.tid, 'cid');
|
|
}
|
|
return null;
|
|
}
|
|
|
|
async function canPost(type, data) {
|
|
const cid = await getCid(type, data);
|
|
const typeToPrivilege = {
|
|
topic: 'topics:create',
|
|
reply: 'topics:reply',
|
|
};
|
|
|
|
const [canPost] = await Promise.all([
|
|
privileges.categories.can(typeToPrivilege[type], cid, data.uid),
|
|
user.isReadyToQueue(data.uid, cid),
|
|
]);
|
|
if (!canPost) {
|
|
throw new Error('[[error:no-privileges]]');
|
|
}
|
|
}
|
|
|
|
Posts.removeFromQueue = async function (id) {
|
|
await removeQueueNotification(id);
|
|
await db.sortedSetRemove('post:queue', id);
|
|
await db.delete('post:queue:' + id);
|
|
};
|
|
|
|
Posts.submitFromQueue = async function (id) {
|
|
const data = await getParsedObject(id);
|
|
if (!data) {
|
|
return;
|
|
}
|
|
if (data.type === 'topic') {
|
|
await createTopic(data.data);
|
|
} else if (data.type === 'reply') {
|
|
await createReply(data.data);
|
|
}
|
|
await Posts.removeFromQueue(id);
|
|
};
|
|
|
|
async function getParsedObject(id) {
|
|
const data = await db.getObject('post:queue:' + id);
|
|
if (!data) {
|
|
return null;
|
|
}
|
|
data.data = JSON.parse(data.data);
|
|
data.data.fromQueue = true;
|
|
return data;
|
|
}
|
|
|
|
async function createTopic(data) {
|
|
const result = await topics.post(data);
|
|
socketHelpers.notifyNew(data.uid, 'newTopic', { posts: [result.postData], topic: result.topicData });
|
|
}
|
|
|
|
async function createReply(data) {
|
|
const postData = await topics.reply(data);
|
|
const result = {
|
|
posts: [postData],
|
|
'reputation:disabled': !!meta.config['reputation:disabled'],
|
|
'downvote:disabled': !!meta.config['downvote:disabled'],
|
|
};
|
|
socketHelpers.notifyNew(data.uid, 'newPost', result);
|
|
}
|
|
|
|
Posts.editQueuedContent = async function (uid, id, content) {
|
|
const canEditQueue = await Posts.canEditQueue(uid, id);
|
|
if (!canEditQueue) {
|
|
throw new Error('[[error:no-privileges]]');
|
|
}
|
|
const data = await getParsedObject(id);
|
|
if (!data) {
|
|
return;
|
|
}
|
|
data.data.content = content;
|
|
await db.setObjectField('post:queue:' + id, 'data', JSON.stringify(data.data));
|
|
};
|
|
|
|
Posts.canEditQueue = async function (uid, id) {
|
|
const [isAdminOrGlobalMod, data] = await Promise.all([
|
|
user.isAdminOrGlobalMod(uid),
|
|
getParsedObject(id),
|
|
]);
|
|
if (!data) {
|
|
return false;
|
|
}
|
|
|
|
if (isAdminOrGlobalMod) {
|
|
return true;
|
|
}
|
|
|
|
let cid;
|
|
if (data.type === 'topic') {
|
|
cid = data.data.cid;
|
|
} else if (data.type === 'reply') {
|
|
cid = await topics.getTopicField(data.data.tid, 'cid');
|
|
}
|
|
return await user.isModerator(uid, cid);
|
|
};
|
|
};
|