mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-24 09:20:32 +01:00
181 lines
4.8 KiB
JavaScript
181 lines
4.8 KiB
JavaScript
'use strict';
|
|
|
|
const url = require('url');
|
|
const user = require('../user');
|
|
const topics = require('../topics');
|
|
const posts = require('../posts');
|
|
const privileges = require('../privileges');
|
|
const plugins = require('../plugins');
|
|
const activitypub = require('../activitypub');
|
|
const utils = require('../utils');
|
|
const socketHelpers = require('../socket.io/helpers');
|
|
const websockets = require('../socket.io');
|
|
const events = require('../events');
|
|
|
|
exports.setDefaultPostData = function (reqOrSocket, data) {
|
|
data.uid = reqOrSocket.uid;
|
|
data.req = exports.buildReqObject(reqOrSocket, { ...data });
|
|
data.timestamp = Date.now();
|
|
data.fromQueue = false;
|
|
};
|
|
|
|
// creates a slimmed down version of the request object
|
|
exports.buildReqObject = (req, payload) => {
|
|
req = req || {};
|
|
const headers = req.headers || (req.request && req.request.headers) || {};
|
|
const session = req.session || (req.request && req.request.session) || {};
|
|
const encrypted = req.connection ? !!req.connection.encrypted : false;
|
|
let { host } = headers;
|
|
const referer = headers.referer || '';
|
|
|
|
if (!host) {
|
|
host = url.parse(referer).host || '';
|
|
}
|
|
|
|
return {
|
|
uid: req.uid,
|
|
params: req.params,
|
|
method: req.method,
|
|
body: payload || req.body,
|
|
session: JSON.parse(JSON.stringify(session)),
|
|
ip: req.ip,
|
|
host: host,
|
|
protocol: encrypted ? 'https' : 'http',
|
|
secure: encrypted,
|
|
url: referer,
|
|
path: referer.slice(referer.indexOf(host) + host.length),
|
|
baseUrl: req.baseUrl,
|
|
originalUrl: req.originalUrl,
|
|
headers: { ...headers },
|
|
};
|
|
};
|
|
|
|
exports.doTopicAction = async function (action, event, caller, { tids }) {
|
|
if (!Array.isArray(tids)) {
|
|
throw new Error('[[error:invalid-tid]]');
|
|
}
|
|
|
|
const exists = await topics.exists(tids);
|
|
if (!exists.every(Boolean)) {
|
|
throw new Error('[[error:no-topic]]');
|
|
}
|
|
|
|
if (typeof topics.tools[action] !== 'function') {
|
|
return;
|
|
}
|
|
|
|
const uids = await user.getUidsFromSet('users:online', 0, -1);
|
|
|
|
await Promise.all(tids.map(async (tid) => {
|
|
const { title, cid, mainPid } = await topics.getTopicFields(tid, ['title', 'cid', 'mainPid']);
|
|
const data = await topics.tools[action](tid, caller.uid);
|
|
const notifyUids = await privileges.categories.filterUids('topics:read', data.cid, uids);
|
|
socketHelpers.emitToUids(event, data, notifyUids);
|
|
await logTopicAction(action, caller, tid, title);
|
|
|
|
switch(action) {
|
|
case 'delete': // falls through
|
|
case 'purge': {
|
|
if (utils.isNumber(cid) && parseInt(cid, 10) > 0) {
|
|
activitypub.out.remove.context(caller.uid, tid); // 7888-style
|
|
activitypub.out.delete.note(caller.uid, mainPid); // 1b12-style
|
|
activitypub.out.undo.announce('cid', cid, tid); // microblogs
|
|
}
|
|
}
|
|
}
|
|
}));
|
|
};
|
|
|
|
async function logTopicAction(action, req, tid, title) {
|
|
// Only log certain actions to system event log
|
|
const actionsToLog = ['delete', 'restore', 'purge'];
|
|
if (!actionsToLog.includes(action)) {
|
|
return;
|
|
}
|
|
await events.log({
|
|
type: `topic-${action}`,
|
|
uid: req.uid,
|
|
ip: req.ip,
|
|
tid: tid,
|
|
title: String(title),
|
|
});
|
|
}
|
|
|
|
exports.postCommand = async function (caller, command, eventName, notification, data) {
|
|
if (!caller.uid) {
|
|
throw new Error('[[error:not-logged-in]]');
|
|
}
|
|
|
|
if (!data || !data.pid) {
|
|
throw new Error('[[error:invalid-data]]');
|
|
}
|
|
|
|
if (!data.room_id) {
|
|
throw new Error(`[[error:invalid-room-id, ${data.room_id}]]`);
|
|
}
|
|
const [exists, deleted] = await Promise.all([
|
|
posts.exists(data.pid),
|
|
posts.getPostField(data.pid, 'deleted'),
|
|
]);
|
|
|
|
if (!exists) {
|
|
throw new Error('[[error:invalid-pid]]');
|
|
}
|
|
|
|
if (deleted) {
|
|
throw new Error('[[error:post-deleted]]');
|
|
}
|
|
|
|
/*
|
|
hooks:
|
|
filter:post.upvote
|
|
filter:post.downvote
|
|
filter:post.unvote
|
|
filter:post.bookmark
|
|
filter:post.unbookmark
|
|
*/
|
|
const filteredData = await plugins.hooks.fire(`filter:post.${command}`, {
|
|
data: data,
|
|
uid: caller.uid,
|
|
});
|
|
return await executeCommand(caller, command, eventName, notification, filteredData.data);
|
|
};
|
|
|
|
async function executeCommand(caller, command, eventName, notification, data) {
|
|
const result = await posts[command](data.pid, caller.uid);
|
|
if (result && eventName) {
|
|
websockets.in(`uid_${caller.uid}`).emit(`posts.${command}`, result);
|
|
websockets.in(data.room_id).emit(`event:${eventName}`, result);
|
|
}
|
|
|
|
if (result) {
|
|
switch (command) {
|
|
case 'upvote': {
|
|
socketHelpers.upvote(result, notification);
|
|
await activitypub.out.like.note(caller.uid, data.pid);
|
|
break;
|
|
}
|
|
|
|
case 'downvote': {
|
|
await activitypub.out.dislike.note(caller.uid, data.pid);
|
|
break;
|
|
}
|
|
|
|
case 'unvote': {
|
|
socketHelpers.rescindUpvoteNotification(data.pid, caller.uid);
|
|
await activitypub.out.undo.like(caller.uid, data.pid);
|
|
break;
|
|
}
|
|
|
|
default: {
|
|
if (notification) {
|
|
socketHelpers.sendNotificationToPostOwner(data.pid, caller.uid, command, notification);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|