forked from blindsidenetworks-ps/moodle-mod_bigbluebuttonbn
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlib.php
355 lines (292 loc) · 11.1 KB
/
lib.php
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
<?php
/**
* Library calls for Moodle and BigBlueButton.
*
* @package mod_bigbluebuttonbn
* @author Fred Dixon (ffdixon [at] blindsidenetworks [dt] com)
* @author Jesus Federico (jesus [at] blindsidenetworks [dt] com)
* @copyright 2010-2014 Blindside Networks Inc.
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v2 or later
*/
defined('MOODLE_INTERNAL') || die;
require_once($CFG->dirroot.'/calendar/lib.php');
function bigbluebuttonbn_supports($feature) {
switch($feature) {
case FEATURE_IDNUMBER: return true;
case FEATURE_GROUPS: return true;
case FEATURE_GROUPINGS: return true;
case FEATURE_GROUPMEMBERSONLY: return true;
case FEATURE_MOD_INTRO: return false;
case FEATURE_COMPLETION_TRACKS_VIEWS: return true;
case FEATURE_GRADE_HAS_GRADE: return false;
case FEATURE_GRADE_OUTCOMES: return false;
// case FEATURE_MOD_ARCHETYPE: return MOD_ARCHETYPE_RESOURCE;
case FEATURE_BACKUP_MOODLE2: return true;
default: return null;
}
}
/**
* Given an object containing all the necessary data,
* (defined by the form in mod_form.php) this function
* will create a new instance and return the id number
* of the new instance.
*
* @param object $bigbluebuttonbn An object from the form in mod_form.php
* @return int The id of the newly inserted bigbluebuttonbn record
*/
function bigbluebuttonbn_add_instance($bigbluebuttonbn) {
global $DB;
$bigbluebuttonbn->timecreated = time();
$bigbluebuttonbn->moderatorpass = bigbluebuttonbn_rand_string();
$bigbluebuttonbn->viewerpass = bigbluebuttonbn_rand_string();
$bigbluebuttonbn->meetingid = bigbluebuttonbn_rand_string();
if (! isset($bigbluebuttonbn->newwindow)) $bigbluebuttonbn->newwindow = 0;
if (! isset($bigbluebuttonbn->wait)) $bigbluebuttonbn->wait = 0;
if (! isset($bigbluebuttonbn->record)) $bigbluebuttonbn->record = true;
if (! isset($bigbluebuttonbn->allmoderators)) $bigbluebuttonbn->allmoderators = 0;
$returnid = $DB->insert_record('bigbluebuttonbn', $bigbluebuttonbn);
if (isset($bigbluebuttonbn->timeavailable) && $bigbluebuttonbn->timeavailable ){
$event = new stdClass();
$event->name = $bigbluebuttonbn->name;
$event->courseid = $bigbluebuttonbn->course;
$event->groupid = 0;
$event->userid = 0;
$event->modulename = 'bigbluebuttonbn';
$event->instance = $returnid;
$event->timestart = $bigbluebuttonbn->timeavailable;
if ( $bigbluebuttonbn->timedue ){
$event->timeduration = $bigbluebuttonbn->timedue - $bigbluebuttonbn->timeavailable;
} else {
$event->timeduration = 0;
}
calendar_event::create($event);
}
return $returnid;
}
/**
* Given an object containing all the necessary data,
* (defined by the form in mod_form.php) this function
* will update an existing instance with new data.
*
* @param object $bigbluebuttonbn An object from the form in mod_form.php
* @return boolean Success/Fail
*/
function bigbluebuttonbn_update_instance($bigbluebuttonbn) {
global $DB;
$bigbluebuttonbn->timemodified = time();
$bigbluebuttonbn->id = $bigbluebuttonbn->instance;
if (! isset($bigbluebuttonbn->newwindow)) $bigbluebuttonbn->newwindow = 0;
if (! isset($bigbluebuttonbn->wait)) $bigbluebuttonbn->wait = 0;
if (! isset($bigbluebuttonbn->record)) $bigbluebuttonbn->record = true;
if (! isset($bigbluebuttonbn->allmoderators)) $bigbluebuttonbn->allmoderators = 0;
$returnid = $DB->update_record('bigbluebuttonbn', $bigbluebuttonbn);
if (isset($bigbluebuttonbn->timeavailable) && $bigbluebuttonbn->timeavailable ){
$event = new stdClass();
$event->name = $bigbluebuttonbn->name;
$event->courseid = $bigbluebuttonbn->course;
$event->groupid = 0;
$event->userid = 0;
$event->modulename = 'bigbluebuttonbn';
$event->instance = $bigbluebuttonbn->id;
$event->timestart = $bigbluebuttonbn->timeavailable;
if ( $bigbluebuttonbn->timedue ){
$event->timeduration = $bigbluebuttonbn->timedue - $bigbluebuttonbn->timeavailable;
} else {
$event->timeduration = 0;
}
if ($event->id = $DB->get_field('event', 'id', array('modulename'=>'bigbluebuttonbn', 'instance'=>$bigbluebuttonbn->id))) {
$calendarevent = calendar_event::load($event->id);
$calendarevent->update($event);
} else {
calendar_event::create($event);
}
} else {
$DB->delete_records('event', array('modulename'=>'bigbluebuttonbn', 'instance'=>$bigbluebuttonbn->id));
}
return $returnid;
}
/**
* Given an ID of an instance of this module,
* this function will permanently delete the instance
* and any data that depends on it.
*
* @param int $id Id of the module instance
* @return boolean Success/Failure
*/
function bigbluebuttonbn_delete_instance($id) {
global $CFG, $DB;
if (! $bigbluebuttonbn = $DB->get_record('bigbluebuttonbn', array('id' => $id))) {
return false;
}
$result = true;
//
// End the session associated with this instance (if it's running)
//
$meetingID = $bigbluebuttonbn->meetingid.'-'.$bigbluebuttonbn->course.'-'.$bigbluebuttonbn->id;
$modPW = $bigbluebuttonbn->moderatorpass;
$url = trim(trim($CFG->BigBlueButtonBNServerURL),'/').'/';
$salt = trim($CFG->BigBlueButtonBNSecuritySalt);
//if( bigbluebuttonbn_isMeetingRunning($meetingID, $url, $salt) )
// $getArray = bigbluebuttonbn_doEndMeeting( $meetingID, $modPW, $url, $salt );
if (! $DB->delete_records('bigbluebuttonbn', array('id' => $bigbluebuttonbn->id))) {
$result = false;
}
if (! $DB->delete_records('event', array('modulename'=>'bigbluebuttonbn', 'instance'=>$bigbluebuttonbn->id))) {
$result = false;
}
return $result;
}
/**
* Return a small object with summary information about what a
* user has done with a given particular instance of this module
* Used for user activity reports.
* $return->time = the time they did it
* $return->info = a short text description
*
* @return null
*/
function bigbluebuttonbn_user_outline($course, $user, $mod, $bigbluebuttonbn) {
return true;
}
/**
* Print a detailed representation of what a user has done with
* a given particular instance of this module, for user activity reports.
*
* @return boolean
*/
function bigbluebuttonbn_user_complete($course, $user, $mod, $bigbluebuttonbn) {
return true;
}
/**
* Given a course and a time, this module should find recent activity
* that has occurred in bigbluebuttonbn activities and print it out.
* Return true if there was output, or false is there was none.
*
* @return boolean
*/
function bigbluebuttonbn_print_recent_activity($course, $isteacher, $timestart) {
return false; // True if anything was printed, otherwise false
}
/**
* Returns all activity in bigbluebuttonbn since a given time
*
* @param array $activities sequentially indexed array of objects
* @param int $index
* @param int $timestart
* @param int $courseid
* @param int $cmid
* @param int $userid defaults to 0
* @param int $groupid defaults to 0
* @return void adds items into $activities and increases $index
*/
function bigbluebuttonbn_get_recent_mod_activity(&$activities, &$index, $timestart, $courseid, $cmid, $userid=0, $groupid=0) {
}
/**
* Prints single activity item prepared by {@see recordingsbn_get_recent_mod_activity()}
* @return void
*/
function bigbluebuttonbn_print_recent_mod_activity($activity, $courseid, $detail, $modnames, $viewfullnames) {
}
/**
* Function to be run periodically according to the moodle cron
* This function searches for things that need to be done, such
* as sending out mail, toggling flags etc ...
*
* @return boolean
**/
function bigbluebuttonbn_cron () {
return true;
}
/**
* Must return an array of user records (all data) who are participants
* for a given instance of bigbluebuttonbn. Must include every user involved
* in the instance, independient of his role (student, teacher, admin...)
* See other modules as example.
*
* @param int $bigbluebuttonbnid ID of an instance of this module
* @return mixed boolean/array of students
*/
function bigbluebuttonbn_get_participants($bigbluebuttonbnid) {
return false;
}
/**
* Returns all other caps used in module
* @return array
*/
function bigbluebuttonbn_get_extra_capabilities() {
return array('moodle/site:accessallgroups');
}
////////////////////////////////////////////////////////////////////////////////
// Gradebook API //
////////////////////////////////////////////////////////////////////////////////
/**
* This function returns if a scale is being used by one bigbluebuttonbn
* if it has support for grading and scales. Commented code should be
* modified if necessary. See forum, glossary or journal modules
* as reference.
*
* @param int $bigbluebuttonbnid ID of an instance of this module
* @return mixed
*/
function bigbluebuttonbn_scale_used($bigbluebuttonbnid, $scaleid) {
$return = false;
return $return;
}
/**
* Checks if scale is being used by any instance of bigbluebuttonbn.
* This function was added in 1.9
*
* This is used to find out if scale used anywhere
* @param $scaleid int
* @return boolean True if the scale is used by any bigbluebuttonbn
*/
function bigbluebuttonbn_scale_used_anywhere($scaleid) {
$return = false;
return $return;
}
/**
* This function is used by the reset_course_userdata function in moodlelib.
* @param $data the data submitted from the reset course.
* @return array status array
*/
function bigbluebuttonbn_reset_userdata($data) {
return array();
}
/**
* List of view style log actions
* @return array
*/
function bigbluebuttonbn_get_view_actions() {
return array('view', 'view all');
}
/**
* List of update style log actions
* @return array
*/
function bigbluebuttonbn_get_post_actions() {
return array('update', 'add');
}
/**
* Given a course_module object, this function returns any
* "extra" information that may be needed when printing
* this activity in a course listing.
* See get_array_of_activities() in course/lib.php
*
* @global object
* @param object $coursemodule
* @return object|null
*/
function bigbluebuttonbn_get_coursemodule_info($coursemodule) {
global $CFG, $DB;
if (! $bigbluebuttonbn = $DB->get_record('bigbluebuttonbn', array('id'=>$coursemodule->instance), 'id, name, newwindow')) {
return NULL;
}
$info = new cached_cm_info();
$info->name = $bigbluebuttonbn->name;
if ( $bigbluebuttonbn->newwindow == 1 ){
$fullurl = "$CFG->wwwroot/mod/bigbluebuttonbn/view.php?id=$coursemodule->id&redirect=1";
$info->onclick = "window.open('$fullurl'); return false;";
}
return $info;
}
?>