forked from External/greenlight
76 lines
1.4 KiB
CoffeeScript
76 lines
1.4 KiB
CoffeeScript
# Meeting class
|
|
|
|
_meetingInstance = null
|
|
|
|
class @Meeting
|
|
constructor: (@id, @url, @name) ->
|
|
|
|
# Gets the current instance or creates a new one
|
|
@getInstance: ->
|
|
if _meetingInstance
|
|
return _meetingInstance
|
|
id = $(".page-wrapper").data('id')
|
|
url = @buildURL(id)
|
|
name = $('.meeting-user-name').val()
|
|
_meetingInstance = new Meeting(id, url, name)
|
|
return _meetingInstance
|
|
|
|
@clear: ->
|
|
_meetingInstance = null
|
|
|
|
@buildURL: (id) ->
|
|
if (resource = location.pathname.split('/')[1]) != 'rooms'
|
|
resource = 'meetings'
|
|
return location.protocol +
|
|
'//' +
|
|
location.hostname +
|
|
'/' +
|
|
resource +
|
|
'/' +
|
|
id;
|
|
|
|
# Sends the end meeting request
|
|
# Returns a response object
|
|
endMeeting: ->
|
|
return $.ajax({
|
|
url: @url + "/end",
|
|
type: 'DELETE'
|
|
})
|
|
|
|
# Makes a call to get the join meeting url
|
|
# Returns a response object
|
|
# The response object contains the URL to join the meeting
|
|
getJoinMeetingResponse: ->
|
|
return $.get @url + "/join?name=" + @name, ->
|
|
|
|
|
|
getId: ->
|
|
return @id
|
|
|
|
setId: (id) ->
|
|
@id = id
|
|
|
|
getURL: ->
|
|
return @url
|
|
|
|
setURL: (url) ->
|
|
@url = url
|
|
|
|
getName: ->
|
|
return @name
|
|
|
|
setName: (name) ->
|
|
@name = name
|
|
|
|
getModJoined: ->
|
|
return @modJoined
|
|
|
|
setModJoined: (modJoined) ->
|
|
@modJoined = modJoined
|
|
|
|
getWaitingForMod: ->
|
|
return @waitingForMod
|
|
|
|
setWaitingForMod: (wMod) ->
|
|
@waitingForMod = wMod
|