Files
NodeBB/src/socket.io/topics.js
2020-10-08 15:33:10 -04:00

122 lines
3.5 KiB
JavaScript

'use strict';
const topics = require('../topics');
const posts = require('../posts');
const user = require('../user');
const meta = require('../meta');
const apiController = require('../controllers/api');
const privileges = require('../privileges');
const sockets = require('.');
const socketHelpers = require('./helpers');
const SocketTopics = module.exports;
require('./topics/unread')(SocketTopics);
require('./topics/move')(SocketTopics);
require('./topics/tools')(SocketTopics);
require('./topics/infinitescroll')(SocketTopics);
require('./topics/tags')(SocketTopics);
require('./topics/merge')(SocketTopics);
SocketTopics.post = async function (socket, data) {
sockets.warnDeprecated(socket, 'POST /api/v1/topics');
if (!data) {
throw new Error('[[error:invalid-data]]');
}
socketHelpers.setDefaultPostData(data, socket);
await meta.blacklist.test(data.req.ip);
const shouldQueue = await posts.shouldQueue(socket.uid, data);
if (shouldQueue) {
return await posts.addToQueue(data);
}
return await postTopic(socket, data);
};
async function postTopic(socket, data) {
const result = await topics.post(data);
socket.emit('event:new_post', { posts: [result.postData] });
socket.emit('event:new_topic', result.topicData);
socketHelpers.notifyNew(socket.uid, 'newTopic', { posts: [result.postData], topic: result.topicData });
return result.topicData;
}
SocketTopics.postcount = async function (socket, tid) {
const canRead = await privileges.topics.can('topics:read', tid, socket.uid);
if (!canRead) {
throw new Error('[[no-privileges]]');
}
return await topics.getTopicField(tid, 'postcount');
};
SocketTopics.bookmark = async function (socket, data) {
if (!socket.uid || !data) {
throw new Error('[[error:invalid-data]]');
}
const postcount = await topics.getTopicField(data.tid, 'postcount');
if (data.index > meta.config.bookmarkThreshold && postcount > meta.config.bookmarkThreshold) {
await topics.setUserBookmark(data.tid, socket.uid, data.index);
}
};
SocketTopics.createTopicFromPosts = async function (socket, data) {
if (!socket.uid) {
throw new Error('[[error:not-logged-in]]');
}
if (!data || !data.title || !data.pids || !Array.isArray(data.pids)) {
throw new Error('[[error:invalid-data]]');
}
return await topics.createTopicFromPosts(socket.uid, data.title, data.pids, data.fromTid);
};
SocketTopics.changeWatching = async function (socket, data) {
if (!data || !data.tid || !data.type) {
throw new Error('[[error:invalid-data]]');
}
const commands = ['follow', 'unfollow', 'ignore'];
if (!commands.includes(data.type)) {
throw new Error('[[error:invalid-command]]');
}
await followCommand(topics[data.type], socket, data.tid);
};
SocketTopics.follow = async function (socket, tid) {
await followCommand(topics.follow, socket, tid);
};
async function followCommand(method, socket, tid) {
if (!socket.uid) {
throw new Error('[[error:not-logged-in]]');
}
await method(tid, socket.uid);
}
SocketTopics.isFollowed = async function (socket, tid) {
const isFollowing = await topics.isFollowing([tid], socket.uid);
return isFollowing[0];
};
SocketTopics.search = async function (socket, data) {
if (!data) {
throw new Error('[[error:invalid-data]]');
}
return await topics.search(data.tid, data.term);
};
SocketTopics.isModerator = async function (socket, tid) {
const cid = await topics.getTopicField(tid, 'cid');
return await user.isModerator(socket.uid, cid);
};
SocketTopics.getTopic = async function (socket, tid) {
return await apiController.getTopicData(tid, socket.uid);
};
require('../promisify')(SocketTopics);