bigbluebutton-Github/labs/meteor-client/collections/users.coffee
2014-06-24 11:18:25 -07:00

71 lines
2.5 KiB
CoffeeScript
Executable File

Meteor.methods
###
authenticate: (auth) ->
throw new Meteor.Error(422, "You need a token to authenticate.") unless auth.token
throw new Meteor.Error(422, "You need a userId to authenticate.") unless auth.userId
throw new Meteor.Error(422, "You need a meetingId to authenticate.") unless auth.meetingId
user =
userId: "user1"
meetingId: "demo123"
#UserSession.set(meetingId + ":" userId, user);
userId = Meteor.Users.insert(user)
console.log "User id=[" + userId + "]"
@setUserId userId
console.log @userId
userId
###
#showUserId: ->
# throw new Meteor.Error(422, @userId)return
addToCollection: (meetingId, user) ->
userId = user.userid
#check if the user is already in the meeting
if Meteor.Users.findOne({userId:userId, meetingId: meetingId})?
console.log "redundant entry, do not add to Meteor.Users - #{userId}:#{meetingId}:#{user.name}"
else
console.log "before:" + Meteor.Users.find().count()
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
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)
console.log "after:" + Meteor.Users.find().count()
console.log "added user id=[" + id + "] :" + user.name
removeFromCollection: (meetingId, userId) ->
console.log "----removing " + userId + "from " + meetingId
if meetingId? and userId?
console.log "before:" + Meteor.Users.find().count()
id = Meteor.Users.findOne({meetingId: meetingId, userId: userId})
Meteor.Users.remove(_id: id._id)
console.log "after:" + Meteor.Users.find().count()
else
console.log "at least one of {userId, meetingId} was missing"