-
Notifications
You must be signed in to change notification settings - Fork 37
/
attempt.php
281 lines (235 loc) · 10.9 KB
/
attempt.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
<?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/>.
/**
* This view renders a single question during the executing of a StudentQuiz
*
* @package mod_studentquiz
* @copyright 2017 HSR (http://www.hsr.ch)
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use mod_studentquiz\utils;
use mod_studentquiz\local\studentquiz_question;
use mod_studentquiz\local\studentquiz_progress;
require_once(__DIR__ . '/../../config.php');
require_once($CFG->libdir . '/questionlib.php');
require_once(__DIR__ . '/locallib.php');
// Get parameters.
$cmid = required_param('cmid', PARAM_INT);
// Comment highlight.
$highlight = optional_param('highlight', 0, PARAM_INT);
// Load course and course module requested.
if ($cmid) {
if (!$cm = get_coursemodule_from_id('studentquiz', $cmid)) {
throw new moodle_exception("invalidcoursemodule");
}
if (!$course = $DB->get_record('course', array('id' => $cm->course))) {
throw new moodle_exception("coursemisconf");
}
} else {
throw new moodle_exception("invalidcoursemodule");
}
// Authentication check.
require_login($cm->course, false, $cm);
$attemptid = required_param('id', PARAM_INT);
$slot = required_param('slot', PARAM_INT);
$returnurl = optional_param('returnurl', '', PARAM_LOCALURL);
$attempt = $DB->get_record('studentquiz_attempt', array('id' => $attemptid));
$context = context_module::instance($cm->id);
// Check to see if any roles setup has been changed since we last synced the capabilities.
\mod_studentquiz\access\context_override::ensure_permissions_are_right($context);
$studentquiz = mod_studentquiz_load_studentquiz($cmid, $context->id);
$userid = $USER->id;
$questionusage = question_engine::load_questions_usage_by_activity($attempt->questionusageid);
$slots = $questionusage->get_slots();
$questionids = explode(",", $attempt->ids);
$originalnumofquestionids = count($questionids);
if (!in_array($slot, $slots)) {
mod_studentquiz_add_question_to_attempt($questionusage, $studentquiz, $questionids, $slot - 1);
if (count($questionids) != $originalnumofquestionids) {
$attempt->ids = implode(",", $questionids);
$DB->update_record('studentquiz_attempt', $attempt);
}
}
$actionurl = new moodle_url('/mod/studentquiz/attempt.php', ['cmid' => $cmid, 'id' =>
$attemptid, 'slot' => $slot, 'returnurl' => $returnurl]);
$returnurl = $returnurl ? new moodle_url($returnurl) : new moodle_url('/mod/studentquiz/view.php', ['id' => $cmid]);
// Reroute this to attempt summary page if desired.
// Get Current Question.
$question = $questionusage->get_question($slot);
$studentquizquestion = studentquiz_question::get_studentquiz_question_from_question($question, $studentquiz, $cm, $context);
// Navigatable?
$questionscount = count($questionids);
$hasnext = $slot < $questionscount;
$hasprevious = $slot > $questionusage->get_first_question_number();
$canfinish = $questionusage->can_question_finish_during_attempt($slot);
if (data_submitted()) {
require_sesskey();
// Once data has been submitted, process actions to save the current question answer state. If the question can be
// finished during the attempt (immediatefeedback), then do so. If it can't (adaptive), finish the question once
// navigated further in the quiz. After the actions have been processed, proceed the requested navigation.
$transaction = $DB->start_delegated_transaction();
$isfinishedbefore = $questionusage->get_question_state($slot)->is_finished();
$qa = $questionusage->get_question_attempt($slot);
$sequencecheck = $qa->get_submitted_var($qa->get_control_field_name('sequencecheck'), PARAM_INT);
if ($sequencecheck == $qa->get_sequence_check_count()) {
// On every submission save the attempt.
$questionusage->process_all_actions();
}
// So, immediatefeedback finishes question automatically after successful submit. But adaptive doesn't and it
// should be finished manually but only when navigating further.
if (!$canfinish && (optional_param('next', null, PARAM_BOOL) || optional_param('finish', null, PARAM_BOOL))) {
if (!$isfinishedbefore) {
$questionusage->finish_question($slot);
}
}
// We save the attempts always to db, as there is no finish/submission step expected for the user.
question_engine::save_questions_usage_by_activity($questionusage);
$isfinishedafter = $questionusage->get_question_state($slot)->is_finished();
// If the question is finished after process but was not before, save the attempt to the progress.
if ($isfinishedafter && !$isfinishedbefore) {
$studentquizprogress = $DB->get_record('studentquiz_progress',
['studentquizquestionid' => $studentquizquestion->get_id(),
'userid' => $userid, 'studentquizid' => $studentquiz->id]);
if ($studentquizprogress == false) {
$studentquizprogress = studentquiz_progress::get_studentquiz_progress_from_studentquiz_question($studentquizquestion,
$userid);
}
// Any newly finished attempt is wrong when it wasn't right.
$studentquizprogress->attempts += 1;
$studentquizprogress->lastanswercorrect = 0;
if ($qa->get_state() == question_state::$gradedright) {
$studentquizprogress->correctattempts += 1;
$studentquizprogress->lastanswercorrect = 1;
}
if (!empty($studentquizprogress->id)) {
$DB->update_record('studentquiz_progress', $studentquizprogress);
} else {
$studentquizprogress->id = $DB->insert_record('studentquiz_progress', $studentquizprogress, true);
}
}
$transaction->allow_commit();
// Update completion state.
\mod_studentquiz\completion\custom_completion::trigger_completion_state_update($COURSE, $cm);
// Navigate accordingly. If no navigation button has been submitted, then there has been a question answer attempt.
if (optional_param('next', null, PARAM_BOOL)) {
if ($hasnext) {
$actionurl = new moodle_url($actionurl, array('slot' => $slot + 1));
redirect($actionurl);
} else {
redirect($returnurl);
}
} else if (optional_param('previous', null, PARAM_BOOL)) {
if ($hasprevious) {
$actionurl = new moodle_url($actionurl, array('slot' => $slot - 1));
redirect($actionurl);
} else {
$actionurl = new moodle_url($actionurl, array('slot' => $questionusage->get_first_question_number()));
redirect($actionurl);
}
} else if (optional_param('finish', null, PARAM_BOOL)) {
redirect($returnurl);
} else {
redirect($actionurl);
}
}
// A question is always answered when it is finished. In immediatefeedback this happens immediatly after anwering
// without an invalid error. With adaptive a question is first answered if there is a graded step which is not null.
$isanswered = $questionusage->get_question_state($slot)->is_finished();
if (!$isanswered) {
$behaviour = $questionusage->get_question_attempt($slot)->get_behaviour();
if ($behaviour instanceof qbehaviour_adaptive) {
$isanswered = (null !== $behaviour->get_graded_step());
}
}
$options = new question_display_options();
$options->flags = question_display_options::EDITABLE;
/** @var mod_studentquiz_renderer $output */
$output = $PAGE->get_renderer('mod_studentquiz', 'attempt');
// Start output.
$PAGE->set_url($actionurl);
$jsparams = array(
boolval($studentquiz->forcerating),
boolval($studentquiz->forcecommenting),
boolval($isanswered)
);
$PAGE->requires->js_call_amd('mod_studentquiz/studentquiz', 'initialise', $jsparams);
$title = format_string($question->name);
$PAGE->set_title($cm->name);
$PAGE->set_heading($cm->name);
$PAGE->set_context($context);
// Render nav bar.
$navinfo = new stdClass();
$navinfo->current = $slot;
$navinfo->total = $questionscount;
$PAGE->navbar->add(get_string('nav_question_no', 'studentquiz', $navinfo));
utils::require_access_to_a_relevant_group($cm, $context, '', $studentquizquestion);
echo $OUTPUT->header();
$info = new stdClass();
$info->total = $questionscount;
$info->group = 0;
$info->one = max($slot - (!$isanswered ? 1 : 0), 0);
$texttotal = get_string('num_questions', 'studentquiz', $questionscount);
$html = '';
$html .= html_writer::div($output->render_progress_bar($info, $texttotal, true), '', array('title' => $texttotal));
// Render the question title.
$html .= html_writer::tag('h2', $title);
// Start the question form.
$html .= html_writer::start_tag('form', array('method' => 'post', 'action' => $actionurl,
'enctype' => 'multipart/form-data', 'id' => 'responseform'));
$html .= html_writer::empty_tag('input', array('type' => 'hidden', 'name' => 'cmid', 'value' => $cmid, 'class' => 'cmid_field'));
$html .= html_writer::empty_tag('input', ['type' => 'hidden', 'name' => 'sesskey', 'value' => sesskey()]);
// Output the question.
$html .= $questionusage->render_question($slot, $options, (string)$slot);
// Output the state change select box.
$statechangehtml = $output->render_state_choice($studentquizquestion);
$navigationhtml = $output->render_navigation_bar($hasprevious, $hasnext, $isanswered);
// Change state will always first thing below navigation.
$orders = [
$navigationhtml,
$statechangehtml
];
if ($isanswered) {
// Get output the rating.
$ratinghtml = $output->render_rate($studentquizquestion, $studentquiz->forcerating);
// Get output the comments.
$commenthtml = $output->render_comment($studentquizquestion, $userid, $highlight);
// If force rating and commenting, then it will above navigation.
if ($studentquiz->forcerating && $studentquiz->forcecommenting) {
$orders = array_merge([
$ratinghtml,
$commenthtml
], $orders);
} else {
// If force rating, then it will be render first.
if ($studentquiz->forcerating) {
array_unshift($orders, $ratinghtml);
} else {
$orders[] = $ratinghtml;
}
// If force commenting, then it will be render first.
if ($studentquiz->forcecommenting) {
array_unshift($orders, $commenthtml);
} else {
$orders[] = $commenthtml;
}
}
}
foreach ($orders as $v) {
$html .= $v;
}
$html .= html_writer::end_tag('form');
echo $html;
echo $OUTPUT->footer();