Merge branch 'MDL-38757-master-int' of git://github.com/FMCorz/moodle
[moodle.git] / mod / lesson / essay.php
blobe0dd5336b0ae52e373316232f40c97baa1071b82
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * Provides the interface for grading essay questions
21 * @package mod
22 * @subpackage lesson
23 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 **/
27 require_once('../../config.php');
28 require_once($CFG->dirroot.'/mod/lesson/locallib.php');
29 require_once($CFG->dirroot.'/mod/lesson/essay_form.php');
30 require_once($CFG->libdir.'/eventslib.php');
32 $id = required_param('id', PARAM_INT); // Course Module ID
33 $mode = optional_param('mode', 'display', PARAM_ALPHA);
35 $cm = get_coursemodule_from_id('lesson', $id, 0, false, MUST_EXIST);
36 $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
37 $lesson = new lesson($DB->get_record('lesson', array('id' => $cm->instance), '*', MUST_EXIST));
39 require_login($course, false, $cm);
40 $context = context_module::instance($cm->id);
41 require_capability('mod/lesson:edit', $context);
43 $url = new moodle_url('/mod/lesson/essay.php', array('id'=>$id));
44 if ($mode !== 'display') {
45 $url->param('mode', $mode);
47 $PAGE->set_url($url);
49 $attempt = new stdClass();
50 $user = new stdClass();
51 $attemptid = optional_param('attemptid', 0, PARAM_INT);
53 if ($attemptid > 0) {
54 $attempt = $DB->get_record('lesson_attempts', array('id' => $attemptid));
55 $answer = $DB->get_record('lesson_answers', array('lessonid' => $lesson->id, 'pageid' => $attempt->pageid));
56 $user = $DB->get_record('user', array('id' => $attempt->userid));
57 $scoreoptions = array();
58 if ($lesson->custom) {
59 $i = $answer->score;
60 while ($i >= 0) {
61 $scoreoptions[$i] = (string)$i;
62 $i--;
64 } else {
65 $scoreoptions[0] = get_string('nocredit', 'lesson');
66 $scoreoptions[1] = get_string('credit', 'lesson');
70 /// Handle any preprocessing before header is printed - based on $mode
71 switch ($mode) {
72 case 'grade':
73 // Grading form - get the necessary data
74 require_sesskey();
76 if (empty($attempt)) {
77 print_error('cannotfindattempt', 'lesson');
79 if (empty($user)) {
80 print_error('cannotfinduser', 'lesson');
82 if (empty($answer)) {
83 print_error('cannotfindanswer', 'lesson');
85 break;
87 case 'update':
88 require_sesskey();
90 if (empty($attempt)) {
91 print_error('cannotfindattempt', 'lesson');
93 if (empty($user)) {
94 print_error('cannotfinduser', 'lesson');
97 $mform = new essay_grading_form(null, array('scoreoptions'=>$scoreoptions, 'user'=>$user));
98 if ($mform->is_cancelled()) {
99 redirect("$CFG->wwwroot/mod/lesson/essay.php?id=$cm->id");
101 if ($form = $mform->get_data()) {
102 if (!$grades = $DB->get_records('lesson_grades', array("lessonid"=>$lesson->id, "userid"=>$attempt->userid), 'completed', '*', $attempt->retry, 1)) {
103 print_error('cannotfindgrade', 'lesson');
106 $essayinfo = new stdClass;
107 $essayinfo = unserialize($attempt->useranswer);
109 $essayinfo->graded = 1;
110 $essayinfo->score = $form->score;
111 $essayinfo->response = clean_param($form->response, PARAM_RAW);
112 $essayinfo->sent = 0;
113 if (!$lesson->custom && $essayinfo->score == 1) {
114 $attempt->correct = 1;
115 } else {
116 $attempt->correct = 0;
119 $attempt->useranswer = serialize($essayinfo);
121 $DB->update_record('lesson_attempts', $attempt);
123 // Get grade information
124 $grade = current($grades);
125 $gradeinfo = lesson_grade($lesson, $attempt->retry, $attempt->userid);
127 // Set and update
128 $updategrade = new stdClass();
129 $updategrade->id = $grade->id;
130 $updategrade->grade = $gradeinfo->grade;
131 $DB->update_record('lesson_grades', $updategrade);
132 // Log it
133 add_to_log($course->id, 'lesson', 'update grade', "essay.php?id=$cm->id", $lesson->name, $cm->id);
135 $lesson->add_message(get_string('changessaved'), 'notifysuccess');
137 // update central gradebook
138 lesson_update_grades($lesson, $grade->userid);
140 redirect(new moodle_url('/mod/lesson/essay.php', array('id'=>$cm->id)));
141 } else {
142 print_error('invalidformdata');
144 break;
145 case 'email':
146 // Sending an email(s) to a single user or all
147 require_sesskey();
149 // Get our users (could be singular)
150 if ($userid = optional_param('userid', 0, PARAM_INT)) {
151 $queryadd = " AND userid = ?";
152 if (! $users = $DB->get_records('user', array('id' => $userid))) {
153 print_error('cannotfinduser', 'lesson');
155 } else {
156 $queryadd = '';
157 $params = array ("lessonid" => $lesson->id);
158 // Need to use inner view to avoid distinct + text
159 if (!$users = $DB->get_records_sql("
160 SELECT u.*
161 FROM {user} u
162 JOIN (
163 SELECT DISTINCT userid
164 FROM {lesson_attempts}
165 WHERE lessonid = :lessonid
166 ) ui ON u.id = ui.id", $params)) {
167 print_error('cannotfinduser', 'lesson');
171 $pages = $lesson->load_all_pages();
172 foreach ($pages as $key=>$page) {
173 if ($page->qtype !== LESSON_PAGE_ESSAY) {
174 unset($pages[$key]);
178 // Get only the attempts that are in response to essay questions
179 list($usql, $params) = $DB->get_in_or_equal(array_keys($pages));
180 if (!empty($queryadd)) {
181 $params[] = $userid;
183 if (!$attempts = $DB->get_records_select('lesson_attempts', "pageid $usql".$queryadd, $params)) {
184 print_error('nooneansweredthisquestion', 'lesson');
186 // Get the answers
187 list($answerUsql, $parameters) = $DB->get_in_or_equal(array_keys($pages));
188 array_unshift($parameters, $lesson->id);
189 if (!$answers = $DB->get_records_select('lesson_answers', "lessonid = ? AND pageid $answerUsql", $parameters, '', 'pageid, score')) {
190 print_error('cannotfindanswer', 'lesson');
192 $options = new stdClass;
193 $options->noclean = true;
195 foreach ($attempts as $attempt) {
196 $essayinfo = unserialize($attempt->useranswer);
197 if ($essayinfo->graded && !$essayinfo->sent) {
198 // Holds values for the essayemailsubject string for the email message
199 $a = new stdClass;
201 // Set the grade
202 $grades = $DB->get_records('lesson_grades', array("lessonid"=>$lesson->id, "userid"=>$attempt->userid), 'completed', '*', $attempt->retry, 1);
203 $grade = current($grades);
204 $a->newgrade = $grade->grade;
206 // Set the points
207 if ($lesson->custom) {
208 $a->earned = $essayinfo->score;
209 $a->outof = $answers[$attempt->pageid]->score;
210 } else {
211 $a->earned = $essayinfo->score;
212 $a->outof = 1;
215 // Set rest of the message values
216 $currentpage = $lesson->load_page($attempt->pageid);
217 $a->question = format_text($currentpage->contents, $currentpage->contentsformat, $options);
218 $a->response = s($essayinfo->answer);
219 $a->comment = s($essayinfo->response);
221 // Fetch message HTML and plain text formats
222 $message = get_string('essayemailmessage2', 'lesson', $a);
223 $plaintext = format_text_email($message, FORMAT_HTML);
225 // Subject
226 $subject = get_string('essayemailsubject', 'lesson', format_string($pages[$attempt->pageid]->title,true));
228 $eventdata = new stdClass();
229 $eventdata->modulename = 'lesson';
230 $eventdata->userfrom = $USER;
231 $eventdata->userto = $users[$attempt->userid];
232 $eventdata->subject = $subject;
233 $eventdata->fullmessage = $plaintext;
234 $eventdata->fullmessageformat = FORMAT_PLAIN;
235 $eventdata->fullmessagehtml = $message;
236 $eventdata->smallmessage = '';
238 // Required for messaging framework
239 $eventdata->component = 'mod_lesson';
240 $eventdata->name = 'graded_essay';
242 message_send($eventdata);
243 $essayinfo->sent = 1;
244 $attempt->useranswer = serialize($essayinfo);
245 $DB->update_record('lesson_attempts', $attempt);
246 // Log it
247 add_to_log($course->id, 'lesson', 'update email essay grade', "essay.php?id=$cm->id", format_string($pages[$attempt->pageid]->title,true).': '.fullname($users[$attempt->userid]), $cm->id);
250 $lesson->add_message(get_string('emailsuccess', 'lesson'), 'notifysuccess');
251 redirect(new moodle_url('/mod/lesson/essay.php', array('id'=>$cm->id)));
252 break;
253 case 'display': // Default view - get the necessary data
254 default:
255 // Get lesson pages that are essay
256 $pages = $lesson->load_all_pages();
257 foreach ($pages as $key=>$page) {
258 if ($page->qtype !== LESSON_PAGE_ESSAY) {
259 unset($pages[$key]);
262 if (count($pages) > 0) {
263 $params = array ("lessonid" => $lesson->id, "qtype" => LESSON_PAGE_ESSAY);
264 // Get only the attempts that are in response to essay questions
265 list($usql, $parameters) = $DB->get_in_or_equal(array_keys($pages));
266 if ($essayattempts = $DB->get_records_select('lesson_attempts', 'pageid '.$usql, $parameters)) {
267 // Get all the users who have taken this lesson, order by their last name
268 $ufields = user_picture::fields('u');
269 list($sort, $sortparams) = users_order_by_sql('u');
270 $params = array_merge($params, $sortparams);
271 if (!empty($cm->groupingid)) {
272 $params["groupingid"] = $cm->groupingid;
273 $sql = "SELECT DISTINCT $ufields
274 FROM {lesson_attempts} a
275 INNER JOIN {user} u ON u.id = a.userid
276 INNER JOIN {groups_members} gm ON gm.userid = u.id
277 INNER JOIN {groupings_groups} gg ON gm.groupid = gg.groupid AND gg.groupingid = :groupingid
278 WHERE a.lessonid = :lessonid
279 ORDER BY $sort";
280 } else {
281 $sql = "SELECT DISTINCT $ufields
282 FROM {user} u,
283 {lesson_attempts} a
284 WHERE a.lessonid = :lessonid and
285 u.id = a.userid
286 ORDER BY $sort";
288 if (!$users = $DB->get_records_sql($sql, $params)) {
289 $mode = 'none'; // not displaying anything
290 $lesson->add_message(get_string('noonehasanswered', 'lesson'));
292 } else {
293 $mode = 'none'; // not displaying anything
294 $lesson->add_message(get_string('noonehasanswered', 'lesson'));
296 } else {
297 $mode = 'none'; // not displaying anything
298 $lesson->add_message(get_string('noessayquestionsfound', 'lesson'));
300 break;
302 // Log it
303 add_to_log($course->id, 'lesson', 'view grade', "essay.php?id=$cm->id", get_string('manualgrading', 'lesson'), $cm->id);
305 $lessonoutput = $PAGE->get_renderer('mod_lesson');
306 echo $lessonoutput->header($lesson, $cm, 'essay', false, null, get_string('manualgrading', 'lesson'));
308 switch ($mode) {
309 case 'display':
310 // Expects $user, $essayattempts and $pages to be set already
312 // Group all the essays by userid
313 $studentessays = array();
314 foreach ($essayattempts as $essay) {
315 // Not very nice :) but basically
316 // this organizes the essays so we know how many
317 // times a student answered an essay per try and per page
318 $studentessays[$essay->userid][$essay->pageid][$essay->retry][] = $essay;
321 // Setup table
322 $table = new html_table();
323 $table->head = array(get_string('name'), get_string('essays', 'lesson'), get_string('email', 'lesson'));
324 $table->attributes['class'] = 'standardtable generaltable';
325 $table->align = array('left', 'left', 'left');
326 $table->wrap = array('nowrap', 'nowrap', '');
328 // Cycle through all the students
329 foreach (array_keys($studentessays) as $userid) {
330 $studentname = fullname($users[$userid], true);
331 $essaylinks = array();
333 // Number of attempts on the lesson
334 $attempts = $DB->count_records('lesson_grades', array('userid'=>$userid, 'lessonid'=>$lesson->id));
336 // Go through each essay page
337 foreach ($studentessays[$userid] as $page => $tries) {
338 $count = 0;
340 // Go through each attempt per page
341 foreach($tries as $try) {
342 if ($count == $attempts) {
343 break; // Stop displaying essays (attempt not completed)
345 $count++;
347 // Make sure they didn't answer it more than the max number of attmepts
348 if (count($try) > $lesson->maxattempts) {
349 $essay = $try[$lesson->maxattempts-1];
350 } else {
351 $essay = end($try);
354 // Start processing the attempt
355 $essayinfo = unserialize($essay->useranswer);
357 // link for each essay
358 $url = new moodle_url('/mod/lesson/essay.php', array('id'=>$cm->id,'mode'=>'grade','attemptid'=>$essay->id,'sesskey'=>sesskey()));
359 $attributes = array();
360 // Different colors for all the states of an essay (graded, if sent, not graded)
361 if (!$essayinfo->graded) {
362 $attributes['class'] = "graded";
363 } elseif (!$essayinfo->sent) {
364 $attributes['class'] = "sent";
365 } else {
366 $attributes['class'] = "ungraded";
368 $essaylinks[] = html_writer::link($url, userdate($essay->timeseen, get_string('strftimedatetime')).' '.format_string($pages[$essay->pageid]->title,true), $attributes);
371 // email link for this user
372 $url = new moodle_url('/mod/lesson/essay.php', array('id'=>$cm->id,'mode'=>'email','userid'=>$userid,'sesskey'=>sesskey()));
373 $emaillink = html_writer::link($url, get_string('emailgradedessays', 'lesson'));
375 $table->data[] = array($OUTPUT->user_picture($users[$userid], array('courseid'=>$course->id)).$studentname, implode("<br />", $essaylinks), $emaillink);
378 // email link for all users
379 $url = new moodle_url('/mod/lesson/essay.php', array('id'=>$cm->id,'mode'=>'email','sesskey'=>sesskey()));
380 $emailalllink = html_writer::link($url, get_string('emailallgradedessays', 'lesson'));
382 $table->data[] = array(' ', ' ', $emailalllink);
384 echo html_writer::table($table);
385 break;
386 case 'grade':
387 // Grading form
388 // Expects the following to be set: $attemptid, $answer, $user, $page, $attempt
389 $essayinfo = unserialize($attempt->useranswer);
390 $currentpage = $lesson->load_page($attempt->pageid);
392 $mform = new essay_grading_form(null, array('scoreoptions'=>$scoreoptions, 'user'=>$user));
393 $data = new stdClass;
394 $data->id = $cm->id;
395 $data->attemptid = $attemptid;
396 $data->score = $essayinfo->score;
397 $data->question = format_string($currentpage->contents, $currentpage->contentsformat);
398 $data->studentanswer = format_string($essayinfo->answer, $essayinfo->answerformat);
399 $data->response = $essayinfo->response;
400 $mform->set_data($data);
402 $mform->display();
403 break;
406 echo $OUTPUT->footer();