forked from danmarsden/moodle-mod_attendance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
attendance.php
executable file
·394 lines (338 loc) · 16.8 KB
/
attendance.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
<?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/>.
/**
* Prints attendance info for particular user
*
* @package mod_attendance
* @copyright 2014 Dan Marsden
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once(dirname(__FILE__).'/../../config.php');
require_once(dirname(__FILE__).'/locallib.php');
require_once($CFG->libdir.'/formslib.php');
require_once(dirname(__FILE__).'/studentlocation_form.php');
$pageparams = new mod_attendance_sessions_page_params();
// Check that the required parameters are present.
$id = required_param('sessid', PARAM_INT);
$qrpass = optional_param('qrpass', '', PARAM_TEXT);
$attforsession = $DB->get_record('attendance_sessions', array('id' => $id), '*', MUST_EXIST);
$attconfig = get_config('attendance');
$attendance = $DB->get_record('attendance', array('id' => $attforsession->attendanceid), '*', MUST_EXIST);
$cm = get_coursemodule_from_instance('attendance', $attendance->id, 0, false, MUST_EXIST);
$course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
$pageparams->sessionid = $id;
$att = new mod_attendance_structure($attendance, $cm, $course, $PAGE->context, $pageparams);
// Require the user is logged in.
require_login($course, true, $cm);
$action = optional_param('action', '', PARAM_ALPHA);
if ($action == 'approve') {
$sessid = required_param('sessid', PARAM_INT);
$learnerid = required_param('learnerid', PARAM_INT);
$itemid = required_param('itemid', PARAM_INT);
$returnurl = required_param('returnurl', PARAM_ALPHA);
$statuses = $DB->get_records('attendance_statuses', array('attendanceid' => $attendance->id));
$excusedStatusId = "";
foreach ($statuses as $status) {
if ($status->acronym == "E") {
$excusedStatusId = $status->id;
}
}
$existing = $DB->get_record('attendance_log', array('sessionid' => $sessid, 'studentid' => $learnerid));
$existing->statusid = $excusedStatusId;
$existing->remarks = 'Justification approved';
$existing->approved = 1;
$DB->update_record('attendance_log', $existing);
$sessioninfo = $DB->get_record('attendance_sessions', array('id' => $sessid));
$statusset = $sessioninfo->statusset;
$sessioninfo->lasttaken = $now;
$sessioninfo->lasttakenby = $USER->id;
$DB->update_record('attendance_sessions', $sessioninfo);
if ($returnurl == 'modattendancetakephp') {
$redirecturl = new moodle_url('/mod/attendance/take.php', ['id' => $cm->id, 'sessionid' => $sessid, 'grouptype' => '0']);
} else if ($returnurl == 'modattendanceviewphp') {
$redirecturl = new moodle_url('/mod/attendance/view.php', ['id' => $cm->id, 'studentid' => $learnerid]);
}
redirect($redirecturl, "Justification approved!", null);
exit;
}
if ($action == 'discart') {
$context = context_module::instance($cm->id);
$returnurl = required_param('returnurl', PARAM_ALPHA);
$sessid = required_param('sessid', PARAM_INT);
$learnerid = required_param('learnerid', PARAM_INT);
$itemid = required_param('itemid', PARAM_INT);
$existing = $DB->get_record('attendance_log', array('sessionid' => $sessid, 'studentid' => $learnerid));
$fs = get_file_storage();
$files = $fs->get_area_files($context->id, 'mod_attendance', 'attendance', $existing->itemid, null, false);
if (!empty($files)) {
$file = reset($files);
}
$existing->statusid = 6;
$existing->filepath = null;
$existing->remarks = 'Justification not approved';
$existing->approved = 0;
$DB->update_record('attendance_log', $existing);
$sessioninfo = $DB->get_record('attendance_sessions', array('id' => $sessid));
$statusset = $sessioninfo->statusset;
$sessioninfo->lasttaken = $now;
$sessioninfo->lasttakenby = $USER->id;
$DB->update_record('attendance_sessions', $sessioninfo);
if ($returnurl == 'modattendancetakephp') {
$redirecturl = new moodle_url('/mod/attendance/take.php', ['id' => $cm->id, 'sessionid' => $sessid, 'grouptype' => '0']);
} else if ($returnurl == 'modattendanceviewphp') {
$redirecturl = new moodle_url('/mod/attendance/view.php', ['id' => $cm->id, 'studentid' => $learnerid]);
}
redirect($redirecturl, "Justification discarted!", null);
exit;
}
if ($action == 'forcecheckout') {
$sessid = required_param('sessid', PARAM_INT);
$learnerid = required_param('learnerid', PARAM_INT);
$grouptype = required_param('grouptype', PARAM_INT);
$now = time();
$existingattendance = $DB->get_record('attendance_log', array('sessionid' => $sessid, 'studentid' => $learnerid));
if ($existingattendance) {
$existingattendance->checkout_time = $now; // Assuming checkout_time is your field name
$DB->update_record('attendance_log', $existingattendance);
// Redirect after successful checkout
$redirecturl = new moodle_url('/mod/attendance/take.php', array(
'sessionid' => $sessid,
'id' => $cm->id,
'grouptype' => $grouptype
));
redirect($redirecturl, "Successfully Checked out!", null);
exit;
} else {
// Redirect after successful checkout
$redirecturl = new moodle_url('/mod/attendance/take.php', array(
'sessionid' => $sessid,
'id' => $cm->id,
'grouptype' => $grouptype
));
redirect($redirecturl, "The learner didn't checkin yet!", null);
exit;
}
}
if ($action == 'checkout') {
$sessid = required_param('sessid', PARAM_INT);
$now = time();
$existingattendance = $DB->get_record('attendance_log', array('sessionid' => $sessid, 'studentid' => $USER->id));
if($existingattendance){
$existingattendance->checkout_time = $now; // Assuming checkout_time is your field name
$DB->update_record('attendance_log', $existingattendance);
// Redirect after successful checkout
$redirecturl = new moodle_url('/mod/attendance/view.php', ['id' => $cm->id]);
redirect($redirecturl, "Successfully Checked out!", null);
exit;
} else {
$redirecturl = new moodle_url('/mod/attendance/view.php', ['id' => $cm->id]);
redirect($redirecturl, "Not checked in yet", null);
}
}
if ($action == 'resetSessionData') {
$sessid = required_param('sessid', PARAM_INT);
$learnerid = required_param('learnerid', PARAM_INT);
$grouptype = required_param('grouptype', PARAM_INT);
$redirecturl = new moodle_url('/mod/attendance/take.php', array(
'sessionid' => $sessid,
'id' => $cm->id,
'grouptype' => $grouptype
));
$existingattendance = $DB->get_record('attendance_log', array('sessionid' => $sessid, 'studentid' => $learnerid));
if($existingattendance) {
$select = 'sessionid = :sessionid AND studentid = :studentid';
$DB->delete_records_select('attendance_log', $select, array('sessionid' => $sessid, 'studentid' => $learnerid));
redirect($redirecturl, "Successfully removed user session!", null);
exit;
} else {
redirect($redirecturl, "No user sessions found!", null);
exit;
}
}
// If group mode is set, check if user can access this session.
if (!empty($attforsession->groupid) && !groups_is_member($attforsession->groupid, $USER->id)) {
throw new moodle_exception('cannottakethisgroup', 'attendance');
}
if ($DB->record_exists('attendance_log', ['sessionid' => $id, 'studentid' => $USER->id]) && !attendance_check_allow_update($id)) {
$url = new moodle_url('/mod/attendance/view.php', ['id' => $cm->id]);
throw new moodle_exception('attendance_already_submitted', 'mod_attendance', $url);
}
$qrpassflag = false;
list($canmark, $reason) = attendance_can_student_mark($attforsession);
// If the randomised code is on grab it.
if ($canmark && attendance_session_open_for_students($attforsession) && $attforsession->rotateqrcode == 1) {
$cookiename = 'attendance_'.$attforsession->id;
$secrethash = md5($USER->id.$attforsession->rotateqrcodesecret);
$url = new moodle_url('/mod/attendance/view.php', array('id' => $cm->id));
// Check if cookie is set and verify.
if (isset($_COOKIE[$cookiename])) {
// Check the token.
if ($secrethash !== $_COOKIE[$cookiename]) {
// Flag error.
throw new moodle_exception('qr_cookie_error', 'mod_attendance', $url);
}
} else {
// Check password.
$sql = 'SELECT * FROM {attendance_rotate_passwords}'.
' WHERE attendanceid = ? AND expirytime > ? ORDER BY expirytime ASC';
$qrpassdatabase = $DB->get_records_sql($sql, ['attendanceid' => $id, time() - $attconfig->rotateqrcodeexpirymargin], 0, 2);
foreach ($qrpassdatabase as $qrpasselement) {
if ($qrpass == $qrpasselement->password) {
$qrpassflag = true;
}
}
if ($qrpassflag) {
// Create and store the token.
setcookie($cookiename, $secrethash, time() + (60 * 5), "/");
} else {
// Flag error.
if (debugging('', DEBUG_DEVELOPER)) {
// Get qr code record.
$rec = $DB->get_record('attendance_rotate_passwords', ['attendanceid' => $id, 'password' => $qrpass]);
if (empty($rec)) {
debugging('QR password not found');
} else {
$format = get_string('strftimedatetimeaccurate', 'core_langconfig');
$message = "The current server time is: " . userdate(time(), $format). " and this QR Code expired at: ".
userdate($rec->expirytime + $attconfig->rotateqrcodeexpirymargin, $format);
debugging($message);
}
}
throw new moodle_exception('qr_pass_wrong', 'mod_attendance', $url);
}
}
}
if (!$canmark) {
redirect(new moodle_url('/mod/attendance/view.php', array('id' => $cm->id)), get_string($reason, 'attendance'));
exit;
}
// Check if subnet is set and if the user is in the allowed range.
if (!empty($attforsession->subnet) && !address_in_subnet(getremoteaddr(), $attforsession->subnet)) {
$url = new moodle_url('/mod/attendance/view.php', array('id' => $cm->id));
notice(get_string('subnetwrong', 'attendance'), $url);
exit; // Notice calls this anyway.
}
if (empty($attforsession->includeqrcode)) {
$qrpass = ''; // Override qrpass if set, as it is not allowed.
}
// Check to see if autoassignstatus is in use and no password required or Qrpass given and passed
if (!empty($qrpass) && !empty($attforsession->autoassignstatus) && attendance_session_open_for_students($attforsession)) {
$fromform = new stdClass();
// Check if password required and if set correctly.
if (!empty($attforsession->studentpassword) &&
$attforsession->studentpassword !== $qrpass) {
$url = new moodle_url('/mod/attendance/attendance.php', array('sessid' => $id, 'sesskey' => sesskey()));
redirect($url, get_string('incorrectpassword', 'mod_attendance'), null, \core\output\notification::NOTIFY_ERROR);
}
// Set the password and session id in the form, because they are saved in the attendance log.
$fromform->studentpassword = $qrpass;
$fromform->sessid = $attforsession->id;
$fromform->status = attendance_session_get_highest_status($att, $attforsession);
if (empty($fromform->status)) {
$url = new moodle_url('/mod/attendance/view.php', array('id' => $cm->id));
throw new moodle_exception('attendance_no_status', 'mod_attendance', $url);
}
if (!empty($fromform->status)) {
$success = $att->take_from_student($fromform);
$url = new moodle_url('/mod/attendance/view.php', array('id' => $cm->id));
if ($success) {
// Redirect back to the view page.
redirect($url, get_string('studentmarked', 'attendance'));
} else {
throw new moodle_exception('attendance_already_submitted', 'mod_attendance', $url);
}
}
}
$PAGE->set_url($att->url_sessions((array)$pageparams));
// Create the form.
if ($attforsession->rotateqrcode == 1) {
$mform = new mod_attendance\form\studentattendance(null,
array('course' => $course, 'cm' => $cm, 'modcontext' => $PAGE->context, 'session' => $attforsession,
'attendance' => $att, 'password' => $attforsession->studentpassword));
} else {
$mform = new mod_attendance\form\studentattendance(null,
array('course' => $course, 'cm' => $cm, 'modcontext' => $PAGE->context, 'session' => $attforsession,
'attendance' => $att, 'password' => $qrpass));
}
if ($mform->is_cancelled()) {
// The user cancelled the form, so redirect them to the view page.
$url = new moodle_url('/mod/attendance/view.php', array('id' => $cm->id));
redirect($url);
} else if ($fromform = $mform->get_data()) {
// Check if password required and if set correctly.
if (!empty($attforsession->studentpassword) &&
// Session is not currently open, but this status is allowed to be set before the session, don't require password.
!(!attendance_session_open_for_students($attforsession) && attendance_is_status_availablebeforesession($attforsession->id, $fromform->status))
// Check if password being passed is valid.
&& $attforsession->studentpassword !== $fromform->studentpassword) {
$url = new moodle_url('/mod/attendance/attendance.php', array('sessid' => $id, 'sesskey' => sesskey()));
redirect($url, get_string('incorrectpassword', 'mod_attendance'), null, \core\output\notification::NOTIFY_ERROR);
}
if (attendance_session_open_for_students($attforsession) && $attforsession->autoassignstatus) {
$fromform->status = attendance_session_get_highest_status($att, $attforsession);
if (empty($fromform->status)) {
$url = new moodle_url('/mod/attendance/view.php', array('id' => $cm->id));
throw new moodle_exception('attendance_no_status', 'mod_attendance', $url);
}
}
if (!empty($fromform->status)) {
[$statuses, $unused] = $att->get_student_statuses($attforsession);
if (!isset($statuses[$fromform->status])) {
throw new moodle_exception('attendance_status_not_allowed', 'mod_attendance', $url);
}
$success = $att->take_from_student($fromform);
$url = new moodle_url('/mod/attendance/view.php', array('id' => $cm->id));
if ($success) {
// Redirect back to the view page.
redirect($url, get_string('studentmarked', 'attendance'));
} else {
throw new moodle_exception('attendance_already_submitted', 'mod_attendance', $url);
}
}
// The form did not validate correctly so we will set it to display the data they submitted.
$mform->set_data($fromform);
}
if ($attforsession->autoassignstatus && attendance_session_open_for_students($attforsession) && (empty($attforsession->studentpassword)) || $qrpassflag) {
$mform = new \mod_attendance\form\studentlocation(null,array('course' => $course, 'cm' => $cm, 'modcontext' => $PAGE->context, 'session' => $attforsession,'attendance' => $att, 'password' => $qrpass));
// Check if the form is submitted
if ($mform->is_submitted()) {
$data = $mform->get_data();
$statusid = attendance_session_get_highest_status($att, $attforsession);
$url = new moodle_url('/mod/attendance/view.php', array('id' => $cm->id));
if (empty($statusid)) {
throw new moodle_exception('attendance_no_status', 'mod_attendance', $url);
}
$take = new stdClass();
$take->status = $statusid;
$take->sessid = $attforsession->id;
$take->location = $data->location; // Retrieve the location value from the form
$success = $att->take_from_student($take);
if ($success) {
// Redirect back to the view page.
redirect($url, get_string('studentmarked', 'attendance'));
} else {
throw new moodle_exception('attendance_already_submitted', 'mod_attendance', $url);
}
}
}
$PAGE->set_title($course->shortname. ": ".$att->name);
$PAGE->set_heading($course->fullname);
$PAGE->set_cacheable(true);
$PAGE->navbar->add($att->name);
$output = $PAGE->get_renderer('mod_attendance');
echo $output->header();
$mform->display();
echo $output->footer();