forked from bozoh/moodle-mod_simplecertificate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.php
470 lines (409 loc) · 14.9 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
<?php
// This file is part of Certificate module for 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/>.
/**
* Simple Certificate module core interaction API
*
* @package mod
* @subpackage simplecertificate
* @copyright Carlos Fonseca <carlos.alexandre@outlook.com>, Mark Nelson <mark@moodle.com.au>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once ($CFG->dirroot . '/course/lib.php');
require_once ($CFG->dirroot . '/grade/lib.php');
require_once ($CFG->dirroot . '/grade/querylib.php');
/**
* Adds a simplecertificate instance
* This is done by calling the add_instance() method of the assignment type class
*
* @param stdClass $data
* @param mod_assign_mod_form $form
* @return int The instance id of the new simplecertificate
*/
function simplecertificate_add_instance(stdclass $data) {
global $CFG;
require_once ($CFG->dirroot . '/mod/simplecertificate/locallib.php');
$context = context_module::instance($data->coursemodule);
$simplecertificate = new simplecertificate($context, null, null);
return $simplecertificate->add_instance($data);
}
/**
* Update certificate instance.
*
* @param stdClass $certificate
* @return bool true
*/
function simplecertificate_update_instance(stdclass $data) {
global $DB, $CFG;
require_once ($CFG->dirroot . '/mod/simplecertificate/locallib.php');
$context = context_module::instance($data->coursemodule);
$simplecertificate = new simplecertificate($context, null, null);
return $simplecertificate->update_instance($data);
}
/**
* 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
* @return bool true if successful
*/
function simplecertificate_delete_instance($id) {
global $DB, $CFG;
global $CFG;
require_once ($CFG->dirroot . '/mod/simplecertificate/locallib.php');
$cm = get_coursemodule_from_instance('simplecertificate', $id, 0, false, MUST_EXIST);
$context = context_module::instance($cm->id);
$simplecertificate = new simplecertificate($context, null, null);
return $simplecertificate->delete_instance();
}
/**
* This function is used by the reset_course_userdata function in moodlelib.
* This function will remove all posts from the specified certificate
* and clean up any related data.
* Written by Jean-Michel Vedrine
*
* @param $data the data submitted from the reset course.
* @return array status array
*/
function simplecertificate_reset_userdata($data) {
global $CFG, $DB;
$componentstr = get_string('modulenameplural', 'simplecertificate');
$status = array();
if (!empty($data->reset_certificate)) {
$timedeleted = time();
$certificates = $DB->get_records('simplecertificate', array('course' => $data->courseid));
foreach ($certificates as $certificate) {
$issuecertificates = $DB->get_records('simplecertificate_issues',
array('certificateid' => $certificate->id, 'timedeleted' => null));
foreach ($issuecertificates as $issuecertificate) {
$issuecertificate->timedeleted = $timedeleted;
if (!$DB->update_record('simplecertificate_issues', $issuecertificate)) {
print_erro(get_string('cantdeleteissue', 'simplecertificate'));
}
}
}
$status[] = array('component' => $componentstr, 'item' => get_string('modulenameplural', 'simplecertificate'),
'error' => false);
}
// Updating dates - shift may be negative too
if ($data->timeshift) {
shift_course_mod_dates('simplecertificate', array('timeopen', 'timeclose'), $data->timeshift, $data->courseid);
$status[] = array('component' => $componentstr, 'item' => get_string('datechanged'), 'error' => false);
}
return $status;
}
/**
* Implementation of the function for printing the form elements that control
* whether the course reset functionality affects the certificate.
* Written by Jean-Michel Vedrine
*
* @param $mform form passed by reference
*/
function simplecertificate_reset_course_form_definition(&$mform) {
$mform->addElement('header', 'simplecertificateheader', get_string('modulenameplural', 'simplecertificate'));
$mform->addElement('advcheckbox', 'reset_simplecertificate', get_string('deletissuedcertificates', 'simplecertificate'));
}
/**
* Course reset form defaults.
* Written by Jean-Michel Vedrine
*
* @param stdClass $course
* @return array
*/
function simplecertificate_reset_course_form_defaults($course) {
return array('reset_simplecertificate' => 1);
}
/**
* Returns information about received certificate.
* Used for user activity reports.
*
* @param stdClass $course
* @param stdClass $user
* @param stdClass $mod
* @param stdClass $certificate
* @return stdClass the user outline object
*/
function simplecertificate_user_outline($course, $user, $mod, $certificate) {
global $DB;
$result = new stdClass();
if ($issue = $DB->get_record('simplecertificate_issues',
array('certificateid' => $certificate->id, 'userid' => $user->id, 'timedeleted' => null))) {
$result->info = get_string('issued', 'simplecertificate');
$result->time = $issue->timecreated;
} else {
$result->info = get_string('notissued', 'simplecertificate');
}
return $result;
}
/**
* Must return an array of user records (all data) who are participants
* for a given instance of certificate.
*
* @param int $certificateid
* @return stdClass list of participants
*/
function simplecertificate_get_participants($certificateid) {
global $DB;
$sql = "SELECT DISTINCT u.id, u.id
FROM {user} u, {simplecertificate_issues} a
WHERE a.certificateid = :certificateid
AND u.id = a.userid
AND timedeleted IS NULL";
return $DB->get_records_sql($sql, array('certificateid' => $certificateid));
}
/**
*
* @uses FEATURE_GROUPS
* @uses FEATURE_GROUPINGS
* @uses FEATURE_GROUPMEMBERSONLY
* @uses FEATURE_MOD_INTRO
* @uses FEATURE_COMPLETION_TRACKS_VIEWS
* @uses FEATURE_GRADE_HAS_GRADE
* @uses FEATURE_GRADE_OUTCOMES
* @param string $feature FEATURE_xx constant for requested feature
* @return mixed True if module supports feature, null if doesn't know
*/
function simplecertificate_supports($feature) {
switch ($feature) {
case FEATURE_GROUPS:
return true;
case FEATURE_GROUPINGS:
return true;
case FEATURE_GROUPMEMBERSONLY:
return true;
case FEATURE_MOD_INTRO:
return true;
case FEATURE_COMPLETION_TRACKS_VIEWS:
return true;
case FEATURE_COMPLETION_HAS_RULES:
return true;
case FEATURE_BACKUP_MOODLE2:
return true;
default:
return null;
}
}
/**
* Obtains the automatic completion state for this forum based on any conditions
* in simplecertificate settings.
*
* @param object $course Course
* @param object $cm Course-module
* @param int $userid User ID
* @param bool $type Type of comparison (or/and; can be used as return value if no conditions)
* @return bool True if completed, false if not, $type if conditions not set.
*/
function simplecertificate_get_completion_state($course, $cm, $userid, $type) {
global $CFG;
require_once ($CFG->dirroot . '/mod/simplecertificate/locallib.php');
$context = context_module::instance($cm->id);
$simplecertificate = new simplecertificate($context, $cm, $course);
if ($requiredtime = $simplecertificate->get_instance()->requiredtime) {
return ($simplecertificate->get_course_time($userid) >= $requiredtime);
}
// Completion option is not enabled so just return $type
return $type;
}
/**
* Function to be run periodically according to the moodle cron
*/
function simplecertificate_cron() {
global $CFG, $DB;
mtrace('Removing old issed certificates... ');
$lifetime = get_config('simplecertificate', 'certlifetime');
if ($lifetime <= 0) {
return true;
}
$month = 2629744;
$timenow = time();
$delta = $lifetime * $month;
$timedeleted = $timenow - $delta;
if (!$DB->delete_records_select('simplecertificate_issues', 'timedeleted <= ?', array($timedeleted))) {
return false;
}
mtrace('done');
return true;
}
/**
* Serves certificate issues files, only in admin page.
*
* @param stdClass $course
* @param stdClass $cm
* @param stdClass $context
* @param string $filearea
* @param array $args
* @param bool $forcedownload
* @return bool nothing if file not found, does not return anything if found - just send the file
*/
function simplecertificate_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload, array $options = array()) {
require_login($course);
if ($context->contextlevel != CONTEXT_MODULE) {
return false;
}
$url = new moodle_url('wssendfile.php');
$url->param('id', (int)array_shift($args));
$url->param('sk',sesskey());
redirect($url);
}
/**
* Get the course outcomes for for mod_form print outcome.
*
* @return array
*/
function simplecertificate_get_outcomes() {
global $COURSE, $DB;
// get all outcomes in course
$grade_seq = new grade_tree($COURSE->id, false, true, '', false);
if ($grade_items = $grade_seq->items) {
// list of item for menu
$printoutcome = array();
foreach ($grade_items as $grade_item) {
if (isset($grade_item->outcomeid)) {
$itemmodule = $grade_item->itemmodule;
$printoutcome[$grade_item->id] = $itemmodule . ': ' . $grade_item->get_name();
}
}
}
if (isset($printoutcome)) {
$outcomeoptions['0'] = get_string('no');
foreach ($printoutcome as $key => $value) {
$outcomeoptions[$key] = $value;
}
} else {
$outcomeoptions['0'] = get_string('nooutcomes', 'simplecertificate');
}
return $outcomeoptions;
}
/**
* Used for course participation report (in case certificate is added).
*
* @return array
*/
function simplecertificate_get_view_actions() {
return array('view', 'view all', 'view report', 'verify');
}
/**
* Used for course participation report (in case certificate is added).
*
* @return array
*/
function simplecertificate_get_post_actions() {
return array('received');
}
/**
* Update the event if it exists, else create
*/
function simplecertificate_send_event($certificate) {
global $DB, $CFG;
require_once ($CFG->dirroot . '/calendar/lib.php');
if ($event = $DB->get_record('event', array('modulename' => 'simplecertificate', 'instance' => $certificate->id))) {
$calendarevent = calendar_event::load($event->id);
$calendarevent->name = $certificate->name;
$calendarevent->update($calendarevent);
} else {
$event = new stdClass();
$event->name = $certificate->name;
$event->description = '';
$event->courseid = $certificate->course;
$event->groupid = 0;
$event->userid = 0;
$event->modulename = 'simplecertificate';
$event->instance = $certificate->id;
calendar_event::create($event);
}
}
/**
* Returns certificate text options
*
* @param module context
* @return array
*/
function simplecertificate_get_editor_options(stdclass $context) {
return array('subdirs' => 0, 'maxbytes' => 0, 'maxfiles' => 0, 'changeformat' => 0, 'context' => $context, 'noclean' => 0,
'trusttext' => 0);
}
/**
* Get all the modules
*
* @return array
*
*/
function simplecertificate_get_mods() {
global $COURSE, $CFG, $DB;
$grademodules = array();
$items = grade_item::fetch_all(array('courseid' => $COURSE->id));
$items = $items ? $items : array();
foreach ($items as $id => $item) {
// Do not include grades for course itens
if ($item->itemtype != 'mod') {
continue;
}
$cm = get_coursemodule_from_instance($item->itemmodule, $item->iteminstance);
$grademodules[$cm->id] = $item->get_name();
}
asort($grademodules);
return $grademodules;
}
/**
* Search through all the modules for grade dates for mod_form.
*
* @return array
*/
function simplecertificate_get_date_options() {
global $CFG;
require_once (dirname(__FILE__) . '/locallib.php');
$dateoptions[simplecertificate::CERT_ISSUE_DATE] = get_string('issueddate', 'simplecertificate');
$dateoptions[simplecertificate::COURSE_COMPLETATION_DATE] = get_string('completiondate', 'simplecertificate');
return $dateoptions + simplecertificate_get_mods();
}
/**
* Search through all the modules for grade data for mod_form.
*
* @return array
*/
function simplecertificate_get_grade_options() {
require_once (dirname(__FILE__) . '/locallib.php');
$gradeoptions[simplecertificate::NO_GRADE] = get_string('nograde');
$gradeoptions[simplecertificate::COURSE_GRADE] = get_string('coursegrade', 'simplecertificate');
return $gradeoptions + simplecertificate_get_mods();
}
/**
* Print issed file certificate link
*
* @param stdClass $issuecert The issued certificate object
* @return string file link url
*/
function simplecertificate_print_issue_certificate_file(stdClass $issuecert) {
global $CFG, $OUTPUT;
require_once (dirname(__FILE__) . '/locallib.php');
// Trying to cath course module context
try {
$fs = get_file_storage();
if (!$fs->file_exists_by_hash($issuecert->pathnamehash)) {
throw new Exception();
}
$file = $fs->get_file_by_hash($issuecert->pathnamehash);
$output = '<img src="' . $OUTPUT->pix_url(file_mimetype_icon($file->get_mimetype())) . '" height="16" width="16" alt="' .
$file->get_mimetype() . '" /> ';
$url = new moodle_url('wmsendfile.php');
$url->param('id', $issuecert->id);
$url->param('sk', sesskey());
$output .= '<a href="' . $url->out(true) . '" target="_blank" >' . s($file->get_filename()) . '</a>';
} catch (Exception $e) {
$output = get_string('filenotfound', 'simplecertificate', '');
}
return '<div class="files">' . $output . '<br /> </div>';
}