-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.php
379 lines (320 loc) · 13.7 KB
/
index.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
<?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/>.
/**
* Coursecompletion report
*
* @package report_coursecompletion
* @copyright 2017 Catalyst IT Ltd
* @author Oliver Redding <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once(__DIR__."/../../config.php");
require_once($CFG->libdir."/adminlib.php");
require_login(null, false);
$PAGE->set_url(new moodle_url('/report/coursecompletion/index.php'));
$systemcontext = context_system::instance();
$personalcontext = context_user::instance($USER->id);
$showallusers = false;
if (has_capability('report/coursecompletion:viewall', $systemcontext)) {
// User must be site admin or manager - can see records for all users.
$showallusers = true;
$PAGE->set_context($systemcontext);
admin_externalpage_setup("reportcoursecompletion", "", null, "", array("pagelayout" => "report"));
$defaultsort = "u.firstname";
} else if (has_capability('report/coursecompletion:view', $personalcontext)) {
// User is likely a parent/mentor - can see the student's records only.
$PAGE->set_pagelayout('report');
$PAGE->set_context($personalcontext);
$defaultsort = "c.fullname";
} else {
print_error('nopermissiontoviewcoursecompletionreport', 'error', $CFG->wwwroot.'/my');
}
$sort = optional_param("sort", $defaultsort, PARAM_NOTAGS); // Sorting column.
$dir = optional_param("dir", "ASC", PARAM_ALPHA); // Sorting direction.
$page = optional_param("page", 0, PARAM_INT); // Page number.
$perpage = optional_param("perpage", 30, PARAM_INT); // Results to display per page.
$export = optional_param("export", 0, PARAM_INT); // Export to csv the results.
// Dir can only be DESC or ASC.
$dir = $dir === 'DESC' ? 'DESC' : 'ASC';
// Ensure the maxiumum records perpage is not ever set too high.
$perpage = min(100, $perpage);
// Columns of the report.
$columns = array(
"course",
"enrolmentcreated",
"timestarted",
"timecompleted",
"completionstatus",
);
// Sort sql fields for each column.
$scolumns = array(
'course' => array('c.fullname'),
'enrolmentcreated' => array('uet.timecreated'),
'timestarted' => array('cc.timestarted'),
'timecompleted' => array('cc.timecompleted'),
'completionstatus' => array('completionstatus'),
);
// Add user columns if showing all users.
if ($showallusers) {
array_unshift($columns, 'name', 'email');
$scolumns = array_merge(array(
'name' => array('u.firstname', 'u.lastname'),
'email' => array('u.email')
), $scolumns);
}
// Build array of all the possible sort columns.
$allsorts = array();
foreach ($scolumns as $sorts) {
foreach ($sorts as $s) {
$allsorts[] = $s;
}
}
// Sanitize sort to ensure they are valid column sorts.
if (!in_array($sort, $allsorts)) {
$sort = $defaultsort;
}
// Variables that hold SQL.
$userwhere = "WHERE u.id = :userid";
$userparams = array('userid' => $USER->id);
$where = "";
$params = [];
$cohortjoin = "";
// Intialise mform.
$mform = new \report_coursecompletion\form\report(null, array("showallusers" => $showallusers));
$data = $mform->get_data();
// Use the session to hold the form data in case they refresh the page after a post.
if (!$data && isset($USER->session) && isset($USER->session['coursecompletion_formd'])) {
$data = $USER->session['coursecompletion_formd'];
$mform->set_data($data);
}
if ($data) {// Build the SQL query based on the form data.
$USER->session['coursecompletion_formd'] = $data;
if ($showallusers) {
process_data_field($data, $where, $params, "u.firstname", "firstname", "LIKE");
process_data_field($data, $where, $params, "u.lastname", "lastname", "LIKE");
process_data_field($data, $where, $params, "u.email", "email", "LIKE");
process_data_field($data, $where, $params, "u.suspended", "suspended", "!=");
process_data_field($data, $where, $params, "u.deleted", "deleted", "!=");
}
process_data_field($data, $where, $params, "c.category", "course_categories", "=");
process_data_field($data, $where, $params, "c.fullname", "course", "LIKE");
if (isset($data->completed_options)) {
$where .= !empty($where) ? " AND " : "";
if ($data->completed_options == 1) {
$where .= " cc.timecompleted IS NOT NULL";
} else if ($data->completed_options == 2) {
$where .= " cc.timecompleted IS NULL";
}
}
process_data_field($data, $where, $params, "cc.timecompleted", "timecompleted_after", ">=");
process_data_field($data, $where, $params, "cc.timecompleted", "timecompleted_before", "<=");
process_data_field($data, $where, $params, "cc.timestarted", "timestarted_after", ">=");
process_data_field($data, $where, $params, "cc.timestarted", "timestarted_before", "<=");
if ($showallusers && isset($data->cohorts) && $data->cohorts != 0) {
$cohortjoin = "LEFT JOIN {cohort_members} cm ON u.id = cm.userid AND cm.cohortid = :cohortid";
$where .= " cm.id IS NOT NULL ";
$params["cohortid"] = $data->cohorts;
}
}
// We need to inlcude user-specific search parameters if the user is not an
// admin, so that only that user's records show.
if (!$showallusers) {
if ($where == "") {
$where = $userwhere;
} else {
$where = "$userwhere AND ($where)";
}
}
if (!$showallusers) {
$params = array_merge($userparams, $params);
}
if ($showallusers && $where != "") {
$where = "WHERE $where";
}
$orderby = "ORDER BY $sort $dir";
// Get list of user fields for display.
$usercols = $showallusers ? get_all_user_name_fields(true, 'u') . ", u.email, " : "";
// Generate the final SQL.
$sql = "SELECT cc.id, cc.userid,$usercols cc.course, c.fullname, cc.timestarted, cc.timecompleted,
uet.timecreated as enrolmentcreated
FROM {course_completions} AS cc
JOIN {user} AS u ON cc.userid = u.id
JOIN {course} AS c ON cc.course = c.id
JOIN (SELECT max(ue.timecreated) as timecreated, ue.userid, e.courseid
FROM {user_enrolments} ue
JOIN {enrol} e ON (e.id = ue.enrolid)
GROUP by ue.userid, e.courseid) uet ON uet.courseid = c.id AND uet.userid = u.id
$cohortjoin $where $orderby";
// The sql for the parameterised count.
$countsql = "SELECT COUNT(cc.id)
FROM {course_completions} AS cc
JOIN {user} AS u ON cc.userid = u.id
JOIN {course} AS c ON cc.course = c.id
$cohortjoin $where";
// The sql for the total count.
$countsqltotal = "SELECT COUNT(cc.id)
FROM {course_completions} AS cc
JOIN {user} AS u ON cc.userid = u.id
JOIN {course} AS c ON cc.course = c.id
$userwhere";
// If requested, dump to csv instead, use a recordset because the size could grow large.
if ($export) {
$records = $DB->get_recordset_sql($sql, $params);
// Output headers so that the file is downloaded rather than displayed.
header('Content-Type: text/csv; charset=utf-8');
header('Content-Disposition: attachment; filename=data.csv');
// Create a file pointer connected to the output stream.
$output = fopen('php://output', 'w');
// Generate column headers.
$columnsh = array();
foreach ($columns as $column) {
$columnsh[] = get_string("table:export_header_$column", 'report_coursecompletion');
}
// Output the column headings.
fputcsv($output, $columnsh);
// Now dump the data.
$final = new stdClass();
foreach ($records as $record) {
if ($showallusers) {
$final->name = fullname($record);
$final->email = $record->email;
}
$final->course = $record->fullname;
$final->enrolmentcreated = time_format($record->enrolmentcreated);
$final->timestarted = time_format($record->timestarted);
$final->timecompleted = time_format($record->timecompleted);
$final->completionstatus = $record->timecompleted ? get_string('yes') : get_string('no');
fputcsv($output, (array)$final);
}
// Close the recordset.
$records->close();
// We're done.
die;
}
// Get records and required count values.
$currentstart = $page * $perpage; // Count of where to start with records.
$records = $DB->get_records_sql($sql, $params, $currentstart, $perpage);
$totalrecordcount = $showallusers ? $DB->count_records("course_completions") : $DB->count_records_sql($countsqltotal, $userparams);
$changescount = $DB->count_records_sql($countsql, $params);
// Start display of the page, itself.
echo $OUTPUT->header();
if ($showallusers) {
echo $OUTPUT->heading(get_string("report_header_admin", "report_coursecompletion"));
} else {
echo $OUTPUT->heading(get_string("report_header", "report_coursecompletion") . fullname($USER, true));
}
$mform->display();
// Url used for sorting the table.
$baseurl = new moodle_url("index.php", array("sort" => $sort, "dir" => $dir, "perpage" => $perpage, "page" => $page));
// Count of records shown as per filter options + href anchor link for jumping back to the table after a search or sort.
$a = new StdClass;
$a->total = $totalrecordcount;
$a->filter = $changescount;
echo get_string("count_string", "report_coursecompletion", $a);
echo '<a name="table"></a>';
echo $OUTPUT->paging_bar($changescount, $page, $perpage, $baseurl);
// Calculate table headers (clickable links that do sorting).
$hcolumns = array();
// Foreach column we look at it's applicable sort columns and build a final link header.
foreach ($columns as $column) {
$final = array();
foreach ($scolumns[$column] as $sortcolumn) {
if ($sort != $sortcolumn) {
$cdir = $dir;
$cicon = "";
} else {
$cdir = $dir == "ASC" ? "DESC" : "ASC";
$cicondir = ($dir == "ASC") ? "down" : "up";
$cicon = $OUTPUT->pix_icon('t/'. $cicondir, get_string($cicondir));
}
// Get a string for this sort link.
$columnheader = get_string("table:sort_header_$sortcolumn", 'report_coursecompletion');
// Update parameters for sort and direction for this column in the final url.
$baseurl->param('sort', $sortcolumn);
$baseurl->param('dir', $cdir);
if ($sortcolumn === "completionstatus") {
$final[] = "<a href=javascript:void(0)>$columnheader</a>";
} else {
$final[] = "<a href=$baseurl#table>$columnheader</a>$cicon";
}
}
// If one column has multiple sorts, combine them into one entry for that column.
$hcolumns[$column] = implode('/', $final);
}
$table = new html_table();
$table->head = $hcolumns;
$table->attributes["class"] = "admintable generaltable";
$table->data = [];
foreach ($records as $record) {
$final = new stdClass();
if ($showallusers) {
$finalname = fullname($record);
$final->fullname = html_writer::link(new moodle_url('/user/view.php', array('id' => $record->userid)), $finalname);
$final->email = $record->email;
}
$final->course = html_writer::link(new moodle_url('/course/view.php', array('id' => $record->course)), $record->fullname);
$final->enrolmentcreated = !empty($record->enrolmentcreated) ? userdate($record->enrolmentcreated) : "-";
$final->timestarted = !empty($record->timestarted) ? userdate($record->timestarted) : "-";
$final->timecompleted = !empty($record->timecompleted) ? userdate($record->timecompleted) : "-";
$final->completionstatus = $record->timecompleted ? get_string('yes') : get_string('no');
$table->data[] = $final;
}
echo html_writer::table($table);
$buttonurl = new moodle_url("index.php",
array("sort" => $sort, "dir" => $dir, "perpage" => $perpage, "page" => $page, "export" => 1));
$buttonstring = get_string('exportbutton', 'report_coursecompletion');
echo $OUTPUT->single_button($buttonurl, $buttonstring);
echo $OUTPUT->footer();
/**
* Helper function to build sql. - NEEDS To be moved/rewritten.
*
* @param stdClass $data
* @param string $where
* @param array $params
* @param string $dbfield
* @param string $fieldname
* @param string $comparison
* @param bool $startgroup
* @param bool $forceand
* @param bool $endgroup
*/
function process_data_field(&$data, &$where, &$params, $dbfield, $fieldname, $comparison,
$startgroup = false, $forceand = false, $endgroup = false) {
if (isset($data->{"$fieldname"}) && $data->{"$fieldname"}) {
if (!empty($params)) {
if ($forceand || (isset($data->operator) && $data->operator == 0)) {
$where .= " AND ";
} else {
$where .= " OR ";
}
}
$params[$fieldname] = $data->{"$fieldname"}.($comparison == "LIKE" ? "%" : "");
if ($startgroup) {
$where .= "(";
}
$colon = ":";
// If the search parameter is a string, make it case insensitive.
if (preg_match("/[a-z]/i", $params[$fieldname])) {
$dbfield = "LOWER($dbfield)";
$fieldname = "LOWER($colon$fieldname)";
$colon = "";
}
$where .= "$dbfield $comparison $colon$fieldname";
if ($endgroup) {
$where .= ")";
}
}
}