# 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}) # retrieve account for selected user @getCurrentUserFromSession = -> Meteor.Users.findOne("_id": getInSession("userId")) @getInSession = (k) -> SessionAmplify.get k @getMeetingName = -> meetName = getInSession("meetingName") # check if we actually have one in the session if meetName? then meetName # great return it, no database query else # we need it from the database meet = Meteor.Meetings.findOne({}) if meet?.meetingName setInSession "meetingName", meet?.meetingName # store in session for fast access next time meet?.meetingName else "your meeting" @getTime = -> # returns epoch in ms (new Date).valueOf() @getTimeOfJoining = -> Meteor.Users.findOne(_id: getInSession "DBID")?.user?.time_of_joining @getPresentationFilename = -> currentPresentation = Meteor.Presentations.findOne({"presentation.current": true}) currentPresentation?.presentation?.name Handlebars.registerHelper "colourToHex", (value) => @window.colourToHex(value) Handlebars.registerHelper 'equals', (a, b) -> # equals operator was dropped in Meteor's migration from Handlebars to Spacebars a is b Handlebars.registerHelper "getCurrentMeeting", -> Meteor.Meetings.findOne() Handlebars.registerHelper "getIPFromConfig", -> Meteor.config.app.redirectToLoginOnLogout Handlebars.registerHelper "getCurrentSlide", -> currentPresentation = Meteor.Presentations.findOne({"presentation.current": true}) presentationId = currentPresentation?.presentation?.id Meteor.Slides.find({"presentationId": presentationId, "slide.current": true}) # retrieve account for selected user Handlebars.registerHelper "getCurrentUser", => @window.getCurrentUserFromSession() # Allow access through all templates Handlebars.registerHelper "getInSession", (k) -> SessionAmplify.get k Handlebars.registerHelper "getMeetingName", -> window.getMeetingName() Handlebars.registerHelper "getShapesForSlide", -> currentSlide = getCurrentSlideDoc() # try to reuse the lines above Meteor.Shapes.find({whiteboardId: currentSlide?.slide?.id}) # retrieves all users in the meeting Handlebars.registerHelper "getUsersInMeeting", -> Meteor.Users.find({}) Handlebars.registerHelper "getWhiteboardTitle", -> "Whiteboard: " + getPresentationFilename() Handlebars.registerHelper "isCurrentUser", (userId) -> userId is BBB.getCurrentUser()?.userId Handlebars.registerHelper "isCurrentUserMuted", -> BBB.amIMuted() Handlebars.registerHelper "isCurrentUserRaisingHand", -> user = BBB.getCurrentUser() user?.user?.raise_hand 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", (_id) -> user = Meteor.Users.findOne({_id:_id}) return user?.user?.listenOnly Handlebars.registerHelper "isUserMuted", (_id) -> BBB.isUserMuted(_id) Handlebars.registerHelper "isUserSharingAudio", (_id) -> BBB.isUserSharingAudio(_id) Handlebars.registerHelper "isUserSharingVideo", (_id) -> BBB.isUserSharingWebcam(_id) Handlebars.registerHelper "isUserTalking", (_id) -> BBB.isUserTalking(_id) Handlebars.registerHelper "meetingIsRecording", -> Meteor.Meetings.findOne()?.recorded # Should only ever have one meeting, so we dont need any filter and can trust result #1 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) Handlebars.registerHelper "setInSession", (k, v) -> SessionAmplify.set k, v Handlebars.registerHelper "visibility", (section) -> if getInSession "display_#{section}" style: 'display:block' else style: 'display:none' @isSharingAudio = -> return Meteor.Users.findOne({_id: getInSession "DBID"})?.user?.voiceUser?.joined # 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, "$1" str = str.replace www, "$1$2" # check the chat history of the user and add tabs for the private chats @populateChatTabs = -> mydbid = getInSession "DBID" 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 if chat.message.to_userid is mydbid uniqueArray.push({userId: chat.message.from_userid, username: chat.message.from_username}) if chat.message.from_userid is mydbid 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) ) #insert the unique entries in the collection for u in uniqueArray unless chatTabs.findOne({userId: u.userId})? chatTabs.insert({ userId: u.userId, name: u.username, gotMail: false, class: "privateChatTab"}) @setInSession = (k, v) -> if k is "DBID" then console.log "setInSession #{k}, #{v}" SessionAmplify.set k, v @sendMeetingInfoToClient = (meetingId, userId) -> setInSession("userId", userId) setInSession("meetingId", meetingId) setInSession("currentChatId", meetingId) #TODO check if this is needed setInSession("meetingName", null) setInSession("userName", null) @setInSession = (k, v) -> SessionAmplify.set k, v @safeString = (str) -> if typeof str is 'string' str.replace(/&/g, '&').replace(//g, '>').replace(/"/g, '"'); @toggleCam = (event) -> # Meteor.Users.update {_id: context._id} , {$set:{"user.sharingVideo": !context.sharingVideo}} # Meteor.call('userToggleCam', context._id, !context.sharingVideo) @toggleChatbar = -> setInSession "display_chatbar", !getInSession "display_chatbar" @toggleMic = (event) -> u = Meteor.Users.findOne({_id:getInSession("DBID")}) if u? Meteor.call('muteUser', getInSession("meetingId"), u.userId, getInSession("userId"), getInSession("userSecret"), not u.user.voiceUser.muted) @toggleNavbar = -> setInSession "display_navbar", !getInSession "display_navbar" # toggle state of session variable @toggleUsersList = -> setInSession "display_usersList", !getInSession "display_usersList" @toggleVoiceCall = (event) -> if isSharingAudio() 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 @toggleWhiteBoard = -> setInSession "display_whiteboard", !getInSession "display_whiteboard" # Starts the entire logout procedure. # meeting: the meeting the user is in # the user's userId @userLogout = (meeting, user) -> Meteor.call("userLogout", meeting, user, getInSession("authToken")) # Clear the local user session and redirect them away setInSession("userId", null) setInSession("meetingId", null) setInSession("currentChatId", null) setInSession("meetingName", null) setInSession("bbbServerVersion", null) setInSession("userName", null) setInSession "display_navbar", false # needed to hide navbar when the layout template renders Router.go('logout') # navigate to logout # applies zooming to the stroke thickness @zoomStroke = (thickness) -> currentSlide = @getCurrentSlideDoc() ratio = (currentSlide?.slide.width_ratio + currentSlide?.slide.height_ratio) / 2 thickness * 100 / ratio # start a clientside-only collection keeping track of the chat tabs @chatTabs = new Meteor.Collection(null) # insert the basic tabs @chatTabs.insert({ userId: "PUBLIC_CHAT", name: "Public", gotMail: false, class: "publicChatTab"}) @chatTabs.insert({ userId: "OPTIONS", name: "Options", gotMail: false, class: "optionsChatTab"}) # TODO TEMPORARY!! # must not have this in production @whoami = -> return { username: getInSession "userName" userid: getInSession "userId" userSecret: getInSession "userSecret" DBIDinSession: getInSession "DBID" DBIDfromCol: Meteor.Users.findOne({userId:getInSession 'userId'})?._id }