2014-08-09 00:04:04 +08:00
|
|
|
|
@sendMessage = ->
|
|
|
|
|
message = $('#newMessageInput').val() # get the message from the input box
|
|
|
|
|
unless (message?.length > 0 and (/\S/.test(message))) # check the message has content and it is not whitespace
|
|
|
|
|
return # do nothing if invalid message
|
|
|
|
|
|
|
|
|
|
chattingWith = getInSession('inChatWith')
|
|
|
|
|
|
2014-08-14 02:30:55 +08:00
|
|
|
|
if chattingWith isnt "PUBLIC_CHAT"
|
|
|
|
|
dest = Meteor.Users.findOne("userId": chattingWith)
|
|
|
|
|
|
2014-08-09 00:04:04 +08:00
|
|
|
|
messageForServer = { # construct message for server
|
|
|
|
|
"message": message
|
|
|
|
|
"chat_type": if chattingWith is "PUBLIC_CHAT" then "PUBLIC_CHAT" else "PRIVATE_CHAT"
|
|
|
|
|
"from_userid": getInSession("userId")
|
|
|
|
|
"from_username": getUsersName()
|
|
|
|
|
"from_tz_offset": "240"
|
2014-08-14 02:30:55 +08:00
|
|
|
|
"to_username": if chattingWith is "PUBLIC_CHAT" then "public_chat_username" else dest.user.name
|
2014-08-09 00:04:04 +08:00
|
|
|
|
"to_userid": if chattingWith is "PUBLIC_CHAT" then "public_chat_userid" else chattingWith
|
|
|
|
|
"from_lang": "en"
|
|
|
|
|
"from_time": getTime()
|
|
|
|
|
"from_color": "0"
|
|
|
|
|
}
|
|
|
|
|
# console.log 'Sending message to server:'
|
|
|
|
|
# console.log messageForServer
|
|
|
|
|
Meteor.call "sendChatMessagetoServer", getInSession("meetingId"), messageForServer
|
|
|
|
|
$('#newMessageInput').val '' # Clear message box
|
|
|
|
|
|
|
|
|
|
Template.chatInput.events
|
|
|
|
|
'click #sendMessageButton': (event) ->
|
|
|
|
|
sendMessage()
|
|
|
|
|
'keypress #newMessageInput': (event) -> # user pressed a button inside the chatbox
|
|
|
|
|
if event.which is 13 # Check for pressing enter to submit message
|
|
|
|
|
sendMessage()
|
|
|
|
|
|
|
|
|
|
Template.chatInput.rendered = ->
|
|
|
|
|
$('input[rel=tooltip]').tooltip()
|
|
|
|
|
$('button[rel=tooltip]').tooltip()
|
|
|
|
|
|
2014-08-12 03:32:42 +08:00
|
|
|
|
Template.chatbar.helpers
|
2014-08-09 00:04:04 +08:00
|
|
|
|
getChatGreeting: ->
|
|
|
|
|
greeting =
|
2014-08-14 22:48:08 +08:00
|
|
|
|
"<div class='chatGreeting'>
|
|
|
|
|
<p>Welcome to #{getMeetingName()}!</p>
|
2014-08-15 01:26:15 +08:00
|
|
|
|
<p>For help on using BigBlueButton see these (short) <a href='http://www.bigbluebutton.org/videos/' target='_blank'>tutorial videos</a>.</p>
|
2014-08-09 00:04:04 +08:00
|
|
|
|
<p>To join the audio bridge click the headset icon (upper-left hand corner). Use a headset to avoid causing background noise for others.</p>
|
|
|
|
|
<br/>
|
2014-08-14 22:48:08 +08:00
|
|
|
|
<p>This server is running BigBlueButton #{getInSession 'bbbServerVersion'}.</p>
|
|
|
|
|
</div>"
|
2014-08-09 00:04:04 +08:00
|
|
|
|
|
2014-07-18 22:08:59 +08:00
|
|
|
|
# This method returns all messages for the user. It looks at the session to determine whether the user is in
|
|
|
|
|
#private or public chat. If true is passed, messages returned are from before the user joined. Else, the messages are from after the user joined
|
2014-08-08 04:29:13 +08:00
|
|
|
|
getFormattedMessagesForChat: () ->
|
2014-07-18 04:13:06 +08:00
|
|
|
|
friend = chattingWith = getInSession('inChatWith') # the recipient(s) of the messages
|
2014-08-14 03:48:44 +08:00
|
|
|
|
after = before = greeting = []
|
2014-07-09 21:18:52 +08:00
|
|
|
|
|
2014-07-11 23:53:49 +08:00
|
|
|
|
if chattingWith is 'PUBLIC_CHAT' # find all public messages
|
2014-08-07 01:46:54 +08:00
|
|
|
|
before = Meteor.Chat.find({'message.chat_type': chattingWith, 'message.from_time': {$lt: String(getInSession("joinedAt"))}}).fetch()
|
|
|
|
|
after = Meteor.Chat.find({'message.chat_type': chattingWith, 'message.from_time': {$gt: String(getInSession("joinedAt"))}}).fetch()
|
2014-08-14 03:48:44 +08:00
|
|
|
|
|
|
|
|
|
greeting = [
|
|
|
|
|
'class': 'chatGreeting',
|
|
|
|
|
'message':
|
|
|
|
|
'message': Template.chatbar.getChatGreeting(),
|
|
|
|
|
'from_username': 'System',
|
|
|
|
|
'from_time': getTime()
|
|
|
|
|
]
|
2014-07-09 21:18:52 +08:00
|
|
|
|
else
|
2014-07-18 04:13:06 +08:00
|
|
|
|
me = getInSession("userId")
|
2014-08-14 03:48:44 +08:00
|
|
|
|
after = Meteor.Chat.find({ # find all messages between current user and recipient
|
2014-07-09 21:18:52 +08:00
|
|
|
|
'message.chat_type': 'PRIVATE_CHAT',
|
|
|
|
|
$or: [{'message.from_userid': me, 'message.to_userid': friend},{'message.from_userid': friend, 'message.to_userid': me}]
|
2014-08-14 03:48:44 +08:00
|
|
|
|
}).fetch()
|
2014-08-07 01:46:54 +08:00
|
|
|
|
|
|
|
|
|
messages = (before.concat greeting).concat after
|
2014-08-08 04:29:13 +08:00
|
|
|
|
###
|
|
|
|
|
# Now after all messages + the greeting have been inserted into our collection, what we have to do is go through all messages
|
|
|
|
|
# and modify them to join all sequential messages by users together so each entries will be chat messages by a user in the same time frame
|
|
|
|
|
# we can use a time frame, so join messages together that are within 5 minutes of eachother, for example
|
|
|
|
|
###
|
2014-07-09 21:18:52 +08:00
|
|
|
|
|
2014-08-09 00:04:04 +08:00
|
|
|
|
Template.message.rendered = -> # When a message has been added and finished rendering, scroll to the bottom of the chat
|
2014-08-12 03:43:49 +08:00
|
|
|
|
$('#chatbody').scrollTop($('#chatbody')[0].scrollHeight)
|
2014-07-04 01:56:16 +08:00
|
|
|
|
|
|
|
|
|
Template.optionsBar.events
|
2014-08-14 03:16:27 +08:00
|
|
|
|
'click .private-chat-user-entry': (event) -> # clicked a user's name to begin private chat
|
|
|
|
|
setInSession 'display_chatPane', true
|
|
|
|
|
setInSession "inChatWith", @userId
|
|
|
|
|
me = getInSession("userId")
|
2014-07-04 01:56:16 +08:00
|
|
|
|
|
2014-08-14 03:16:27 +08:00
|
|
|
|
if Meteor.Chat.find({'message.chat_type': 'PRIVATE_CHAT', $or: [{'message.from_userid': me, 'message.to_userid': @userId},{'message.from_userid': @userId, 'message.to_userid': me}]}).fetch().length is 0
|
|
|
|
|
messageForServer =
|
|
|
|
|
"message": "#{getUsersName()} has joined private chat with #{@user.name}."
|
|
|
|
|
"chat_type": "PRIVATE_CHAT"
|
|
|
|
|
"from_userid": me
|
|
|
|
|
"from_username": getUsersName()
|
|
|
|
|
"from_tz_offset": "240"
|
|
|
|
|
"to_username": @user.name
|
|
|
|
|
"to_userid": @userId
|
|
|
|
|
"from_lang": "en"
|
|
|
|
|
"from_time": getTime()
|
|
|
|
|
"from_color": "0"
|
|
|
|
|
Meteor.call "sendChatMessagetoServer", getInSession("meetingId"), messageForServer
|
2014-07-10 21:11:38 +08:00
|
|
|
|
|
2014-08-16 00:26:17 +08:00
|
|
|
|
Template.optionsBar.rendered = ->
|
|
|
|
|
$('div[rel=tooltip]').tooltip()
|
|
|
|
|
|
2014-08-09 00:04:04 +08:00
|
|
|
|
Template.tabButtons.events
|
|
|
|
|
'click .close': (event) -> # user closes private chat
|
|
|
|
|
setInSession 'inChatWith', 'PUBLIC_CHAT'
|
2014-08-14 02:30:55 +08:00
|
|
|
|
setInSession 'display_chatPane', true
|
2014-08-09 00:04:04 +08:00
|
|
|
|
Meteor.call("deletePrivateChatMessages", getInSession("userId"), @userId)
|
2014-08-14 02:30:55 +08:00
|
|
|
|
return false # stops propogation/prevents default
|
2014-08-09 00:04:04 +08:00
|
|
|
|
|
|
|
|
|
'click .optionsChatTab': (event) ->
|
|
|
|
|
setInSession 'display_chatPane', false
|
|
|
|
|
|
|
|
|
|
'click .privateChatTab': (event) ->
|
|
|
|
|
setInSession 'display_chatPane', true
|
2014-08-14 02:30:55 +08:00
|
|
|
|
console.log ".private"
|
2014-08-09 00:04:04 +08:00
|
|
|
|
|
|
|
|
|
'click .publicChatTab': (event) ->
|
|
|
|
|
setInSession 'display_chatPane', true
|
|
|
|
|
|
2014-08-14 02:30:55 +08:00
|
|
|
|
'click .tab': (event) ->
|
|
|
|
|
setInSession "inChatWith", @userId
|
2014-08-09 00:04:04 +08:00
|
|
|
|
|
2014-07-09 21:18:52 +08:00
|
|
|
|
Template.tabButtons.helpers
|
|
|
|
|
getChatbarTabs: ->
|
2014-08-14 02:30:55 +08:00
|
|
|
|
tabs = makeTabs()
|
2014-07-04 01:56:16 +08:00
|
|
|
|
|
2014-07-09 21:18:52 +08:00
|
|
|
|
makeTabButton: -> # create tab button for private chat or other such as options
|
2014-07-10 21:11:38 +08:00
|
|
|
|
button = '<li '
|
|
|
|
|
button += 'class="'
|
2014-08-14 02:30:55 +08:00
|
|
|
|
button += 'active ' if getInSession("inChatWith") is @userId
|
|
|
|
|
button += "tab #{@class}\"><a href=\"#\" data-toggle=\"tab\">#{@name}"
|
2014-08-14 22:48:08 +08:00
|
|
|
|
button += ' <button class="close closeTab" type="button" >×</button>' if @class is 'privateChatTab'
|
2014-07-09 21:18:52 +08:00
|
|
|
|
button += '</a></li>'
|
|
|
|
|
button
|