2014-10-01 01:02:36 +08:00
# --------------------------------------------------------------------------------------------
# Private methods on server
# --------------------------------------------------------------------------------------------
2014-10-01 01:12:47 +08:00
@addPresentationToCollection = (meetingId, presentationObject) ->
#check if the presentation is already in the collection
unless Meteor . Presentations . findOne ( { meetingId: meetingId , ' presentation.id ' : presentationObject . id } ) ?
entry =
meetingId: meetingId
presentation:
id: presentationObject . id
name: presentationObject . name
current: presentationObject . current
2014-09-26 03:20:00 +08:00
2014-10-01 01:12:47 +08:00
pointer: #initially we have no data about the cursor
x: 0.0
y: 0.0
2014-07-30 05:30:16 +08:00
2014-10-01 01:12:47 +08:00
id = Meteor . Presentations . insert ( entry )
2014-10-25 02:02:01 +08:00
#Meteor.log.info "presentation added id =[#{id}]:#{presentationObject.id} in #{meetingId}. Presentations.size is now #{Meteor.Presentations.find({meetingId: meetingId}).count()}"
2014-08-12 04:54:16 +08:00
2014-10-01 01:12:47 +08:00
@removePresentationFromCollection = (meetingId, presentationId) ->
if meetingId ? and presentationId ? and Meteor . Presentations . findOne ( { meetingId: meetingId , " presentation.id " : presentationId } ) ?
id = Meteor . Presentations . findOne ( { meetingId: meetingId , " presentation.id " : presentationId } )
if id ?
Meteor . Presentations . remove ( id . _id )
2014-10-25 02:02:01 +08:00
Meteor . log . info " ----removed presentation[ " + presentationId + " ] from " + meetingId
2014-10-01 01:02:36 +08:00
# --------------------------------------------------------------------------------------------
# end Private methods on server
# --------------------------------------------------------------------------------------------