bigbluebutton-Github/bigbluebutton-html5/app/client/globals.coffee

498 lines
19 KiB
CoffeeScript
Raw Normal View History

@getBuildInformation = ->
appName = Meteor.config?.appName or "UNKNOWN NAME"
copyrightYear = Meteor.config?.copyrightYear or "UNKNOWN DATE"
dateOfBuild = Meteor.config?.dateOfBuild or "UNKNOWN DATE"
defaultWelcomeMessage = Meteor.config?.defaultWelcomeMessage or "UNKNOWN"
defaultWelcomeMessageFooter = Meteor.config?.defaultWelcomeMessageFooter or "UNKNOWN"
link = "<a href='http://bigbluebutton.org/' target='_blank'>http://bigbluebutton.org</a>"
bbbServerVersion = Meteor.config?.bbbServerVersion or "UNKNOWN VERSION"
{
'appName': appName
'copyrightYear': copyrightYear
'dateOfBuild': dateOfBuild
'defaultWelcomeMessage': defaultWelcomeMessage
'defaultWelcomeMessageFooter': defaultWelcomeMessageFooter
'link': link
'bbbServerVersion': bbbServerVersion
}
# Convert a color `value` as integer to a hex color (e.g. 255 to #0000ff)
@colourToHex = (value) ->
hex = parseInt(value).toString(16)
hex = "0" + hex while hex.length < 6
"##{hex}"
# color can be a number (a hex converted to int) or a string (e.g. "#ffff00")
@formatColor = (color) ->
color ?= "0" # default value
if !color.toString().match(/\#.*/)
color = colourToHex(color)
color
# thickness can be a number (e.g. "2") or a string (e.g. "2px")
@formatThickness = (thickness) ->
thickness ?= "1" # default value
if !thickness.toString().match(/.*px$/)
"#" + thickness + "px" # leading "#" - to be compatible with Firefox
thickness
@getCurrentSlideDoc = -> # returns only one document
currentPresentation = Meteor.Presentations.findOne({"presentation.current": true})
presentationId = currentPresentation?.presentation?.id
currentSlide = Meteor.Slides.findOne({"presentationId": presentationId, "slide.current": true})
2014-08-09 00:04:04 +08:00
# retrieve account for selected user
@getCurrentUserFromSession = ->
Meteor.Users.findOne(userId: getInSession("userId"))
2014-08-09 00:04:04 +08:00
@getInSession = (k) -> SessionAmplify.get k
@getMeetingName = ->
2015-01-20 22:55:03 +08:00
return Meteor.Meetings.findOne()?.meetingName or null
2014-08-09 00:04:04 +08:00
@getTime = -> # returns epoch in ms
(new Date).valueOf()
2014-09-25 03:55:55 +08:00
@getTimeOfJoining = ->
Meteor.Users.findOne(userId: getInSession "userId")?.user?.time_of_joining
2014-09-25 03:55:55 +08:00
@getPresentationFilename = ->
currentPresentation = Meteor.Presentations.findOne({"presentation.current": true})
currentPresentation?.presentation?.name
Handlebars.registerHelper "colourToHex", (value) =>
@window.colourToHex(value)
2014-07-09 21:15:50 +08:00
Handlebars.registerHelper 'equals', (a, b) -> # equals operator was dropped in Meteor's migration from Handlebars to Spacebars
2014-07-04 01:54:41 +08:00
a is b
2014-09-05 00:32:24 +08:00
Handlebars.registerHelper "getCurrentMeeting", ->
Meteor.Meetings.findOne()
2014-09-05 00:32:24 +08:00
Handlebars.registerHelper "getCurrentSlide", ->
currentPresentation = Meteor.Presentations.findOne({"presentation.current": true})
presentationId = currentPresentation?.presentation?.id
Meteor.Slides.find({"presentationId": presentationId, "slide.current": true})
2014-08-09 00:04:04 +08:00
# retrieve account for selected user
Handlebars.registerHelper "getCurrentUser", =>
@window.getCurrentUserFromSession()
# Allow access through all templates
Handlebars.registerHelper "getInSession", (k) -> SessionAmplify.get k
2014-08-09 00:04:04 +08:00
Handlebars.registerHelper "getMeetingName", ->
2015-01-20 22:55:03 +08:00
return Meteor.Meetings.findOne()?.meetingName or null
Handlebars.registerHelper "getShapesForSlide", ->
2014-09-16 00:46:02 +08:00
currentSlide = getCurrentSlideDoc()
# try to reuse the lines above
Meteor.Shapes.find({whiteboardId: currentSlide?.slide?.id})
2014-08-09 00:04:04 +08:00
# retrieves all users in the meeting
Handlebars.registerHelper "getUsersInMeeting", ->
2015-01-22 02:28:45 +08:00
# retrieve all users with raised hands
# raised hand is an object, so we can't simply search for true
# sort users by who has raised their hand first, place them at the top
raised = Meteor.Users.find({'user.raise_hand': {$not: {$in: [0, false, null]} }}, {sort: {'user.raise_hand': 1} }).fetch()
# find all users with a lowered hand
# when a hand is lowered, it is not always just false, it can be zero, or null
lowered = Meteor.Users.find({'user.raise_hand': $in: [0, false, null]}, {sort: {'user._sort_name': 1} }).fetch()
# add the users with lowered hands, to the list of people with raised hands
raised.concat lowered
2014-08-09 00:04:04 +08:00
Handlebars.registerHelper "getWhiteboardTitle", ->
"Presentation: " + (getPresentationFilename() or "Loading...")
2014-11-20 07:20:34 +08:00
Handlebars.registerHelper "isCurrentUser", (userId) ->
userId is null or userId is BBB.getCurrentUser()?.userId
2014-08-09 00:04:04 +08:00
2014-09-04 04:02:00 +08:00
Handlebars.registerHelper "isCurrentUserMuted", ->
BBB.amIMuted()
2014-09-04 04:02:00 +08:00
Handlebars.registerHelper "isCurrentUserRaisingHand", ->
user = BBB.getCurrentUser()
user?.user?.raise_hand
2014-09-04 04:02:00 +08:00
Handlebars.registerHelper "isCurrentUserSharingAudio", ->
BBB.amISharingAudio()
Handlebars.registerHelper "isCurrentUserSharingVideo", ->
BBB.amISharingVideo()
Handlebars.registerHelper "isCurrentUserTalking", ->
BBB.amITalking()
Handlebars.registerHelper "isDisconnected", ->
return !Meteor.status().connected
Handlebars.registerHelper "isUserListenOnly", (userId) ->
user = Meteor.Users.findOne({userId:userId})
2014-10-24 23:09:58 +08:00
return user?.user?.listenOnly
Handlebars.registerHelper "isUserMuted", (userId) ->
BBB.isUserMuted(userId)
Handlebars.registerHelper "isUserSharingAudio", (userId) ->
BBB.isUserSharingAudio(userId)
Handlebars.registerHelper "isUserSharingVideo", (userId) ->
BBB.isUserSharingWebcam(userId)
Handlebars.registerHelper "isUserTalking", (userId) ->
BBB.isUserTalking(userId)
Handlebars.registerHelper 'isPortraitMobile', () ->
window.matchMedia('(orientation: portrait)').matches and window.matchMedia('(max-device-aspect-ratio: 1/1)').matches
Handlebars.registerHelper "meetingIsRecording", ->
Meteor.Meetings.findOne()?.recorded # Should only ever have one meeting, so we dont need any filter and can trust result #1
2014-08-09 00:04:04 +08:00
Handlebars.registerHelper "messageFontSize", ->
style: "font-size: #{getInSession("messageFontSize")}px;"
Handlebars.registerHelper "pointerLocation", ->
currentPresentation = Meteor.Presentations.findOne({"presentation.current": true})
presentationId = currentPresentation?.presentation?.id
currentSlideDoc = Meteor.Slides.findOne({"presentationId": presentationId, "slide.current": true})
pointer = currentPresentation?.pointer
pointer.x = (- currentSlideDoc.slide.x_offset * 2 + currentSlideDoc.slide.width_ratio * pointer.x) / 100
pointer.y = (- currentSlideDoc.slide.y_offset * 2 + currentSlideDoc.slide.height_ratio * pointer.y) / 100
pointer
Handlebars.registerHelper "safeName", (str) ->
safeString(str)
2014-08-09 00:04:04 +08:00
Handlebars.registerHelper "visibility", (section) ->
2014-10-24 23:09:58 +08:00
if getInSession "display_#{section}"
2014-12-03 06:52:03 +08:00
style: 'display:block;'
2014-10-24 23:09:58 +08:00
else
style: 'display:none;'
2014-08-09 00:04:04 +08:00
# transform plain text links into HTML tags compatible with Flash client
@linkify = (str) ->
www = /(^|[^\/])(www\.[\S]+($|\b))/img
http = /\b(https?:\/\/[0-9a-z+|.,:;\/&?_~%#=@!-]*[0-9a-z+|\/&_~%#=@-])/img
str = str.replace http, "<a href='event:$1'><u>$1</u></a>"
str = str.replace www, "$1<a href='event:http://$2'><u>$2</u></a>"
# check the chat history of the user and add tabs for the private chats
@populateChatTabs = (msg) ->
2014-11-28 06:02:19 +08:00
myUserId = getInSession "userId"
users = Meteor.Users.find().fetch()
# assuming that I only have access only to private messages where I am the sender or the recipient
myPrivateChats = Meteor.Chat.find({'message.chat_type': 'PRIVATE_CHAT'}).fetch()
uniqueArray = []
for chat in myPrivateChats
2014-11-28 06:02:19 +08:00
if chat.message.to_userid is myUserId
uniqueArray.push({userId: chat.message.from_userid, username: chat.message.from_username})
2014-11-28 06:02:19 +08:00
if chat.message.from_userid is myUserId
uniqueArray.push({userId: chat.message.to_userid, username: chat.message.to_username})
#keep unique entries only
uniqueArray = uniqueArray.filter((itm, i, a) ->
i is a.indexOf(itm)
)
if msg.message.to_userid is myUserId
new_msg_userid = msg.message.from_userid
if msg.message.from_userid is myUserId
new_msg_userid = msg.message.to_userid
#insert the unique entries in the collection
for u in uniqueArray
tabs = getInSession('chatTabs')
if tabs.filter((tab) -> tab.userId == u.userId).length is 0 and u.userId is new_msg_userid
tabs.push {userId: u.userId, name: u.username, gotMail: false, class: 'privateChatTab'}
setInSession 'chatTabs', tabs
@setInSession = (k, v) -> SessionAmplify.set k, v
@safeString = (str) ->
if typeof str is 'string'
str.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');
@toggleCam = (event) ->
2014-08-09 00:04:04 +08:00
# Meteor.Users.update {_id: context._id} , {$set:{"user.sharingVideo": !context.sharingVideo}}
# Meteor.call('userToggleCam', context._id, !context.sharingVideo)
2014-08-09 00:04:04 +08:00
@toggleChatbar = ->
if getInSession("display_chatbar") and isOnlyOnePanelOpen()
setInSession "display_usersList", true
setInSession "display_whiteboard", true
setInSession "display_chatbar", true
else
setInSession "display_chatbar", !getInSession "display_chatbar"
setTimeout(redrawWhiteboard, 0)
2014-08-09 00:04:04 +08:00
@toggleMic = (event) ->
u = Meteor.Users.findOne({userId:getInSession("userId")})
2014-10-15 05:20:27 +08:00
if u?
2014-11-22 01:36:21 +08:00
Meteor.call('muteUser', getInSession("meetingId"), u.userId, getInSession("userId"), getInSession("authToken"), not u.user.voiceUser.muted)
2014-08-09 00:04:04 +08:00
@toggleNavbar = ->
setInSession "display_navbar", !getInSession "display_navbar"
# toggle state of session variable
@toggleUsersList = ->
if getInSession("display_usersList") and isOnlyOnePanelOpen()
setInSession "display_usersList", true
setInSession "display_whiteboard", true
setInSession "display_chatbar", true
else
setInSession "display_usersList", !getInSession "display_usersList"
setTimeout(redrawWhiteboard, 0)
2014-08-09 00:04:04 +08:00
2014-10-24 23:09:58 +08:00
@toggleVoiceCall = (event) ->
2014-12-16 05:16:35 +08:00
if BBB.amISharingAudio()
hangupCallback = ->
console.log "left voice conference"
BBB.leaveVoiceConference hangupCallback #TODO should we apply role permissions to this action?
else
# create voice call params
joinCallback = (message) ->
console.log "started webrtc_call"
BBB.joinVoiceConference joinCallback # make the call #TODO should we apply role permissions to this action?
return false
2014-08-01 21:51:45 +08:00
@toggleWhiteBoard = ->
if getInSession("display_whiteboard") and isOnlyOnePanelOpen()
setInSession "display_usersList", true
setInSession "display_whiteboard", true
setInSession "display_chatbar", true
else
setInSession "display_whiteboard", !getInSession "display_whiteboard"
setTimeout(redrawWhiteboard, 0)
@toggleSlidingMenu = ->
if $('#sliding-menu').hasClass('sliding-menu-opened')
DestroyFixedView()
setInSession 'display_slidingMenu', false
$('#sliding-menu').removeClass('sliding-menu-opened')
$('#shield').css('display', 'none')
$(document).unbind('scroll')
else
CreateFixedView()
setInSession 'display_slidingMenu', true
$('#sliding-menu').addClass('sliding-menu-opened')
$('#shield').css('display', 'block')
$(document).bind 'scroll', () ->
window.scrollTo(0, 0)
@toggleNavbarCollapse = ->
setInSession 'display_hiddenNavbarSection', !getInSession 'display_hiddenNavbarSection'
if getInSession 'display_hiddenNavbarSection'
$('.navbarTitle').addClass('narrowedNavbarTitle');
$('.collapseNavbarSection').css('display', 'block')
else
$('.collapseNavbarSection').css('display', 'none')
$('.navbarTitle').removeClass('narrowedNavbarTitle');
# Starts the entire logout procedure.
2014-07-25 01:56:31 +08:00
# meeting: the meeting the user is in
# the user's userId
2014-07-28 23:00:07 +08:00
@userLogout = (meeting, user) ->
2014-11-21 23:05:03 +08:00
Meteor.call("userLogout", meeting, user, getInSession("authToken"))
console.log "logging out"
clearSessionVar(document.location = getInSession 'logoutURL') # navigate to logout
2014-07-25 01:56:31 +08:00
2014-12-06 02:53:53 +08:00
# Clear the local user session
@clearSessionVar = (callback) ->
amplify.store('authToken', null)
amplify.store('bbbServerVersion', null)
amplify.store('chatTabs', null)
amplify.store('dateOfBuild', null)
amplify.store('display_chatPane', null)
amplify.store('display_chatbar', null)
amplify.store('display_navbar', null)
amplify.store('display_usersList', null)
amplify.store('display_whiteboard', null)
amplify.store('inChatWith', null)
2015-03-11 05:03:16 +08:00
amplify.store('logoutURL', null)
amplify.store('meetingId', null)
amplify.store('messageFontSize', null)
amplify.store('tabsRenderedTime', null)
amplify.store('userId', null)
amplify.store('userName', null)
if callback?
callback()
2014-10-24 23:09:58 +08:00
# assign the default values for the Session vars
@setDefaultSettings = ->
# console.log "in setDefaultSettings"
if isLandscapeMobile()
setInSession "display_usersList", false
else
setInSession "display_usersList", true
setInSession "display_navbar", true
setInSession "display_chatbar", true
setInSession "display_whiteboard", true
setInSession "display_chatPane", true
setInSession "inChatWith", 'PUBLIC_CHAT'
if isPortraitMobile()
setInSession "messageFontSize", Meteor.config.app.mobileFont
else
setInSession "messageFontSize", Meteor.config.app.desktopFont
setInSession 'display_slidingMenu', false
setInSession 'display_hiddenNavbarSection', false
setInSession 'webrtc_notification_is_displayed', false
@onLoadComplete = ->
setDefaultSettings()
Meteor.Users.find().observe({
removed: (oldDocument) ->
if oldDocument.userId is getInSession 'userId'
document.location = getInSession 'logoutURL'
})
# applies zooming to the stroke thickness
@zoomStroke = (thickness) ->
2014-09-16 00:46:02 +08:00
currentSlide = @getCurrentSlideDoc()
ratio = (currentSlide?.slide.width_ratio + currentSlide?.slide.height_ratio) / 2
thickness * 100 / ratio
2014-09-16 00:46:02 +08:00
# Detects a mobile device
@isMobile = ->
navigator.userAgent.match(/Android/i) or
navigator.userAgent.match(/iPad/i) or
navigator.userAgent.match(/iPhone/i) or
navigator.userAgent.match(/iPod/i) or
navigator.userAgent.match(/Windows Phone/i) or
navigator.userAgent.match(/BlackBerry/i) or
navigator.userAgent.match(/webOS/i)
# Checks if the view is portrait and a mobile device is being used
@isPortraitMobile = () ->
window.matchMedia('(orientation: portrait)').matches and # browser is portrait
window.matchMedia('(max-device-aspect-ratio: 1/1)').matches and # device is portrait
(navigator.userAgent.match(/Android/i) or # device is one of the following mobile devices:
navigator.userAgent.match(/iPhone|iPad|iPod/i) or
navigator.userAgent.match(/BlackBerry/i) or
navigator.userAgent.match(/Opera Mini/i) or
navigator.userAgent.match(/IEMobile/i) or
navigator.userAgent.match(/webOS/i))
# Checks if the view is landscape and mobile device is being used
@isLandscapeMobile = () ->
window.matchMedia('(orientation: landscape)').matches and # browser is landscape
window.matchMedia('(min-device-aspect-ratio: 1/1)').matches and # device is landscape
(navigator.userAgent.match(/Android/i) or # device is one of the mobile gadgets
navigator.userAgent.match(/iPad/i) or
navigator.userAgent.match(/iPhone/i) or
navigator.userAgent.match(/iPod/i) or
navigator.userAgent.match(/Windows Phone/i) or
navigator.userAgent.match(/BlackBerry/i) or
navigator.userAgent.match(/webOS/i))
# Checks if only one panel (userlist/whiteboard/chatbar) is currently open
@isOnlyOnePanelOpen = () ->
#(getInSession "display_usersList" ? 1 : 0) + (getInSession "display_whiteboard" ? 1 : 0) + (getInSession "display_chatbar" ? 1 : 0) is 1
getInSession("display_usersList") + getInSession("display_whiteboard") + getInSession("display_chatbar") is 1
# Reverts all the changes to userlist, whiteboard and chat made by the push menu
@DestroyFixedView = () ->
$('#chat').css('position', '')
$('#chat').css('top', '')
$('#chat').css('left', '')
$('#users').css('position', '')
$('#users').css('top', '')
$('#users').css('left', '')
$('#whiteboard').css('position', '')
$('#whiteboard').css('top', '')
$('#whiteboard').css('left', '')
$('#footer').css('position', '')
$('#footer').css('top', '')
$('#footer').css('left', '')
$('#chat').css('height', '')
$('#users').css('height', '')
$('#users').css('width', '')
$('#whiteboard').css('height', '')
$('#footer').css('height', '')
$('#footer').css('width', '')
# pushing the view back
$('#main').css('position', 'relative')
$('#main').css('top', '0')
$('#main').css('left', '0')
# Makes the position of userlist, whiteboard and chat fixed (to disable scrolling) and
# positions each element correctly
@CreateFixedView = () ->
# positioning the whiteboard
if getInSession 'display_whiteboard'
whiteboardHeight = $('#whiteboard').height()
$('#whiteboard').css('position', 'fixed')
$('#whiteboard').css('left', '15%')
$('#whiteboard').css('height', whiteboardHeight + 5 + 'px')
$('#whiteboard').css('top', '100px')
# positioning the chatbar
if getInSession 'display_chatbar'
chatHeight = $('#chat').height()
$('#chat').css('position', 'fixed')
$('#chat').css('left', '15%')
$('#chat').css('height', chatHeight)
if getInSession 'display_whiteboard'
$('#chat').css('top', 110 + $('#whiteboard').height() + 'px')
else
$('#chat').css('top', '100px')
# positioning the userlist
if getInSession 'display_usersList'
chatHeight = $('#chat').height()
usersHeight = $('#users').height()
usersWidth = $('#users').width()
$('#users').css('position', 'fixed')
$('#users').css('left', '15%')
$('#users').css('width', usersWidth) # prevents from shrinking
$('#users').css('height', usersHeight)
top = 100 # minimum margin for the userlist (height of the navbar)
if getInSession 'display_whiteboard'
top += $('#whiteboard').height() + 10
if getInSession 'display_chatbar'
top += chatHeight + 15
$('#users').css('top', top + 'px')
# positioning the footer
chatHeight = $('#chat').height()
usersHeight = $('#users').height()
footerHeight = $('#footer').height()
footerWidth = $('#footer').width()
$('#footer').css('position', 'fixed')
$('#footer').css('left', '15%')
$('#footer').css('height', footerHeight)
$('#footer').css('width', footerWidth) # prevents from shrinking
top = 100
if getInSession 'display_whiteboard'
top += $('#whiteboard').height() + 10
if getInSession 'display_chatbar'
top += chatHeight + 15
if getInSession 'display_usersList'
top += usersHeight + 30
$('#footer').css('top', top + 'px')
# pusing the rest of the page right
$('#main').css('position', 'fixed')
$('#main').css('top', '50px')
$('#main').css('left', '15%')