Files
NodeBB/src/posts/create.js

92 lines
2.7 KiB
JavaScript
Raw Normal View History

2014-11-09 01:12:24 -05:00
'use strict';
2021-02-04 00:06:15 -07:00
const meta = require('../meta');
const db = require('../database');
const plugins = require('../plugins');
const user = require('../user');
const topics = require('../topics');
const categories = require('../categories');
const groups = require('../groups');
const privileges = require('../privileges');
2024-03-12 13:27:29 -04:00
const utils = require('../utils');
2014-11-09 01:12:24 -05:00
module.exports = function (Posts) {
2019-07-17 00:17:21 -04:00
Posts.create = async function (data) {
// This is an internal method, consider using Topics.reply instead
2024-03-12 13:27:29 -04:00
const { uid, tid, _activitypub } = data;
2019-07-17 00:17:21 -04:00
const content = data.content.toString();
const timestamp = data.timestamp || Date.now();
const isMain = data.isMain || false;
2014-11-09 01:12:24 -05:00
if (!uid && parseInt(uid, 10) !== 0) {
2019-07-17 00:17:21 -04:00
throw new Error('[[error:invalid-uid]]');
2014-11-09 01:12:24 -05:00
}
if (data.toPid) {
2023-09-25 11:20:21 -04:00
await checkToPid(data.toPid, uid);
}
2024-03-12 13:27:29 -04:00
const pid = data.pid || await db.incrObjectField('global', 'nextPid');
2019-07-17 00:17:21 -04:00
let postData = {
pid: pid,
uid: uid,
tid: tid,
content: content,
timestamp: timestamp,
};
2014-11-09 01:12:24 -05:00
2019-07-17 00:17:21 -04:00
if (data.toPid) {
postData.toPid = data.toPid;
}
if (data.ip && meta.config.trackIpPerPost) {
postData.ip = data.ip;
}
if (data.handle && !parseInt(uid, 10)) {
postData.handle = data.handle;
}
2014-11-09 01:12:24 -05:00
({ post: postData } = await plugins.hooks.fire('filter:post.create', { post: postData, data: data }));
2021-02-03 23:59:08 -07:00
await db.setObject(`post:${postData.pid}`, postData);
2014-11-09 01:12:24 -05:00
2019-07-17 00:17:21 -04:00
const topicData = await topics.getTopicFields(tid, ['cid', 'pinned']);
postData.cid = topicData.cid;
2014-12-05 13:07:13 -05:00
2019-07-17 00:17:21 -04:00
await Promise.all([
db.sortedSetAdd('posts:pid', timestamp, postData.pid),
2024-03-12 13:27:29 -04:00
utils.isNumber(pid) ? db.incrObjectField('global', 'postCount') : null,
2019-07-17 00:17:21 -04:00
user.onNewPostMade(postData),
topics.onNewPostMade(postData),
categories.onNewPostMade(topicData.cid, topicData.pinned, postData),
groups.onNewPostMade(postData),
addReplyTo(postData, timestamp),
Posts.uploads.sync(postData.pid),
]);
const result = await plugins.hooks.fire('filter:post.get', { post: postData, uid: data.uid });
2019-07-17 00:17:21 -04:00
result.post.isMain = isMain;
plugins.hooks.fire('action:post.save', { post: { ...result.post, _activitypub } });
2019-07-17 00:17:21 -04:00
return result.post;
2014-11-09 01:12:24 -05:00
};
2019-07-17 00:17:21 -04:00
async function addReplyTo(postData, timestamp) {
if (!postData.toPid) {
return;
}
await Promise.all([
2021-02-03 23:59:08 -07:00
db.sortedSetAdd(`pid:${postData.toPid}:replies`, timestamp, postData.pid),
db.incrObjectField(`post:${postData.toPid}`, 'replies'),
2019-07-17 00:17:21 -04:00
]);
}
async function checkToPid(toPid, uid) {
const [toPost, canViewToPid] = await Promise.all([
Posts.getPostFields(toPid, ['pid', 'deleted']),
privileges.posts.can('posts:view_deleted', toPid, uid),
]);
const toPidExists = !!toPost.pid;
if (!toPidExists || (toPost.deleted && !canViewToPid)) {
throw new Error('[[error:invalid-pid]]');
}
}
2014-11-09 01:12:24 -05:00
};