mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-24 00:09:41 +01:00
83 lines
2.1 KiB
JavaScript
83 lines
2.1 KiB
JavaScript
'use strict';
|
|
|
|
|
|
var async = require('async');
|
|
var posts = require('../../posts');
|
|
var plugins = require('../../plugins');
|
|
var websockets = require('../index');
|
|
var socketHelpers = require('../helpers');
|
|
|
|
var helpers = module.exports;
|
|
|
|
helpers.postCommand = function (socket, command, eventName, notification, data, callback) {
|
|
if (!socket.uid) {
|
|
return callback(new Error('[[error:not-logged-in]]'));
|
|
}
|
|
|
|
if (!data || !data.pid) {
|
|
return callback(new Error('[[error:invalid-data]]'));
|
|
}
|
|
|
|
if (!data.room_id) {
|
|
return callback(new Error('[[error:invalid-room-id, ' + data.room_id + ' ]]'));
|
|
}
|
|
|
|
async.waterfall([
|
|
function (next) {
|
|
async.parallel({
|
|
exists: function (next) {
|
|
posts.exists(data.pid, next);
|
|
},
|
|
deleted: function (next) {
|
|
posts.getPostField(data.pid, 'deleted', next);
|
|
},
|
|
}, next);
|
|
},
|
|
function (results, next) {
|
|
if (!results.exists) {
|
|
return next(new Error('[[error:invalid-pid]]'));
|
|
}
|
|
|
|
if (results.deleted) {
|
|
return next(new Error('[[error:post-deleted]]'));
|
|
}
|
|
|
|
/*
|
|
hooks:
|
|
filter:post.upvote
|
|
filter:post.downvote
|
|
filter:post.unvote
|
|
filter:post.bookmark
|
|
filter:post.unbookmark
|
|
*/
|
|
plugins.fireHook('filter:post.' + command, { data: data, uid: socket.uid }, next);
|
|
},
|
|
function (filteredData, next) {
|
|
executeCommand(socket, command, eventName, notification, filteredData.data, next);
|
|
},
|
|
], callback);
|
|
};
|
|
|
|
function executeCommand(socket, command, eventName, notification, data, callback) {
|
|
async.waterfall([
|
|
function (next) {
|
|
posts[command](data.pid, socket.uid, next);
|
|
},
|
|
function (result, next) {
|
|
if (result && eventName) {
|
|
websockets.in('uid_' + socket.uid).emit('posts.' + command, result);
|
|
websockets.in(data.room_id).emit('event:' + eventName, result);
|
|
}
|
|
|
|
if (result && command === 'upvote') {
|
|
socketHelpers.upvote(result, notification);
|
|
} else if (result && notification) {
|
|
socketHelpers.sendNotificationToPostOwner(data.pid, socket.uid, command, notification);
|
|
} else if (result && command === 'unvote') {
|
|
socketHelpers.rescindUpvoteNotification(data.pid, socket.uid);
|
|
}
|
|
next(null, result);
|
|
},
|
|
], callback);
|
|
}
|