bigbluebutton-Github/labs/meteor-client/app/server/user_permissions.coffee

37 lines
1.1 KiB
CoffeeScript
Raw Normal View History

moderator = null
presenter = null
viewer =
# raising/lowering hand
raiseOwnHand : true
lowerOwnHand : true
# muting
muteSelf : true
unmuteSelf : true
2014-11-19 06:03:13 +08:00
logoutSelf : true
2014-11-21 07:35:30 +08:00
#subscribing
subscribeUsers: true
subscribeChat: true
#chat
chatPublic: true #should make this dynamically modifiable later on
chatPrivate: true #should make this dynamically modifiable later on
2014-11-22 01:45:44 +08:00
@isAllowedTo = (action, meetingId, userId, authToken) ->
Meteor.log.info "in isAllowedTo: action-#{action}, userId=#{userId}, authToken=#{authToken}"
user = Meteor.Users.findOne({meetingId:meetingId, userId: userId})
if user?
# we check if the user is who he claims to be
2014-11-22 01:45:44 +08:00
if authToken is user.authToken
if user.user?.role is 'VIEWER' or user.user?.role is undefined
return viewer[action] or false
2014-12-11 00:24:22 +08:00
Meteor.log.error "in meetingId=#{meetingId} userId=#{userId} tried to perform #{action} without permission" +
"..while the authToken was #{user.authToken} and the user's object is #{JSON.stringify user}"
# the current version of the HTML5 client represents only VIEWER users
return false