Files
NodeBB/src/posts/create.js

84 lines
2.3 KiB
JavaScript
Raw Normal View History

2014-11-09 01:12:24 -05:00
'use strict';
2017-05-26 01:39:40 -06:00
var _ = require('lodash');
2014-11-09 01:12:24 -05:00
2016-06-13 14:02:54 +03:00
var meta = require('../meta');
var db = require('../database');
var plugins = require('../plugins');
var user = require('../user');
var topics = require('../topics');
var categories = require('../categories');
var groups = require('../groups');
var 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
2019-07-17 00:17:21 -04:00
const uid = data.uid;
const tid = data.tid;
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 && !utils.isNumber(data.toPid)) {
2019-07-17 00:17:21 -04:00
throw new Error('[[error:invalid-pid]]');
}
2019-07-17 00:17:21 -04:00
const pid = await db.incrObjectField('global', 'nextPid');
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
let result = await plugins.hooks.fire('filter:post.create', { post: postData, data: data });
2019-07-17 00:17:21 -04:00
postData = result.post;
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),
db.incrObjectField('global', 'postCount'),
user.onNewPostMade(postData),
topics.onNewPostMade(postData),
categories.onNewPostMade(topicData.cid, topicData.pinned, postData),
groups.onNewPostMade(postData),
addReplyTo(postData, timestamp),
Posts.uploads.sync(postData.pid),
]);
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: _.clone(result.post) });
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([
db.sortedSetAdd('pid:' + postData.toPid + ':replies', timestamp, postData.pid),
db.incrObjectField('post:' + postData.toPid, 'replies'),
]);
}
2014-11-09 01:12:24 -05:00
};