bigbluebutton-Github/labs/meteor-client/client/globals.coffee

133 lines
5.1 KiB
CoffeeScript
Raw Normal View History

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
# Allow access through all templates
Handlebars.registerHelper "setInSession", (k, v) -> SessionAmplify.set k, v
Handlebars.registerHelper "getInSession", (k) -> SessionAmplify.get k
# Allow access throughout all coffeescript/js files
@setInSession = (k, v) -> SessionAmplify.set k, v
2014-07-18 03:45:26 +08:00
@getInSession = (k) -> SessionAmplify.get k
# retrieve account for selected user
@getCurrentUserFromSession = ->
Meteor.Users.findOne("userId": getInSession("userId"))
# retrieve account for selected user
Handlebars.registerHelper "getCurrentUser", =>
@window.getCurrentUserFromSession()
# toggle state of field in the database
@toggleCam = (event) ->
# Meteor.Users.update {_id: context._id} , {$set:{"user.sharingVideo": !context.sharingVideo}}
# Meteor.call('userToggleCam', context._id, !context.sharingVideo)
2014-07-29 03:24:07 +08:00
@toggleVoiceCall = (event) ->
if getInSession "isSharingAudio"
callback = ->
setInSession "isSharingAudio", false # update to no longer sharing
console.log "left voice conference"
# sometimes we can hangup before the message that the user stopped talking is received so lets set it manually, otherwise they might leave the audio call but still be registered as talking
Meteor.call("userStopAudio", getInSession("meetingId"),getInSession("userId"))
webrtc_hangup callback # sign out of call
else
# create voice call params
username = "#{getInSession("userId")}-bbbID-#{getUsersName()}"
voiceBridge = "70827"
server = null
callback = (message) ->
console.log JSON.stringify message
setInSession "isSharingAudio", true
Meteor.call("userShareAudio", getInSession("meetingId"),getInSession("userId"))
webrtc_call(username, voiceBridge, server, callback) # make the call
2014-07-29 03:24:07 +08:00
@toggleMic = (event) ->
if getInSession "isSharingAudio" # only allow muting/unmuting if they are in the call
console.log "toggling mute"
# u = Meteor.Users.findOne({userId:getInSession("userId")})
# if u?
# Meteor.call('muteRequest', u.userId, u.meetingId, u.userId, not u.user.voiceUser.muted)
# toggle state of session variable
@toggleUsersList = ->
2014-06-19 21:26:46 +08:00
setInSession "display_usersList", !getInSession "display_usersList"
@toggleNavbar = ->
2014-06-19 21:26:46 +08:00
setInSession "display_navbar", !getInSession "display_navbar"
@toggleChatbar = ->
setInSession "display_chatbar", !getInSession "display_chatbar"
Meteor.methods
sendMeetingInfoToClient: (meetingId, userId) ->
setInSession("userId", userId)
setInSession("meetingId", meetingId)
setInSession("currentChatId", meetingId)
setInSession("meetingName", null)
setInSession("bbbServerVersion", "0.90")
setInSession("userName", null)
2014-07-18 23:18:27 +08:00
setInSession("validUser", true) # got info from server, user is a valid user
2014-07-18 03:45:26 +08:00
2014-07-09 21:15:50 +08:00
@getUsersName = ->
name = getInSession("userName") # check if we actually have one in the session
2014-07-09 21:15:50 +08:00
if name? then name # great return it, no database query
else # we need it from the database
user = Meteor.Users.findOne({'userId': getInSession("userId")})
2014-07-09 21:15:50 +08:00
if user?.user?.name
setInSession "userName", user.user.name # store in session for fast access next time
2014-07-09 21:15:50 +08:00
user.user.name
else null
@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 null
2014-07-09 21:28:33 +08:00
Handlebars.registerHelper "getMeetingName", ->
window.getMeetingName()
Handlebars.registerHelper "isUserSharingVideo", (u) ->
u.webcam_stream.length isnt 0
2014-06-27 21:59:31 +08:00
Handlebars.registerHelper "isCurrentUser", (id) ->
id is getInSession("userId")
2014-06-27 21:59:31 +08:00
# retrieves all users in the meeting
2014-06-25 02:10:02 +08:00
Handlebars.registerHelper "getUsersInMeeting", ->
2014-07-09 21:15:50 +08:00
Meteor.Users.find({})
Handlebars.registerHelper "isUserTalking", (u) ->
if u? then u.voiceUser?.talking
else return false
Handlebars.registerHelper "isUserSharingAudio", (u) ->
if u? then u.voiceUser?.joined
else return false
# Starts the entire logout procedure. Can be called for signout out
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-07-25 01:56:31 +08:00
Meteor.call("userLogout", meeting, user)
2014-07-28 23:00:07 +08:00
# Clear the local user session and redirect them away
2014-07-25 01:56:31 +08:00
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
2014-07-28 23:00:07 +08:00
Router.go('logout') # navigate to logout
@userKick = (meeting, user) ->
Meteor.call("userKick", meeting, user)
@getTime = -> # returns epoch in ms
(new Date).valueOf()