mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 11:35:55 +01:00
115 lines
3.1 KiB
JavaScript
115 lines
3.1 KiB
JavaScript
'use strict';
|
|
|
|
var async = require('async');
|
|
|
|
var messaging = require('../../messaging');
|
|
var meta = require('../../meta');
|
|
var user = require('../../user');
|
|
var privileges = require('../../privileges');
|
|
var helpers = require('../helpers');
|
|
|
|
var chatsController = module.exports;
|
|
|
|
chatsController.get = function (req, res, callback) {
|
|
if (parseInt(meta.config.disableChat, 10) === 1) {
|
|
return callback();
|
|
}
|
|
|
|
var uid;
|
|
var recentChats;
|
|
|
|
async.waterfall([
|
|
function (next) {
|
|
user.getUidByUserslug(req.params.userslug, next);
|
|
},
|
|
function (_uid, next) {
|
|
uid = _uid;
|
|
if (!uid) {
|
|
return callback();
|
|
}
|
|
|
|
privileges.global.can('chat', req.uid, next);
|
|
},
|
|
function (canChat, next) {
|
|
if (!canChat) {
|
|
return next(new Error('[[error:no-privileges]]'));
|
|
}
|
|
messaging.getRecentChats(req.uid, uid, 0, 19, next);
|
|
},
|
|
function (_recentChats, next) {
|
|
recentChats = _recentChats;
|
|
if (!recentChats) {
|
|
return callback();
|
|
}
|
|
if (!req.params.roomid) {
|
|
return res.render('chats', {
|
|
rooms: recentChats.rooms,
|
|
uid: uid,
|
|
userslug: req.params.userslug,
|
|
nextStart: recentChats.nextStart,
|
|
allowed: true,
|
|
title: '[[pages:chats]]',
|
|
});
|
|
}
|
|
messaging.isUserInRoom(req.uid, req.params.roomid, next);
|
|
},
|
|
function (inRoom, next) {
|
|
if (!inRoom) {
|
|
return callback();
|
|
}
|
|
async.parallel({
|
|
users: async.apply(messaging.getUsersInRoom, req.params.roomid, 0, -1),
|
|
canReply: async.apply(messaging.canReply, req.params.roomid, req.uid),
|
|
room: async.apply(messaging.getRoomData, req.params.roomid),
|
|
messages: async.apply(messaging.getMessages, {
|
|
callerUid: req.uid,
|
|
uid: uid,
|
|
roomId: req.params.roomid,
|
|
isNew: false,
|
|
}),
|
|
}, next);
|
|
},
|
|
function (data) {
|
|
var room = data.room;
|
|
room.messages = data.messages;
|
|
|
|
room.isOwner = parseInt(room.owner, 10) === parseInt(req.uid, 10);
|
|
room.users = data.users.filter(function (user) {
|
|
return user && parseInt(user.uid, 10) && parseInt(user.uid, 10) !== req.uid;
|
|
});
|
|
|
|
room.canReply = data.canReply;
|
|
room.groupChat = room.hasOwnProperty('groupChat') ? room.groupChat : room.users.length > 2;
|
|
room.rooms = recentChats.rooms;
|
|
room.uid = uid;
|
|
room.userslug = req.params.userslug;
|
|
room.nextStart = recentChats.nextStart;
|
|
room.usernames = messaging.generateUsernames(room.users, req.uid);
|
|
room.title = room.roomName || room.usernames || '[[pages:chats]]';
|
|
room.maximumUsersInChatRoom = parseInt(meta.config.maximumUsersInChatRoom, 10) || 0;
|
|
room.maximumChatMessageLength = parseInt(meta.config.maximumChatMessageLength, 10) || 1000;
|
|
room.showUserInput = !room.maximumUsersInChatRoom || room.maximumUsersInChatRoom > 2;
|
|
|
|
res.render('chats', room);
|
|
},
|
|
], callback);
|
|
};
|
|
|
|
chatsController.redirectToChat = function (req, res, next) {
|
|
var roomid = parseInt(req.params.roomid, 10);
|
|
if (!req.loggedIn) {
|
|
return next();
|
|
}
|
|
async.waterfall([
|
|
function (next) {
|
|
user.getUserField(req.uid, 'userslug', next);
|
|
},
|
|
function (userslug, next) {
|
|
if (!userslug) {
|
|
return next();
|
|
}
|
|
helpers.redirect(res, '/user/' + userslug + '/chats' + (roomid ? '/' + roomid : ''));
|
|
},
|
|
], next);
|
|
};
|