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.
149 lines
3.9 KiB
JavaScript
149 lines
3.9 KiB
JavaScript
'use strict';
|
|
|
|
var async = require('async');
|
|
|
|
var topics = require('../topics');
|
|
var posts = require('../posts');
|
|
var websockets = require('./index');
|
|
var user = require('../user');
|
|
var meta = require('../meta');
|
|
var apiController = require('../controllers/api');
|
|
var privileges = require('../privileges');
|
|
var socketHelpers = require('./helpers');
|
|
|
|
var 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 = function (socket, data, callback) {
|
|
if (!data) {
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
}
|
|
|
|
data.uid = socket.uid;
|
|
data.req = websockets.reqFromSocket(socket);
|
|
data.timestamp = Date.now();
|
|
|
|
async.waterfall([
|
|
function (next) {
|
|
meta.blacklist.test(data.req.ip, next);
|
|
},
|
|
function (next) {
|
|
posts.shouldQueue(socket.uid, data, next);
|
|
},
|
|
function (shouldQueue, next) {
|
|
if (shouldQueue) {
|
|
posts.addToQueue(data, next);
|
|
} else {
|
|
postTopic(socket, data, next);
|
|
}
|
|
},
|
|
], callback);
|
|
};
|
|
|
|
function postTopic(socket, data, callback) {
|
|
async.waterfall([
|
|
function (next) {
|
|
topics.post(data, next);
|
|
},
|
|
function (result, next) {
|
|
next(null, result.topicData);
|
|
|
|
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 });
|
|
},
|
|
], callback);
|
|
}
|
|
|
|
SocketTopics.postcount = function (socket, tid, callback) {
|
|
async.waterfall([
|
|
function (next) {
|
|
privileges.topics.can('read', tid, socket.uid, next);
|
|
},
|
|
function (canRead, next) {
|
|
if (!canRead) {
|
|
return next(new Error('[[no-privileges]]'));
|
|
}
|
|
|
|
topics.getTopicField(tid, 'postcount', next);
|
|
},
|
|
], callback);
|
|
};
|
|
|
|
SocketTopics.bookmark = function (socket, data, callback) {
|
|
if (!socket.uid || !data) {
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
}
|
|
topics.setUserBookmark(data.tid, socket.uid, data.index, callback);
|
|
};
|
|
|
|
SocketTopics.createTopicFromPosts = function (socket, data, callback) {
|
|
if (!socket.uid) {
|
|
return callback(new Error('[[error:not-logged-in]]'));
|
|
}
|
|
|
|
if (!data || !data.title || !data.pids || !Array.isArray(data.pids)) {
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
}
|
|
|
|
topics.createTopicFromPosts(socket.uid, data.title, data.pids, data.fromTid, callback);
|
|
};
|
|
|
|
SocketTopics.changeWatching = function (socket, data, callback) {
|
|
if (!data || !data.tid || !data.type) {
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
}
|
|
var commands = ['follow', 'unfollow', 'ignore'];
|
|
if (commands.indexOf(data.type) === -1) {
|
|
return callback(new Error('[[error:invalid-command]]'));
|
|
}
|
|
followCommand(topics[data.type], socket, data.tid, callback);
|
|
};
|
|
|
|
SocketTopics.follow = function (socket, tid, callback) {
|
|
followCommand(topics.follow, socket, tid, callback);
|
|
};
|
|
|
|
function followCommand(method, socket, tid, callback) {
|
|
if (!socket.uid) {
|
|
return callback(new Error('[[error:not-logged-in]]'));
|
|
}
|
|
|
|
method(tid, socket.uid, callback);
|
|
}
|
|
|
|
SocketTopics.isFollowed = function (socket, tid, callback) {
|
|
topics.isFollowing([tid], socket.uid, function (err, isFollowing) {
|
|
callback(err, Array.isArray(isFollowing) && isFollowing.length ? isFollowing[0] : false);
|
|
});
|
|
};
|
|
|
|
SocketTopics.search = function (socket, data, callback) {
|
|
if (!data) {
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
}
|
|
topics.search(data.tid, data.term, callback);
|
|
};
|
|
|
|
SocketTopics.isModerator = function (socket, tid, callback) {
|
|
async.waterfall([
|
|
function (next) {
|
|
topics.getTopicField(tid, 'cid', next);
|
|
},
|
|
function (cid, next) {
|
|
user.isModerator(socket.uid, cid, next);
|
|
},
|
|
], callback);
|
|
};
|
|
|
|
SocketTopics.getTopic = function (socket, tid, callback) {
|
|
apiController.getTopicData(tid, socket.uid, callback);
|
|
};
|