bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/chat/service.js

195 lines
5.2 KiB
JavaScript
Raw Normal View History

2016-06-02 00:33:19 +08:00
import Chats from '/imports/api/chat';
import Users from '/imports/api/users';
2016-06-14 01:00:38 +08:00
import Meetings from '/imports/api/meetings';
import Auth from '/imports/ui/services/auth';
2016-07-05 02:53:47 +08:00
import UnreadMessages from '/imports/ui/services/unread-messages';
2016-06-03 02:40:27 +08:00
import { callServer } from '/imports/ui/services/api';
const GROUPING_MESSAGES_WINDOW = 60000;
2016-06-02 00:33:19 +08:00
const SYSTEM_CHAT_TYPE = 'SYSTEM_MESSAGE';
const PUBLIC_CHAT_TYPE = 'PUBLIC_CHAT';
const PRIVATE_CHAT_TYPE = 'PRIVATE_CHAT';
2016-06-03 02:40:27 +08:00
const PUBLIC_CHAT_ID = 'public';
2016-07-05 02:53:47 +08:00
const PUBLIC_CHAT_USERID = 'public_chat_userid';
const PUBLIC_CHAT_USERNAME = 'public_chat_username';
2016-07-01 01:10:36 +08:00
const ScrollCollection = new Mongo.Collection(null);
/* TODO: Same map is done in the user-list/service we should share this someway */
const mapUser = (user) => ({
id: user.userid,
name: user.name,
isPresenter: user.presenter,
isModerator: user.role === 'MODERATOR',
2016-06-03 02:40:27 +08:00
isCurrent: user.userid === Auth.getUser(),
isVoiceUser: user.voiceUser.joined,
isMuted: user.voiceUser.muted,
isListenOnly: user.listenOnly,
isSharingWebcam: user.webcam_stream.length,
2016-06-14 01:00:38 +08:00
isLocked: user.locked,
});
const mapMessage = (message) => {
let mappedMessage = {
2016-06-03 02:40:27 +08:00
content: [message.message],
time: +(message.from_time), //+ message.from_tz_offset,
sender: null,
};
2016-06-03 02:40:27 +08:00
if (message.chat_type !== SYSTEM_CHAT_TYPE) {
mappedMessage.sender = getUser(message.from_userid);
2016-06-02 00:33:19 +08:00
}
return mappedMessage;
};
const reduceMessages = (previous, current, index, array) => {
let lastMessage = previous[previous.length - 1];
if (!lastMessage || !lastMessage.sender || !current.sender) { // Skip system messages
return previous.concat(current);
}
// Check if the last message is from the same user and time discrepancy
// between the two messages exceeds window and then group current message
// with the last one
if (lastMessage.sender.id === current.sender.id
&& (current.time - lastMessage.time) <= GROUPING_MESSAGES_WINDOW) {
lastMessage.content = lastMessage.content.concat(current.content);
2016-07-05 02:53:47 +08:00
lastMessage.timeLastMessage = current.time;
return previous;
} else {
return previous.concat(current);
}
};
2016-06-02 00:33:19 +08:00
2016-06-03 02:40:27 +08:00
const getUser = (userID) => {
const user = Users.findOne({ userId: userID });
if (user) {
return mapUser(user.user);
} else {
2016-06-14 01:00:38 +08:00
return null;
2016-06-03 02:40:27 +08:00
}
};
2016-06-02 00:33:19 +08:00
const getPublicMessages = () => {
let publicMessages = Chats.find({
'message.chat_type': { $in: [PUBLIC_CHAT_TYPE, SYSTEM_CHAT_TYPE] },
}, {
sort: ['message.from_time'],
})
.fetch();
let systemMessage = Chats.findOne({ 'message.chat_type': SYSTEM_CHAT_TYPE });
2016-06-02 00:33:19 +08:00
return publicMessages
.map(m => m.message)
.map(mapMessage)
.reduce(reduceMessages, []);
2016-06-02 00:33:19 +08:00
};
const getPrivateMessages = (userID) => {
let messages = Chats.find({
'message.chat_type': PRIVATE_CHAT_TYPE,
$or: [
{ 'message.to_userid': userID },
{ 'message.from_userid': userID },
],
}, {
sort: ['message.from_time'],
}).fetch();
2016-06-02 00:33:19 +08:00
return messages
.map(m => m.message)
.map(mapMessage)
.reduce(reduceMessages, []);
2016-06-02 00:33:19 +08:00
};
2016-06-14 01:00:38 +08:00
const isChatLocked = (receiverID) => {
const isPublic = receiverID === PUBLIC_CHAT_ID;
const currentUser = getUser(Auth.getUser());
const meeting = Meetings.findOne({});
const lockSettings = meeting.roomLockSettings || {
disablePublicChat: false,
disablePrivateChat: false,
};
if (!currentUser.isLocked || currentUser.isPresenter) {
return false;
}
return isPublic ? lockSettings.disablePublicChat : lockSettings.disablePrivateChat;
};
2016-07-05 02:53:47 +08:00
const hasUnreadMessages = (receiverID) => {
const isPublic = receiverID === PUBLIC_CHAT_ID;
receiverID = isPublic ? PUBLIC_CHAT_USERID : receiverID;
return UnreadMessages.count(receiverID) > 0;
};
2016-06-03 02:40:27 +08:00
const sendMessage = (receiverID, message) => {
const isPublic = receiverID === PUBLIC_CHAT_ID;
const sender = getUser(Auth.getUser());
const receiver = !isPublic ? getUser(receiverID) : {
2016-07-05 02:53:47 +08:00
id: PUBLIC_CHAT_USERID,
name: PUBLIC_CHAT_USERNAME,
2016-06-03 02:40:27 +08:00
};
/* FIX: Why we need all this payload to send a message?
* The server only really needs the message, from_userid, to_userid and from_lang
*/
let messagePayload = {
message: message,
chat_type: isPublic ? PUBLIC_CHAT_TYPE : PRIVATE_CHAT_TYPE,
from_userid: sender.id,
from_username: sender.name,
from_tz_offset: (new Date()).getTimezoneOffset(),
to_username: receiver.name,
to_userid: receiver.id,
from_lang: window.navigator.userLanguage || window.navigator.language,
from_time: Date.now(),
from_color: 0,
};
2016-06-02 00:33:19 +08:00
2016-06-03 02:40:27 +08:00
return callServer('sendChatMessagetoServer', messagePayload);
2016-06-02 00:33:19 +08:00
};
2016-07-01 01:10:36 +08:00
const getScrollPosition = (receiverID) => {
let scroll = ScrollCollection.findOne({ receiver: receiverID }) || { position: null };
return scroll.position;
};
2016-07-05 02:53:47 +08:00
const updateScrollPosition =
(receiverID, position) => ScrollCollection.upsert(
{ receiver: receiverID },
{ $set: { position: position } },
);
const updateUnreadMessage = (receiverID, timestamp) => {
const isPublic = receiverID === PUBLIC_CHAT_ID;
receiverID = isPublic ? PUBLIC_CHAT_USERID : receiverID;
return UnreadMessages.update(receiverID, timestamp);
2016-07-01 01:10:36 +08:00
};
2016-06-02 00:33:19 +08:00
export default {
getPublicMessages,
getPrivateMessages,
2016-06-07 22:19:19 +08:00
getUser,
2016-07-01 01:10:36 +08:00
getScrollPosition,
2016-07-05 02:53:47 +08:00
hasUnreadMessages,
2016-06-14 01:00:38 +08:00
isChatLocked,
2016-07-05 02:53:47 +08:00
updateScrollPosition,
updateUnreadMessage,
2016-06-02 00:33:19 +08:00
sendMessage,
};