forked from blindsidenetworks-ps/moodle-mod_bigbluebuttonbn
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodule.js
52 lines (44 loc) · 1.59 KB
/
module.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* @package mod_bigbluebuttonbn
* @author Jesus Federico (jesus [at] blindsidenetworks [dt] com)
* @copyright 2012-2014 Blindside Networks Inc.
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v2 or later
*/
M.mod_bigbluebuttonbn = M.mod_bigbluebuttonbn || {};
/**
* This function is initialized from PHP
*
* @param {Object}
* Y YUI instance
*/
M.mod_bigbluebuttonbn.init_view = function(Y) {
if (bigbluebuttonbn.joining == 'true') {
if (bigbluebuttonbn.isadministrator == 'true' || bigbluebuttonbn.ismoderator == 'true' || bigbluebuttonbn.waitformoderator == 'false') {
M.mod_bigbluebuttonbn.joinURL();
} else {
var dataSource = new Y.DataSource.Get({
source : M.cfg.wwwroot + "/mod/bigbluebuttonbn/ping.php?"
});
var request = {
request : "meetingid=" + bigbluebuttonbn.meetingid + "&id=" + bigbluebuttonbn.bigbluebuttonbnid,
callback : {
success : function(e) {
if (e.data.status == 'true') {
M.mod_bigbluebuttonbn.joinURL();
}
},
failure : function(e) {
console.debug(e.error.message);
}
}
};
var id = dataSource.setInterval(10000, request);
}
}
};
M.mod_bigbluebuttonbn.joinURL = function() {
window.location = bigbluebuttonbn.joinurl;
};
M.mod_bigbluebuttonbn.viewend_CloseWindow = function() {
window.close();
};