Files
NodeBB/src/socket.io/posts.js

323 lines
8.0 KiB
JavaScript
Raw Normal View History

2014-03-11 14:48:35 -04:00
"use strict";
2014-01-30 17:41:54 -05:00
var async = require('async'),
nconf = require('nconf'),
posts = require('../posts'),
2014-01-10 16:00:03 -05:00
meta = require('../meta'),
topics = require('../topics'),
favourites = require('../favourites'),
postTools = require('../postTools'),
2014-01-30 17:41:54 -05:00
notifications = require('../notifications'),
groups = require('../groups'),
2014-01-22 21:08:43 +01:00
user = require('../user'),
websockets = require('./index'),
2014-01-10 16:00:03 -05:00
SocketPosts = {};
2014-01-10 16:00:03 -05:00
2014-01-16 15:34:43 -05:00
SocketPosts.reply = function(socket, data, callback) {
2014-02-22 17:56:13 -05:00
2014-01-16 22:06:23 -05:00
if (!socket.uid && !parseInt(meta.config.allowGuestPosting, 10)) {
return callback(new Error('[[error:not-logged-in]]'));
2014-01-10 16:00:03 -05:00
}
if(!data || !data.tid || !data.content) {
return callback(new Error('[[error:invalid-data]]'));
2014-01-16 22:06:23 -05:00
}
2014-02-22 17:56:13 -05:00
data.uid = socket.uid;
data.req = websockets.reqFromSocket(socket);
2014-02-22 17:56:13 -05:00
topics.reply(data, function(err, postData) {
2014-01-10 16:00:03 -05:00
if(err) {
2014-01-16 22:06:23 -05:00
return callback(err);
2014-01-10 16:00:03 -05:00
}
if (postData) {
2014-04-16 15:46:50 -04:00
websockets.server.sockets.emit('event:new_post', {
2014-01-10 16:00:03 -05:00
posts: [postData]
2014-04-16 15:46:50 -04:00
});
2014-03-11 15:15:48 -04:00
2014-04-16 15:46:50 -04:00
module.parent.exports.emitTopicPostStats();
2014-03-11 15:15:48 -04:00
callback();
2014-01-10 16:00:03 -05:00
}
});
};
SocketPosts.upvote = function(socket, data, callback) {
favouriteCommand('upvote', 'voted', socket, data, callback);
sendNotificationToPostOwner(data, socket.uid, 'notifications:upvoted_your_post');
2014-02-06 12:44:21 -05:00
};
SocketPosts.downvote = function(socket, data, callback) {
favouriteCommand('downvote', 'voted', socket, data, callback);
2014-02-06 12:44:21 -05:00
};
SocketPosts.unvote = function(socket, data, callback) {
favouriteCommand('unvote', 'voted', socket, data, callback);
2014-02-06 12:44:21 -05:00
};
SocketPosts.favourite = function(socket, data, callback) {
favouriteCommand('favourite', 'favourited', socket, data, callback);
sendNotificationToPostOwner(data, socket.uid, 'notifications:favourited_your_post');
2014-01-10 16:00:03 -05:00
};
SocketPosts.unfavourite = function(socket, data, callback) {
favouriteCommand('unfavourite', 'favourited', socket, data, callback);
2014-03-11 21:52:22 -04:00
};
function favouriteCommand(command, eventName, socket, data, callback) {
2014-01-16 22:06:23 -05:00
if(data && data.pid && data.room_id) {
favourites[command](data.pid, socket.uid, function(err, result) {
if (err) {
return callback(err);
}
socket.emit('posts.' + command, result);
if(data.room_id && result && eventName) {
websockets.in(data.room_id).emit('event:' + eventName, result);
}
callback();
});
2014-01-16 22:06:23 -05:00
}
2014-03-11 21:52:22 -04:00
}
2014-01-10 16:00:03 -05:00
function sendNotificationToPostOwner(data, uid, notification) {
2014-03-24 14:30:11 -04:00
if(data && data.pid && uid) {
posts.getPostFields(data.pid, ['tid', 'uid'], function(err, postData) {
if (err) {
return;
}
2014-03-25 14:18:24 -04:00
if (uid === parseInt(postData.uid, 10)) {
2014-03-25 12:10:42 -04:00
return;
}
2014-03-24 14:30:11 -04:00
async.parallel({
username: function(next) {
user.getUserField(uid, 'username', next);
},
slug: function(next) {
topics.getTopicField(postData.tid, 'slug', next);
}
}, function(err, results) {
if (err) {
return;
}
2014-03-24 14:30:11 -04:00
notifications.create({
text: '[[' + notification + ', ' + results.username + ']]',
2014-03-24 14:30:11 -04:00
path: nconf.get('relative_path') + '/topic/' + results.slug + '#' + data.pid,
uniqueId: 'post:' + data.pid,
from: uid
}, function(nid) {
notifications.push(nid, [postData.uid]);
});
});
});
}
}
2014-01-16 22:06:23 -05:00
SocketPosts.getRawPost = function(socket, pid, callback) {
posts.getPostFields(pid, ['content', 'deleted'], function(err, data) {
if(err) {
return callback(err);
}
2014-04-09 21:40:39 -04:00
if(parseInt(data.deleted, 10) === 1) {
return callback(new Error('[[error:no-post]]'));
}
callback(null, data.content);
});
2014-01-10 16:00:03 -05:00
};
2014-01-16 15:34:43 -05:00
SocketPosts.edit = function(socket, data, callback) {
if(!socket.uid) {
2014-04-09 15:39:26 -04:00
return callback(new Error('[[error:not-logged-in]]'));
2014-01-16 22:06:23 -05:00
} else if(!data || !data.pid || !data.title || !data.content) {
2014-04-09 15:39:26 -04:00
return callback(new Error('[[error:invalid-data]]'));
2014-01-10 16:00:03 -05:00
} else if (!data.title || data.title.length < parseInt(meta.config.minimumTitleLength, 10)) {
2014-04-09 15:39:26 -04:00
return callback(new Error('[[error:title-too-short, ' + meta.config.minimumTitleLength + ']]'));
2014-01-10 16:00:03 -05:00
} else if (!data.content || data.content.length < parseInt(meta.config.minimumPostLength, 10)) {
2014-04-09 15:39:26 -04:00
return callback(new Error('[[error:content-too-short, ' + meta.config.minimumPostLength + ']]'));
2014-01-10 16:00:03 -05:00
}
2014-03-01 19:15:18 -05:00
postTools.edit(socket.uid, data.pid, data.title, data.content, {topic_thumb: data.topic_thumb}, function(err, results) {
if(err) {
return callback(err);
}
websockets.server.sockets.in('topic_' + results.topic.tid).emit('event:post_edited', {
2014-03-01 19:15:18 -05:00
pid: data.pid,
title: results.topic.title,
isMainPost: results.topic.isMainPost,
content: results.content
});
callback();
});
2014-01-10 16:00:03 -05:00
};
2014-01-16 15:34:43 -05:00
SocketPosts.delete = function(socket, data, callback) {
2014-03-11 21:52:22 -04:00
deleteOrRestore('delete', socket, data, callback);
2014-01-10 16:00:03 -05:00
};
2014-01-16 15:34:43 -05:00
SocketPosts.restore = function(socket, data, callback) {
2014-03-11 21:52:22 -04:00
deleteOrRestore('restore', socket, data, callback);
};
function deleteOrRestore(command, socket, data, callback) {
2014-01-16 22:06:23 -05:00
if(!data) {
2014-04-09 21:40:39 -04:00
return callback(new Error('[[error:invalid-data]]'));
2014-01-16 22:06:23 -05:00
}
2014-03-11 21:52:22 -04:00
postTools[command](socket.uid, data.pid, function(err) {
2014-01-10 16:00:03 -05:00
if(err) {
return callback(err);
}
module.parent.exports.emitTopicPostStats();
2014-03-11 21:52:22 -04:00
var eventName = command === 'restore' ? 'event:post_restored' : 'event:post_deleted';
websockets.server.sockets.in('topic_' + data.tid).emit(eventName, {
2014-01-10 16:00:03 -05:00
pid: data.pid
});
2014-01-16 22:06:23 -05:00
callback();
2014-01-10 16:00:03 -05:00
});
2014-03-11 21:52:22 -04:00
}
2014-01-10 16:00:03 -05:00
SocketPosts.getPrivileges = function(socket, pid, callback) {
postTools.privileges(pid, socket.uid, function(err, privileges) {
if(err) {
return callback(err);
}
privileges.pid = parseInt(pid, 10);
callback(null, privileges);
});
};
2014-01-22 21:08:43 +01:00
SocketPosts.getFavouritedUsers = function(socket, pid, callback) {
2014-02-26 15:32:32 -05:00
favourites.getFavouritedUidsByPids([pid], function(err, data) {
if(err) {
return callback(err);
}
if(!Array.isArray(data) || !data.length) {
callback(null, "");
}
2014-01-22 21:08:43 +01:00
var max = 5; //hardcoded
var finalText = "";
2014-01-22 21:08:43 +01:00
2014-02-26 15:32:32 -05:00
var pid_uids = data[0];
2014-01-22 21:08:43 +01:00
var rest_amount = 0;
2014-02-26 15:32:32 -05:00
if (pid_uids.length > max) {
rest_amount = pid_uids.length - max;
pid_uids = pid_uids.slice(0, max);
2014-01-22 21:08:43 +01:00
}
2014-02-26 15:32:32 -05:00
user.getUsernamesByUids(pid_uids, function(err, usernames) {
2014-02-26 15:32:32 -05:00
if(err) {
return callback(err);
}
2014-03-11 21:52:22 -04:00
finalText = usernames.join(', ') + (rest_amount > 0 ?
(" and " + rest_amount + (rest_amount > 1 ? " others" : " other")) : "");
callback(null, finalText);
2014-02-26 15:32:32 -05:00
});
2014-01-22 21:08:43 +01:00
});
};
SocketPosts.getPidPage = function(socket, pid, callback) {
2014-02-10 22:45:52 -05:00
posts.getPidPage(pid, socket.uid, callback);
2014-02-27 23:45:12 -05:00
};
2014-02-17 20:57:12 -05:00
SocketPosts.getPidIndex = function(socket, pid, callback) {
posts.getPidIndex(pid, callback);
2014-02-27 23:45:12 -05:00
};
2014-02-17 20:57:12 -05:00
2014-01-30 17:41:54 -05:00
SocketPosts.flag = function(socket, pid, callback) {
2014-02-01 23:14:44 -05:00
if (!socket.uid) {
2014-04-09 21:40:39 -04:00
return callback(new Error('[[error:not-logged-in]]'));
2014-02-01 23:14:44 -05:00
}
2014-01-30 17:41:54 -05:00
var message = '',
path = '';
async.waterfall([
function(next) {
user.getUserField(socket.uid, 'username', next);
},
function(username, next) {
message = '[[notifications:user_flagged_post, ' + username + ']]';
2014-01-30 17:41:54 -05:00
posts.getPostField(pid, 'tid', next);
},
function(tid, next) {
2014-03-11 14:48:35 -04:00
topics.getTopicField(tid, 'slug', next);
2014-01-30 17:41:54 -05:00
},
function(topicSlug, next) {
path = nconf.get('relative_path') + '/topic/' + topicSlug + '#' + pid;
groups.get('administrators', {}, next);
2014-01-30 17:41:54 -05:00
},
function(adminGroup, next) {
notifications.create({
text: message,
path: path,
uniqueId: 'post_flag:' + pid,
from: socket.uid
}, function(nid) {
2014-01-30 17:41:54 -05:00
notifications.push(nid, adminGroup.members, function() {
next(null);
});
});
}
], callback);
2014-03-11 14:48:35 -04:00
};
2014-01-30 17:41:54 -05:00
SocketPosts.loadMoreFavourites = function(socket, data, callback) {
if(!data || !data.after) {
2014-04-09 21:40:39 -04:00
return callback(new Error('[[error:invalid-data]]'));
}
var start = parseInt(data.after, 10),
end = start + 9;
posts.getFavourites(socket.uid, start, end, callback);
};
2014-02-04 17:31:05 -05:00
SocketPosts.loadMoreUserPosts = function(socket, data, callback) {
if(!data || !data.after || !data.uid) {
2014-04-09 21:40:39 -04:00
return callback(new Error('[[error:invalid-data]]'));
2014-02-04 17:31:05 -05:00
}
var start = parseInt(data.after, 10),
end = start + 9;
posts.getPostsByUid(socket.uid, data.uid, start, end, callback);
};
2014-03-11 21:52:22 -04:00
2014-03-11 23:31:23 -04:00
SocketPosts.getRecentPosts = function(socket, data, callback) {
if(!data || !data.count) {
2014-04-09 21:40:39 -04:00
return callback(new Error('[[error:invalid-data]]'));
2014-03-11 23:31:23 -04:00
}
posts.getRecentPosts(socket.uid, 0, data.count - 1, data.term, callback);
2014-03-11 18:46:16 -04:00
};
2014-03-13 20:24:04 -04:00
SocketPosts.getCategory = function(socket, pid, callback) {
posts.getCidByPid(pid, callback);
2014-03-24 14:30:11 -04:00
};
2014-03-11 18:46:16 -04:00
2014-04-10 20:31:57 +01:00
module.exports = SocketPosts;