2014-10-01 01:12:47 +08:00
|
|
|
# --------------------------------------------------------------------------------------------
|
|
|
|
# Public methods on server
|
|
|
|
# All these method must first authenticate the user before it calls the private function counterpart below
|
2014-10-02 22:15:45 +08:00
|
|
|
# which sends the request to bbbApps. If the method is modifying the media the current user is sharing,
|
|
|
|
# you should perform the request before sending the request to bbbApps. This allows the user request to be performed
|
|
|
|
# immediately, since they do not require permission for things such as muting themsevles.
|
2014-10-01 01:12:47 +08:00
|
|
|
# --------------------------------------------------------------------------------------------
|
2014-06-20 00:57:43 +08:00
|
|
|
Meteor.methods
|
2014-11-19 03:35:51 +08:00
|
|
|
# meetingId: the meetingId of the meeting the user[s] is in
|
|
|
|
# toMuteUserId: the userId of the user to be [un]muted
|
|
|
|
# requesterUserId: the userId of the requester
|
2014-11-22 01:45:44 +08:00
|
|
|
# requesterToken: the authToken of the requester
|
2014-11-19 03:35:51 +08:00
|
|
|
# mutedBoolean: true for muting, false for unmuting
|
2014-11-22 01:45:44 +08:00
|
|
|
muteUser: (meetingId, toMuteUserId, requesterUserId, requesterToken, mutedBoolean) ->
|
2014-11-19 03:35:51 +08:00
|
|
|
action = ->
|
|
|
|
if mutedBoolean
|
|
|
|
if toMuteUserId is requesterUserId
|
|
|
|
return 'muteSelf'
|
|
|
|
else
|
|
|
|
return 'muteOther'
|
|
|
|
else
|
|
|
|
if toMuteUserId is requesterUserId
|
|
|
|
return 'unmuteSelf'
|
|
|
|
else
|
|
|
|
return 'unmuteOther'
|
|
|
|
|
2014-11-22 01:45:44 +08:00
|
|
|
if isAllowedTo(action(), meetingId, requesterUserId, requesterToken)
|
2014-11-19 00:28:00 +08:00
|
|
|
message =
|
2014-11-19 03:35:51 +08:00
|
|
|
payload:
|
|
|
|
userid: toMuteUserId
|
|
|
|
meeting_id: meetingId
|
|
|
|
mute: mutedBoolean
|
|
|
|
requester_id: requesterUserId
|
|
|
|
header:
|
|
|
|
timestamp: new Date().getTime()
|
|
|
|
name: "mute_user_request"
|
|
|
|
version: "0.0.1"
|
|
|
|
|
|
|
|
Meteor.log.info "publishing a user mute #{mutedBoolean} request for #{toMuteUserId}"
|
2014-11-19 00:28:00 +08:00
|
|
|
|
|
|
|
publish Meteor.config.redis.channels.toBBBApps.voice, message
|
2014-11-19 03:35:51 +08:00
|
|
|
updateVoiceUser meetingId, {'web_userid': toMuteUserId, talking:false, muted:mutedBoolean}
|
|
|
|
return
|
2014-11-19 00:28:00 +08:00
|
|
|
|
|
|
|
# meetingId: the meetingId which both users are in
|
|
|
|
# toLowerUserId: the userid of the user to have their hand lowered
|
|
|
|
# loweredByUserId: userId of person lowering
|
2014-11-22 01:45:44 +08:00
|
|
|
# loweredByToken: the authToken of the requestor
|
|
|
|
userLowerHand: (meetingId, toLowerUserId, loweredByUserId, loweredByToken) ->
|
2014-11-19 00:28:00 +08:00
|
|
|
action = ->
|
|
|
|
if toLowerUserId is loweredByUserId
|
|
|
|
return 'lowerOwnHand'
|
|
|
|
else
|
|
|
|
return 'lowerOthersHand'
|
|
|
|
|
2014-11-22 01:45:44 +08:00
|
|
|
if isAllowedTo(action(), meetingId, loweredByUserId, loweredByToken)
|
2014-11-19 00:28:00 +08:00
|
|
|
message =
|
|
|
|
payload:
|
|
|
|
userid: toLowerUserId
|
|
|
|
meeting_id: meetingId
|
|
|
|
raise_hand: false
|
|
|
|
lowered_by: loweredByUserId
|
|
|
|
header:
|
|
|
|
timestamp: new Date().getTime()
|
|
|
|
name: "user_lowered_hand_message"
|
|
|
|
version: "0.0.1"
|
|
|
|
|
|
|
|
# publish to pubsub
|
|
|
|
publish Meteor.config.redis.channels.toBBBApps.users, message
|
|
|
|
return
|
|
|
|
|
|
|
|
# meetingId: the meetingId which both users are in
|
|
|
|
# toRaiseUserId: the userid of the user to have their hand lowered
|
|
|
|
# raisedByUserId: userId of person lowering
|
2014-11-22 01:45:44 +08:00
|
|
|
# raisedByToken: the authToken of the requestor
|
|
|
|
userRaiseHand: (meetingId, toRaiseUserId, raisedByUserId, raisedByToken) ->
|
2014-11-19 00:28:00 +08:00
|
|
|
action = ->
|
|
|
|
if toRaiseUserId is raisedByUserId
|
|
|
|
return 'raiseOwnHand'
|
|
|
|
else
|
|
|
|
return 'raiseOthersHand'
|
|
|
|
|
2014-11-22 01:45:44 +08:00
|
|
|
if isAllowedTo(action(), meetingId, raisedByUserId, raisedByToken)
|
2014-11-19 00:28:00 +08:00
|
|
|
message =
|
|
|
|
payload:
|
|
|
|
userid: toRaiseUserId
|
|
|
|
meeting_id: meetingId
|
|
|
|
raise_hand: false
|
|
|
|
lowered_by: raisedByUserId
|
|
|
|
header:
|
|
|
|
timestamp: new Date().getTime()
|
|
|
|
name: "user_raised_hand_message"
|
|
|
|
version: "0.0.1"
|
|
|
|
|
|
|
|
# publish to pubsub
|
|
|
|
publish Meteor.config.redis.channels.toBBBApps.users, message
|
|
|
|
return
|
|
|
|
|
2014-11-19 06:03:13 +08:00
|
|
|
# meetingId: the meeting where the user is
|
|
|
|
# userId: the userid of the user logging out
|
2014-11-22 01:45:44 +08:00
|
|
|
# authToken: the authToken of the user
|
|
|
|
userLogout: (meetingId, userId, authToken) ->
|
|
|
|
if isAllowedTo('logoutSelf', meetingId, userId, authToken)
|
2014-11-19 06:03:13 +08:00
|
|
|
Meteor.log.info "a user is logging out from #{meetingId}:" + userId
|
|
|
|
requestUserLeaving meetingId, userId
|
2014-09-25 22:45:13 +08:00
|
|
|
|
|
|
|
# --------------------------------------------------------------------------------------------
|
|
|
|
# Private methods on server
|
|
|
|
# --------------------------------------------------------------------------------------------
|
2014-10-08 04:08:36 +08:00
|
|
|
|
2014-09-26 01:21:46 +08:00
|
|
|
# Only callable from server
|
2014-10-08 04:08:36 +08:00
|
|
|
# Received information from BBB-Apps that a user left
|
|
|
|
# Need to update the collection
|
2014-10-08 04:34:03 +08:00
|
|
|
# params: meetingid, userid as defined in BBB-Apps
|
2014-11-22 04:51:37 +08:00
|
|
|
@markUserOffline = (meetingId, userId) ->
|
2014-11-22 04:29:07 +08:00
|
|
|
# mark the user as offline. remove from the collection on meeting_end #TODO
|
2014-12-10 04:45:20 +08:00
|
|
|
Meteor.log.info "marking user [#{userId}] as offline in meeting[#{meetingId}]"
|
2014-11-22 04:29:07 +08:00
|
|
|
Meteor.Users.update({'meetingId': meetingId, 'userId': userId}, {$set:{'user.connection_status':'offline'}})
|
|
|
|
|
2014-11-22 04:51:37 +08:00
|
|
|
# Only callable from server
|
|
|
|
# when the meeting ends
|
|
|
|
@removeUserFromCollection = (meetingId, userId) ->
|
|
|
|
Meteor.log.info "in users::removeUserFromCollection, #{meetingId} #{userId}"
|
|
|
|
u = Meteor.Users.findOne({'meetingId': meetingId, 'userId': userId})
|
|
|
|
if u?
|
|
|
|
Meteor.Users.remove(u._id)
|
|
|
|
Meteor.log.info "----removed user[" + userId + "] from " + meetingId
|
|
|
|
else
|
|
|
|
Meteor.log.info "did not find a user [userId] to delete in meetingid:#{meetingId}"
|
|
|
|
|
2014-10-08 04:08:36 +08:00
|
|
|
|
2014-10-08 04:34:03 +08:00
|
|
|
# Corresponds to a valid action on the HTML clientside
|
|
|
|
# After authorization, publish a user_leaving_request in redis
|
2014-11-19 06:03:13 +08:00
|
|
|
# params: meetingid, userid as defined in BBB-App
|
|
|
|
@requestUserLeaving = (meetingId, userId) ->
|
|
|
|
if Meteor.Users.findOne({'meetingId': meetingId, 'userId': userId})?
|
2014-11-19 00:28:00 +08:00
|
|
|
message =
|
2014-11-19 06:03:13 +08:00
|
|
|
payload:
|
|
|
|
meeting_id: meetingId
|
|
|
|
userid: userId
|
|
|
|
header:
|
|
|
|
timestamp: new Date().getTime()
|
|
|
|
name: "user_leaving_request"
|
|
|
|
version: "0.0.1"
|
|
|
|
|
|
|
|
if userId? and meetingId?
|
|
|
|
Meteor.log.info "sending a user_leaving_request for #{meetingId}:#{userId}"
|
2014-11-19 00:28:00 +08:00
|
|
|
publish Meteor.config.redis.channels.toBBBApps.users, message
|
|
|
|
else
|
|
|
|
Meteor.log.info "did not have enough information to send a user_leaving_request"
|
2014-10-08 04:08:36 +08:00
|
|
|
|
2014-09-26 01:21:46 +08:00
|
|
|
#update a voiceUser - a helper method
|
2014-10-11 05:35:51 +08:00
|
|
|
@updateVoiceUser = (meetingId, voiceUserObject) ->
|
2014-11-19 00:28:00 +08:00
|
|
|
u = Meteor.Users.findOne userId: voiceUserObject.web_userid
|
|
|
|
if u?
|
|
|
|
if voiceUserObject.talking?
|
2014-11-21 06:01:26 +08:00
|
|
|
Meteor.Users.update({meetingId: meetingId ,userId: voiceUserObject.web_userid}, {$set: {'user.voiceUser.talking':voiceUserObject.talking}}) # talking
|
2014-11-19 00:28:00 +08:00
|
|
|
if voiceUserObject.joined?
|
2014-11-21 06:01:26 +08:00
|
|
|
Meteor.Users.update({meetingId: meetingId ,userId: voiceUserObject.web_userid}, {$set: {'user.voiceUser.joined':voiceUserObject.joined}}) # joined
|
2014-11-19 00:28:00 +08:00
|
|
|
if voiceUserObject.locked?
|
2014-11-21 06:01:26 +08:00
|
|
|
Meteor.Users.update({meetingId: meetingId ,userId: voiceUserObject.web_userid}, {$set: {'user.voiceUser.locked':voiceUserObject.locked}}) # locked
|
2014-11-19 00:28:00 +08:00
|
|
|
if voiceUserObject.muted?
|
2014-11-21 06:01:26 +08:00
|
|
|
Meteor.Users.update({meetingId: meetingId ,userId: voiceUserObject.web_userid}, {$set: {'user.voiceUser.muted':voiceUserObject.muted}}) # muted
|
2014-11-19 00:28:00 +08:00
|
|
|
if voiceUserObject.listenOnly?
|
2014-11-21 06:01:26 +08:00
|
|
|
Meteor.Users.update({meetingId: meetingId ,userId: voiceUserObject.web_userid}, {$set: {'user.listenOnly':voiceUserObject.listenOnly}}) # muted
|
2014-11-19 00:28:00 +08:00
|
|
|
else
|
|
|
|
Meteor.log.info "ERROR! did not find such voiceUser!"
|
2014-09-26 02:29:43 +08:00
|
|
|
|
2014-11-21 05:32:51 +08:00
|
|
|
@userJoined = (meetingId, user) ->
|
2014-11-19 00:28:00 +08:00
|
|
|
userId = user.userid
|
2014-11-21 05:32:51 +08:00
|
|
|
|
|
|
|
u = Meteor.Users.findOne({userId:user.userid, meetingId: meetingId})
|
|
|
|
# the collection already contains an entry for this user because
|
|
|
|
# we added a dummy user on register_user_message (to save authToken)
|
|
|
|
if u?
|
2014-11-21 07:35:30 +08:00
|
|
|
Meteor.log.info "UPDATING USER #{user.userid}, authToken=#{u.authToken}"
|
2014-11-21 05:32:51 +08:00
|
|
|
Meteor.Users.update({userId:user.userid, meetingId: meetingId}, {$set:{
|
|
|
|
user:
|
|
|
|
userid: user.userid
|
|
|
|
presenter: user.presenter
|
|
|
|
name: user.name
|
|
|
|
phone_user: user.phone_user
|
|
|
|
raise_hand: user.raise_hand
|
|
|
|
has_stream: user.has_stream
|
|
|
|
role: user.role
|
|
|
|
listenOnly: user.listenOnly
|
|
|
|
extern_userid: user.extern_userid
|
|
|
|
permissions: user.permissions
|
|
|
|
locked: user.locked
|
|
|
|
time_of_joining: user.timeOfJoining
|
2014-11-22 04:29:07 +08:00
|
|
|
connection_status: "online" # TODO consider other default value
|
2014-11-21 05:32:51 +08:00
|
|
|
voiceUser:
|
|
|
|
web_userid: user.voiceUser.web_userid
|
|
|
|
callernum: user.voiceUser.callernum
|
|
|
|
userid: user.voiceUser.userid
|
|
|
|
talking: user.voiceUser.talking
|
|
|
|
joined: user.voiceUser.joined
|
|
|
|
callername: user.voiceUser.callername
|
|
|
|
locked: user.voiceUser.locked
|
|
|
|
muted: user.voiceUser.muted
|
|
|
|
webcam_stream: user.webcam_stream
|
|
|
|
}})
|
|
|
|
|
|
|
|
else
|
|
|
|
# scenario: there are meetings running at the time when the meteor
|
|
|
|
# process starts. As a result we the get_users_reply message contains
|
|
|
|
# users for which we have not observed user_registered_message and
|
|
|
|
# hence we do not have the auth_token. There will be permission issues
|
|
|
|
# as the server collection does not have the auth_token of such users
|
|
|
|
# and cannot authorize their client side actions
|
|
|
|
Meteor.log.info "NOTE: got user_joined_message "
|
2014-11-19 00:28:00 +08:00
|
|
|
entry =
|
|
|
|
meetingId: meetingId
|
|
|
|
userId: userId
|
|
|
|
user:
|
|
|
|
userid: user.userid
|
|
|
|
presenter: user.presenter
|
|
|
|
name: user.name
|
|
|
|
phone_user: user.phone_user
|
|
|
|
raise_hand: user.raise_hand
|
|
|
|
has_stream: user.has_stream
|
|
|
|
role: user.role
|
|
|
|
listenOnly: user.listenOnly
|
|
|
|
extern_userid: user.extern_userid
|
|
|
|
permissions: user.permissions
|
|
|
|
locked: user.locked
|
|
|
|
time_of_joining: user.timeOfJoining
|
|
|
|
connection_status: "" # TODO consider other default value
|
|
|
|
voiceUser:
|
|
|
|
web_userid: user.voiceUser.web_userid
|
|
|
|
callernum: user.voiceUser.callernum
|
|
|
|
userid: user.voiceUser.userid
|
|
|
|
talking: user.voiceUser.talking
|
|
|
|
joined: user.voiceUser.joined
|
|
|
|
callername: user.voiceUser.callername
|
|
|
|
locked: user.voiceUser.locked
|
|
|
|
muted: user.voiceUser.muted
|
|
|
|
webcam_stream: user.webcam_stream
|
|
|
|
|
|
|
|
id = Meteor.Users.insert(entry)
|
2014-11-21 05:32:51 +08:00
|
|
|
Meteor.log.info "joining user id=[#{id}]:#{user.name}. Users.size is now #{Meteor.Users.find({meetingId: meetingId}).count()}"
|
|
|
|
|
|
|
|
@createDummyUser = (meetingId, user) ->
|
|
|
|
if Meteor.Users.findOne({userId:user.userid, meetingId: meetingId})?
|
|
|
|
Meteor.log.info "ERROR!! CAN'T REGISTER AN EXISTSING USER"
|
|
|
|
else
|
|
|
|
entry =
|
|
|
|
meetingId: meetingId
|
|
|
|
userId: user.userid
|
|
|
|
authToken: user.authToken
|
|
|
|
|
|
|
|
id = Meteor.Users.insert(entry)
|
|
|
|
Meteor.log.info "added user dummy user id=[#{id}]:#{user.name}.
|
|
|
|
Users.size is now #{Meteor.Users.find({meetingId: meetingId}).count()}"
|