2014-06-14 02:19:50 +08:00
|
|
|
# Allow access through all templates
|
|
|
|
Handlebars.registerHelper "setInSession", (k, v) -> Session.set k, v
|
|
|
|
Handlebars.registerHelper "getInSession", (k) -> Session.get k
|
|
|
|
# Allow access throughout all coffeescript/js files
|
|
|
|
@setInSession = (k, v) -> Session.set k, v
|
|
|
|
@getInSession = (k) -> Session.get k
|
|
|
|
|
2014-06-26 02:51:16 +08:00
|
|
|
# retrieve account for selected user
|
2014-06-14 02:19:50 +08:00
|
|
|
@getCurrentUserFromSession = ->
|
2014-06-26 02:51:16 +08:00
|
|
|
Meteor.Users.findOne("userId": Session.get("userId"))
|
2014-06-14 02:19:50 +08:00
|
|
|
|
|
|
|
# retrieve account for selected user
|
|
|
|
Handlebars.registerHelper "getCurrentUser", =>
|
|
|
|
@window.getCurrentUserFromSession()
|
|
|
|
|
|
|
|
# toggle state of field in the database
|
|
|
|
@toggleCam = (context) ->
|
2014-06-27 01:13:19 +08:00
|
|
|
# Meteor.Users.update {_id: context._id} , {$set:{"user.sharingVideo": !context.sharingVideo}}
|
|
|
|
# Meteor.call('userToggleCam', context._id, !context.sharingVideo)
|
2014-06-14 02:19:50 +08:00
|
|
|
|
|
|
|
@toggleMic = (context) ->
|
2014-06-27 01:13:19 +08:00
|
|
|
# Meteor.Users.update {_id: context._id} , {$set:{"user.sharingAudio": !context.sharingAudio}}
|
|
|
|
# Meteor.call('userToggleMic', context._id, !context.sharingAudio)
|
2014-06-14 02:19:50 +08:00
|
|
|
|
|
|
|
# toggle state of session variable
|
|
|
|
@toggleUsersList = ->
|
2014-06-19 21:26:46 +08:00
|
|
|
setInSession "display_usersList", !getInSession "display_usersList"
|
2014-06-14 02:19:50 +08:00
|
|
|
|
|
|
|
@toggleNavbar = ->
|
2014-06-19 21:26:46 +08:00
|
|
|
setInSession "display_navbar", !getInSession "display_navbar"
|
|
|
|
|
|
|
|
@toggleChatbar = ->
|
2014-06-19 22:45:58 +08:00
|
|
|
setInSession "display_chatbar", !getInSession "display_chatbar"
|
|
|
|
|
|
|
|
Meteor.methods
|
|
|
|
sendMeetingInfoToClient: (meetingId, userId) ->
|
2014-06-19 23:36:51 +08:00
|
|
|
Session.set("userId", userId)
|
2014-06-23 21:21:03 +08:00
|
|
|
Session.set("meetingId", meetingId)
|
2014-06-25 21:27:12 +08:00
|
|
|
Session.set("meetingName", "Demo Meeting")
|
2014-06-27 01:13:19 +08:00
|
|
|
Session.set("bbbServerVersion", "0.90")
|
|
|
|
Session.set("userName", "sample user name")
|
2014-06-24 00:58:30 +08:00
|
|
|
|
|
|
|
Handlebars.registerHelper "isUserSharingAudio", (u) ->
|
|
|
|
u.voiceUser.talking
|
|
|
|
|
|
|
|
Handlebars.registerHelper "isUserSharingVideo", (u) ->
|
|
|
|
u.webcam_stream.length isnt 0
|
|
|
|
|
2014-06-25 02:10:02 +08:00
|
|
|
# should be changed to find all users listed in the meeting and retrieve them,
|
|
|
|
# instead of here where we retrieve every user pointing to the meeting
|
|
|
|
Handlebars.registerHelper "getUsersInMeeting", ->
|
|
|
|
m = Meteor.Users.find {meetingId: Session.get("meetingId")}
|
|
|
|
m
|