forked from External/greenlight
82 lines
2.9 KiB
JavaScript
82 lines
2.9 KiB
JavaScript
// BigBlueButton open source conferencing system - http://www.bigbluebutton.org/.
|
|
//
|
|
// Copyright (c) 2016 BigBlueButton Inc. and by respective authors (see below).
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify it under the
|
|
// terms of the GNU Lesser General Public License as published by the Free Software
|
|
// Foundation; either version 3.0 of the License, or (at your option) any later
|
|
// version.
|
|
//
|
|
// BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
// PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License along
|
|
// with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
(function() {
|
|
|
|
var sessionStatusRefresh = function(url) {
|
|
$.get(url + "/session_status_refresh", function(html) {
|
|
$(".center-panel-wrapper").html(html);
|
|
displayRoomURL();
|
|
});
|
|
};
|
|
|
|
var enableMeetingUpdates = function() {
|
|
var meetingId = ''
|
|
if (!$(".page-wrapper.rooms").data('main-room')) {
|
|
meetingId = $(".page-wrapper.rooms").data('id');
|
|
}
|
|
App.meeting_update = App.cable.subscriptions.create({
|
|
channel: 'MeetingUpdatesChannel',
|
|
admin_id: $(".page-wrapper.rooms").data('admin-id'),
|
|
meeting_id: meetingId
|
|
},
|
|
{
|
|
received: function(data) {
|
|
if (data.action === 'moderator_joined') {
|
|
if (!Meeting.getInstance().getModJoined()) {
|
|
Meeting.getInstance().setModJoined(true);
|
|
if (Meeting.getInstance().getWaitingForMod()) {
|
|
loopJoin();
|
|
} else {
|
|
sessionStatusRefresh($('.meeting-url').val());
|
|
showAlert(I18n.meeting_started, 4000);
|
|
}
|
|
}
|
|
} else if (data.action === 'meeting_ended') {
|
|
sessionStatusRefresh($('.meeting-url').val());
|
|
showAlert(I18n.meeting_ended, 4000);
|
|
} else if (data.action === 'user_waiting') {
|
|
// show a browser notification only to the owner
|
|
if (isRoomOwner()) {
|
|
showNotification(I18n.user_waiting_title, {
|
|
body: I18n.user_waiting_body.replace(/%{user}/, data.user).replace(/%{meeting}/, '"'+data.meeting_name+'"')
|
|
});
|
|
}
|
|
} else if(data.action === 'unable_to_join') {
|
|
showAlert(I18n.unable_to_join_mobile, 6000)
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
var disableMeetingUpdates = function() {
|
|
App.meeting_update.unsubscribe();
|
|
delete App.meeting_update
|
|
};
|
|
|
|
$(document).on("turbolinks:load", function() {
|
|
// disable meeting updates if enabled from a previous page
|
|
if (App.meeting_update) {
|
|
disableMeetingUpdates();
|
|
}
|
|
if ($("body[data-controller=landing]").get(0)) {
|
|
if ($("body[data-action=rooms]").get(0)) {
|
|
enableMeetingUpdates();
|
|
}
|
|
}
|
|
});
|
|
}).call(this);
|