-
Notifications
You must be signed in to change notification settings - Fork 26
/
lib.php
542 lines (472 loc) · 17.8 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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Library of functions and constants for module etherpadlite.
*
* This file should have two well differenced parts:
* - All the core Moodle functions, neeeded to allow
* the module to work integrated in Moodle.
* - All the etherpadlite specific functions, needed
* to implement all the module logic. Please, note
* that, if the module become complex and this lib
* grows a lot, it's HIGHLY recommended to move all
* these module specific functions to a new php file,
* called "locallib.php" (see forum, quiz...). This will
* help to save some memory when Moodle is performing
* actions across all modules.
*
* @package mod_etherpadlite
*
* @author Timo Welde <[email protected]>
* @copyright 2012 Humboldt-Universität zu Berlin <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
define('ETHERPADLITE_RESETFORM_RESET', 'etherpadlite_reset_data_');
/**
* Create a new etherpadlite instance.
*
* 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 stdClass $etherpadlite An object from the form in mod_form.php
* @param mod_etherpadlite_mod_form $mform
* @return int The id of the newly inserted etherpadlite record
*/
function etherpadlite_add_instance(stdClass $etherpadlite, $mform = null) {
global $DB;
$config = get_config('etherpadlite');
try {
$client = \mod_etherpadlite\api\client::get_instance($config->apikey, $config->url);
} catch (\mod_etherpadlite\api\api_exception $e) {
\core\notification::add($e->getMessage(), \core\notification::ERROR);
return false;
}
if (!$epgroupid = $client->create_group()) {
// The group already exists or something else went wrong.
throw new \moodle_exception('could not create etherpad group');
}
if (!$padid = $client->create_group_pad($epgroupid, $config->padname)) {
// The pad already exists or something else went wrong.
throw new \moodle_exception('could not create etherpad group pad');
}
$etherpadlite->uri = $padid;
$etherpadlite->timecreated = time();
$padinstanceid = $DB->insert_record('etherpadlite', $etherpadlite);
// Get all groups.
$groups = groups_get_all_groups($etherpadlite->course, 0, $etherpadlite->groupingid);
if ($etherpadlite->groupmode != 0 && $groups) {
$mgroupdb = [];
foreach ($groups as $group) {
$mgroup = new stdClass();
$mgroup->padid = $padinstanceid;
$mgroup->groupid = $group->id;
$mgroupdb[] = $mgroup;
try {
$padid = $client->create_group_pad($epgroupid, $config->padname . $group->id);
} catch (Exception $e) {
continue;
}
}
$DB->insert_records('etherpadlite_mgroups', $mgroupdb);
}
return $padinstanceid;
}
/**
* Update an existing etherpadlite instance.
*
* 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 stdClass $etherpadlite An object from the form in mod_form.php
* @param mod_etherpadlite_mod_form $mform
* @return bool Success/Fail
*/
function etherpadlite_update_instance(stdClass $etherpadlite, $mform = null) {
global $DB;
require_once(__DIR__ . '/locallib.php');
$etherpadlite->timemodified = time();
$etherpadlite->id = $etherpadlite->instance;
// You may have to add extra stuff in here.
if (empty($etherpadlite->guestsallowed)) {
$etherpadlite->guestsallowed = 0;
}
// If groupmode is not set anymore, delete mgroupspads if exist.
$formdata = $mform->get_data();
$etherpadliteuri = $DB->get_field('etherpadlite', 'uri', ['id' => $etherpadlite->id]);
$config = get_config('etherpadlite');
try {
$client = \mod_etherpadlite\api\client::get_instance($config->apikey, $config->url);
} catch (\mod_etherpadlite\api\api_exception $e) {
\core\notification::add($e->getMessage(), \core\notification::ERROR);
return false;
}
if ($formdata->groupmode != 0) {
// Deletion will be done by adhoc task triggered by cm_update.
mod_etherpadlite_add_mgrouppads($formdata, $etherpadlite->id, $etherpadliteuri, $client);
}
return $DB->update_record('etherpadlite', $etherpadlite);
}
/**
* 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 bool Success/Failure
*/
function etherpadlite_delete_instance($id) {
global $DB;
require_once(__DIR__ . '/locallib.php');
if (!$etherpadlite = $DB->get_record('etherpadlite', ['id' => $id])) {
return false;
}
$result = true;
// Delete any dependent records here.
$config = get_config('etherpadlite');
try {
$client = \mod_etherpadlite\api\client::get_instance($config->apikey, $config->url);
$padid = $etherpadlite->uri;
$epgroupid = explode('$', $padid);
$epgroupid = $epgroupid[0];
// Delete pads for moodle groups and respective DB entry.
mod_etherpadlite_delete_all_mgrouppads($id, $padid, $client);
$client->delete_pad($padid);
$client->delete_group($epgroupid);
} catch (\mod_etherpadlite\api\api_exception $e) {
\core\notification::add($e->getMessage(), \core\notification::ERROR);
}
if (!$DB->delete_records('etherpadlite', ['id' => $etherpadlite->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.
*
* @param \stdClass $course
* @param \stdClass $user
* @param \stdClass $mod
* @param \stdClass $etherpadlite
* @return \stdClass|null
*/
function etherpadlite_user_outline($course, $user, $mod, $etherpadlite) {
return null;
}
/**
* Print a detailed representation.
*
* Print a reprensentation of what a user has done with a given particular instance of this module, for user activity reports.
*
* @param \stdClass $course
* @param \stdClass $user
* @param \stdClass $mod
* @param \stdClass $etherpadlite
* @return bool
*/
function etherpadlite_user_complete($course, $user, $mod, $etherpadlite) {
return true;
}
/**
* Return true if there was output, or false is there was none.
*
* Given a course and a time, this module should find recent activity
* that has occurred in etherpadlite activities and print it out.
*
* @param \stdClass $course
* @param bool $isteacher
* @param int $timestart
* @return bool
* @todo Finish documenting this function
*/
function etherpadlite_print_recent_activity($course, $isteacher, $timestart) {
return false; // True if anything was printed, otherwise false.
}
/**
* 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 bool
* @todo Finish documenting this function
**/
function etherpadlite_cron() {
return true;
}
/**
* Must return an array of user records (all data) who are participants
* for a given instance of etherpadlite. Must include every user involved
* in the instance, independient of his role (student, teacher, admin...)
* See other modules as example.
*
* @param int $etherpadliteid ID of an instance of this module
* @return mixed boolean/array of students
*/
function etherpadlite_get_participants($etherpadliteid) {
return false;
}
/**
* Execute post-install custom actions for the module
* This function was added in 1.9.
*
* @return bool true if success, false on error
*/
function etherpadlite_install() {
return true;
}
/**
* Execute post-uninstall custom actions for the module
* This function was added in 1.9.
*
* @return bool true if success, false on error
*/
function etherpadlite_uninstall() {
return true;
}
/**
* Checks whether or not a given feature is supported.
*
* @param string $feature FEATURE_xx constant for requested feature
* @return bool True if module supports feature, null if doesn't know
*/
function etherpadlite_supports($feature) {
switch ($feature) {
case FEATURE_GROUPS:
return true;
case FEATURE_GROUPINGS:
return true;
case FEATURE_GROUPMEMBERSONLY:
return false;
case FEATURE_MOD_INTRO:
return true;
case FEATURE_COMPLETION_TRACKS_VIEWS:
return false;
case FEATURE_COMPLETION_HAS_RULES:
return false;
case FEATURE_GRADE_HAS_GRADE:
return false;
case FEATURE_GRADE_OUTCOMES:
return false;
case FEATURE_BACKUP_MOODLE2:
return true;
case FEATURE_SHOW_DESCRIPTION:
return true;
case FEATURE_MOD_PURPOSE:
return MOD_PURPOSE_COLLABORATION;
default:
return false;
}
}
/**
* Optionally extend the module settings menu for teachers and managers:
* add a button which copies the url of the current pad to the clipboard.
*
* @param settings_navigation $settingsnav The settings navigation object
* @param navigation_node $navigationnode The node to add module settings to
* @return bool true if success, false on error
*/
function etherpadlite_extend_settings_navigation($settingsnav, $navigationnode) {
global $USER, $PAGE;
if (has_capability('mod/etherpadlite:addinstance', $PAGE->cm->context)) {
$config = get_config('etherpadlite');
// Check if getting the pad url via the menu is enabled in the plugin settings.
if ($config->copylink) {
// Create navigation item with pseudo link.
// It's just used as a button which triggers some javascript to copy the
// pad url to the clipboard.
$url = new moodle_url('#');
$copytoclipboardbutton = navigation_node::create(
get_string('copylink', 'mod_etherpadlite'),
$url,
navigation_node::TYPE_SETTING,
null,
'testkey',
new pix_icon('t/copy', '')
);
$copytoclipboardbutton->classes = ['copy_etherpadlink_to_clipboard_button'];
// Add the copy to clipboard button to the module menu navigation.
$navigationnode->add_node($copytoclipboardbutton);
// Get the full etherpad url and pass it as a variable to the
// javascript which handles the copying and the notification.
global $DB;
$paduri = $DB->get_record('etherpadlite', ['id' => $PAGE->cm->instance], 'uri', MUST_EXIST);
$url = trim($config->url, '/');
$url .= '/p/' . $paduri->uri;
// Include the javascript file, which handles the copy-to-clipboard process.
$PAGE->requires->js_call_amd(
'mod_etherpadlite/copy_to_clipboard',
'init',
[$url]
);
}
}
}
// Any other etherpadlite functions go here. Each of them must have a name that
// starts with etherpadlite_
// Remember (see note in first lines) that, if this section grows, it's HIGHLY
// recommended to move all funcions below to a new "localib.php" file.
/**
* A funtion to generate a random name if something doesn't already exist.
*
* @return string
*/
function etherpadlite_gen_random_string() {
$length = 5;
$characters = '0123456789';
$string = '';
for ($p = 0; $p < $length; ++$p) {
$string .= $characters[mt_rand(0, strlen($characters) - 1)];
}
return $string;
}
/**
* Check whether or not guests are allowed.
*
* @param \stdClass $etherpadlite
* @return void
*/
function etherpadlite_guestsallowed($etherpadlite) {
global $CFG;
if (get_config('etherpadlite', 'adminguests') == 1) {
if ($etherpadlite->guestsallowed) {
return true;
}
}
return false;
}
/**
* Add a get_coursemodule_info function in case any etherpad type wants to add 'extra' information
* for the course (see resource).
*
* 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.
*
* @param stdClass $coursemodule the coursemodule object (record)
* @return cached_cm_info an object on information that the courses
* will know about (most noticeably, an icon)
*/
function etherpadlite_get_coursemodule_info($coursemodule) {
global $DB;
$dbparams = ['id' => $coursemodule->instance];
$fields = 'id, course, name, timeopen, timeclose';
if (!$etherpad = $DB->get_record('etherpadlite', $dbparams)) {
return false;
}
$result = new cached_cm_info();
$result->name = $etherpad->name;
if ($coursemodule->showdescription) {
// Convert intro to html. Do not filter cached version, filters run at display time.
$result->content = format_module_intro('etherpadlite', $etherpad, $coursemodule->id, false);
}
// Populate some other values that can be used in calendar or on dashboard.
if ($etherpad->timeopen) {
$result->customdata['timeopen'] = $etherpad->timeopen;
}
if ($etherpad->timeclose) {
$result->customdata['timeclose'] = $etherpad->timeclose;
}
return $result;
}
/**
* This function is used by the reset_course_userdata function in moodlelib.
* This function will remove all data from the specified etherpadlite.
*
* @param object $data the data submitted from the reset course
* @return array status array
*/
function etherpadlite_reset_userdata($data) {
global $DB;
$config = get_config('etherpadlite');
$resetetherpadlites = [];
$status = [];
$componentstr = get_string('modulenameplural', 'etherpadlite');
// Get the relevant entries from $data.
foreach ($data as $key => $value) {
switch (true) {
case substr($key, 0, strlen(ETHERPADLITE_RESETFORM_RESET)) == ETHERPADLITE_RESETFORM_RESET:
if ($value == 1) {
$templist = explode('_', $key);
if (isset($templist[3])) {
$resetetherpadlites[] = (int) $templist[3];
}
}
break;
}
}
if (empty($resetetherpadlites)) {
return $status;
}
try {
$client = \mod_etherpadlite\api\client::get_instance($config->apikey, $config->url);
} catch (\mod_etherpadlite\api\api_exception $e) {
\core\notification::add($e->getMessage(), \core\notification::ERROR);
return $status;
}
// Reset the selected etherpadlites.
foreach ($resetetherpadlites as $id) {
$etherpadlite = $DB->get_record('etherpadlite', ['id' => $id]);
// Delete etherpad lite data.
$result = \mod_etherpadlite\util::reset_etherpad_content($etherpadlite, $client);
$status[] = [
'component' => $componentstr . ': ' . $etherpadlite->name,
'item' => get_string('resetting_data', 'etherpadlite'),
'error' => !$result,
];
}
// Updating dates - shift may be negative too.
if ($data->timeshift) {
// Any changes to the list of dates that needs to be rolled should be same during course restore and course reset.
// See MDL-9367.
$shifterror = !shift_course_mod_dates('etherpadlite', ['timeopen', 'timeclose'], $data->timeshift, $data->courseid);
$status[] = ['component' => $componentstr, 'item' => get_string('datechanged'), 'error' => $shifterror];
}
return $status;
}
/**
* Called by course/reset.php.
*
* @param object $mform form passed by reference
*/
function etherpadlite_reset_course_form_definition(&$mform) {
global $COURSE, $DB;
$mform->addElement('header', 'etherpadliteheader', get_string('modulenameplural', 'etherpadlite'));
if (!$etherpadlites = $DB->get_records('etherpadlite', ['course' => $COURSE->id], 'name')) {
return;
}
$mform->addElement('static', 'hint', get_string('resetting_data', 'etherpadlite'));
foreach ($etherpadlites as $etherpadlite) {
$mform->addElement('checkbox', ETHERPADLITE_RESETFORM_RESET . $etherpadlite->id, $etherpadlite->name);
}
}
/**
* Course reset form defaults.
*
* @param object $course
*/
function etherpadlite_reset_course_form_defaults($course) {
global $DB;
$return = [];
if (!$etherpadlites = $DB->get_records('etherpadlite', ['course' => $course->id], 'name')) {
return;
}
foreach ($etherpadlites as $etherpadlite) {
$return[ETHERPADLITE_RESETFORM_RESET . $etherpadlite->id] = true;
}
return $return;
}