. /** * Base class for the table used by a {@link quiz_attempts_report}. * * @package mod_quiz * @copyright 2010 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); require_once($CFG->libdir.'/tablelib.php'); /** * Base class for the table used by a {@link quiz_attempts_report}. * * @copyright 2010 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ abstract class quiz_attempts_report_table extends table_sql { public $useridfield = 'userid'; /** @var moodle_url the URL of this report. */ protected $reporturl; /** @var array the display options. */ protected $displayoptions; /** * @var array information about the latest step of each question. * Loaded by {@link load_question_latest_steps()}, if applicable. */ protected $lateststeps = null; /** @var object the quiz settings for the quiz we are reporting on. */ protected $quiz; /** @var context the quiz context. */ protected $context; /** @var string HTML fragment to select the first/best/last attempt, if appropriate. */ protected $qmsubselect; /** @var object mod_quiz_attempts_report_options the options affecting this report. */ protected $options; /** @var object the ids of the students in the currently selected group, if applicable. */ protected $groupstudents; /** @var object the ids of the students in the course. */ protected $students; /** @var object the questions that comprise this quiz.. */ protected $questions; /** @var bool whether to include the column with checkboxes to select each attempt. */ protected $includecheckboxes; /** * Constructor * @param string $uniqueid * @param object $quiz * @param context $context * @param string $qmsubselect * @param mod_quiz_attempts_report_options $options * @param array $groupstudents * @param array $students * @param array $questions * @param moodle_url $reporturl */ public function __construct($uniqueid, $quiz, $context, $qmsubselect, mod_quiz_attempts_report_options $options, $groupstudents, $students, $questions, $reporturl) { parent::__construct($uniqueid); $this->quiz = $quiz; $this->context = $context; $this->qmsubselect = $qmsubselect; $this->groupstudents = $groupstudents; $this->students = $students; $this->questions = $questions; $this->includecheckboxes = $options->checkboxcolumn; $this->reporturl = $reporturl; $this->options = $options; } /** * Generate the display of the checkbox column. * @param object $attempt the table row being output. * @return string HTML content to go inside the td. */ public function col_checkbox($attempt) { if ($attempt->attempt) { return ''; } else { return ''; } } /** * Generate the display of the user's picture column. * @param object $attempt the table row being output. * @return string HTML content to go inside the td. */ public function col_picture($attempt) { global $OUTPUT; $user = new stdClass(); $additionalfields = explode(',', user_picture::fields()); $user = username_load_fields_from_object($user, $attempt, null, $additionalfields); $user->id = $attempt->userid; return $OUTPUT->user_picture($user); } /** * Generate the display of the user's full name column. * @param object $attempt the table row being output. * @return string HTML content to go inside the td. */ public function col_fullname($attempt) { $html = parent::col_fullname($attempt); if ($this->is_downloading() || empty($attempt->attempt)) { return $html; } return $html . html_writer::empty_tag('br') . html_writer::link( new moodle_url('/mod/quiz/review.php', array('attempt' => $attempt->attempt)), get_string('reviewattempt', 'quiz'), array('class' => 'reviewlink')); } /** * Generate the display of the attempt state column. * @param object $attempt the table row being output. * @return string HTML content to go inside the td. */ public function col_state($attempt) { if (!is_null($attempt->attempt)) { return quiz_attempt::state_name($attempt->state); } else { return '-'; } } /** * Generate the display of the start time column. * @param object $attempt the table row being output. * @return string HTML content to go inside the td. */ public function col_timestart($attempt) { if ($attempt->attempt) { return userdate($attempt->timestart, $this->strtimeformat); } else { return '-'; } } /** * Generate the display of the finish time column. * @param object $attempt the table row being output. * @return string HTML content to go inside the td. */ public function col_timefinish($attempt) { if ($attempt->attempt && $attempt->timefinish) { return userdate($attempt->timefinish, $this->strtimeformat); } else { return '-'; } } /** * Generate the display of the time taken column. * @param object $attempt the table row being output. * @return string HTML content to go inside the td. */ public function col_duration($attempt) { if ($attempt->timefinish) { return format_time($attempt->timefinish - $attempt->timestart); } else { return '-'; } } /** * Generate the display of the feedback column. * @param object $attempt the table row being output. * @return string HTML content to go inside the td. */ public function col_feedbacktext($attempt) { if ($attempt->state != quiz_attempt::FINISHED) { return '-'; } $feedback = quiz_report_feedback_for_grade( quiz_rescale_grade($attempt->sumgrades, $this->quiz, false), $this->quiz->id, $this->context); if ($this->is_downloading()) { $feedback = strip_tags($feedback); } return $feedback; } public function get_row_class($attempt) { if ($this->qmsubselect && $attempt->gradedattempt) { return 'gradedattempt'; } else { return ''; } } /** * Make a link to review an individual question in a popup window. * * @param string $data HTML fragment. The text to make into the link. * @param object $attempt data for the row of the table being output. * @param int $slot the number used to identify this question within this usage. */ public function make_review_link($data, $attempt, $slot) { global $OUTPUT; $flag = ''; if ($this->is_flagged($attempt->usageid, $slot)) { $flag = $OUTPUT->pix_icon('i/flagged', get_string('flagged', 'question'), 'moodle', array('class' => 'questionflag')); } $feedbackimg = ''; $state = $this->slot_state($attempt, $slot); if ($state->is_finished() && $state != question_state::$needsgrading) { $feedbackimg = $this->icon_for_fraction($this->slot_fraction($attempt, $slot)); } $output = html_writer::tag('span', $feedbackimg . html_writer::tag('span', $data, array('class' => $state->get_state_class(true))) . $flag, array('class' => 'que')); $reviewparams = array('attempt' => $attempt->attempt, 'slot' => $slot); if (isset($attempt->try)) { $reviewparams['step'] = $this->step_no_for_try($attempt->usageid, $slot, $attempt->try); } $url = new moodle_url('/mod/quiz/reviewquestion.php', $reviewparams); $output = $OUTPUT->action_link($url, $output, new popup_action('click', $url, 'reviewquestion', array('height' => 450, 'width' => 650)), array('title' => get_string('reviewresponse', 'quiz'))); return $output; } /** * @param object $attempt the row data * @param int $slot * @return question_state */ protected function slot_state($attempt, $slot) { $stepdata = $this->lateststeps[$attempt->usageid][$slot]; return question_state::get($stepdata->state); } /** * @param int $questionusageid * @param int $slot * @return bool */ protected function is_flagged($questionusageid, $slot) { $stepdata = $this->lateststeps[$questionusageid][$slot]; return $stepdata->flagged; } /** * @param object $attempt the row data * @param int $slot * @return float */ protected function slot_fraction($attempt, $slot) { $stepdata = $this->lateststeps[$attempt->usageid][$slot]; return $stepdata->fraction; } /** * Return an appropriate icon (green tick, red cross, etc.) for a grade. * @param float $fraction grade on a scale 0..1. * @return string html fragment. */ protected function icon_for_fraction($fraction) { global $OUTPUT; $feedbackclass = question_state::graded_state_for_fraction($fraction)->get_feedback_class(); return $OUTPUT->pix_icon('i/grade_' . $feedbackclass, get_string($feedbackclass, 'question'), 'moodle', array('class' => 'icon')); } /** * Load any extra data after main query. At this point you can call {@link get_qubaids_condition} to get the condition that * limits the query to just the question usages shown in this report page or alternatively for all attempts if downloading a * full report. */ protected function load_extra_data() { $this->lateststeps = $this->load_question_latest_steps(); } /** * Load information about the latest state of selected questions in selected attempts. * * The results are returned as an two dimensional array $qubaid => $slot => $dataobject * * @param qubaid_condition|null $qubaids used to restrict which usages are included * in the query. See {@link qubaid_condition}. * @return array of records. See the SQL in this function to see the fields available. */ protected function load_question_latest_steps(qubaid_condition $qubaids = null) { if ($qubaids === null) { $qubaids = $this->get_qubaids_condition(); } $dm = new question_engine_data_mapper(); $latesstepdata = $dm->load_questions_usages_latest_steps( $qubaids, array_keys($this->questions)); $lateststeps = array(); foreach ($latesstepdata as $step) { $lateststeps[$step->questionusageid][$step->slot] = $step; } return $lateststeps; } /** * Does this report require loading any more data after the main query. After the main query then * you can use $this->get * * @return bool should {@link query_db()} call {@link load_extra_data}? */ protected function requires_extra_data() { return $this->requires_latest_steps_loaded(); } /** * Does this report require the detailed information for each question from the * question_attempts_steps table? * @return bool should {@link load_extra_data} call {@link load_question_latest_steps}? */ protected function requires_latest_steps_loaded() { return false; } /** * Is this a column that depends on joining to the latest state information? * If so, return the corresponding slot. If not, return false. * @param string $column a column name * @return int false if no, else a slot. */ protected function is_latest_step_column($column) { return false; } /** * Get any fields that might be needed when sorting on date for a particular slot. * @param int $slot the slot for the column we want. * @param string $alias the table alias for latest state information relating to that slot. */ protected function get_required_latest_state_fields($slot, $alias) { return ''; } /** * Contruct all the parts of the main database query. * @param array $reportstudents list if userids of users to include in the report. * @return array with 4 elements ($fields, $from, $where, $params) that can be used to * build the actual database query. */ public function base_sql($reportstudents) { global $DB; $fields = $DB->sql_concat('u.id', "'#'", 'COALESCE(quiza.attempt, 0)') . ' AS uniqueid,'; if ($this->qmsubselect) { $fields .= "\n(CASE WHEN $this->qmsubselect THEN 1 ELSE 0 END) AS gradedattempt,"; } $extrafields = get_extra_user_fields_sql($this->context, 'u', '', array('id', 'idnumber', 'firstname', 'lastname', 'picture', 'imagealt', 'institution', 'department', 'email')); $allnames = get_all_user_name_fields(true, 'u'); $fields .= ' quiza.uniqueid AS usageid, quiza.id AS attempt, u.id AS userid, u.idnumber, ' . $allnames . ', u.picture, u.imagealt, u.institution, u.department, u.email' . $extrafields . ', quiza.state, quiza.sumgrades, quiza.timefinish, quiza.timestart, CASE WHEN quiza.timefinish = 0 THEN null WHEN quiza.timefinish > quiza.timestart THEN quiza.timefinish - quiza.timestart ELSE 0 END AS duration'; // To explain that last bit, timefinish can be non-zero and less // than timestart when you have two load-balanced servers with very // badly synchronised clocks, and a student does a really quick attempt. // This part is the same for all cases. Join the users and quiz_attempts tables. $from = "\n{user} u"; $from .= "\nLEFT JOIN {quiz_attempts} quiza ON quiza.userid = u.id AND quiza.quiz = :quizid"; $params = array('quizid' => $this->quiz->id); if ($this->qmsubselect && $this->options->onlygraded) { $from .= " AND (quiza.state <> :finishedstate OR $this->qmsubselect)"; $params['finishedstate'] = quiz_attempt::FINISHED; } switch ($this->options->attempts) { case quiz_attempts_report::ALL_WITH: // Show all attempts, including students who are no longer in the course. $where = 'quiza.id IS NOT NULL AND quiza.preview = 0'; break; case quiz_attempts_report::ENROLLED_WITH: // Show only students with attempts. list($usql, $uparams) = $DB->get_in_or_equal( $reportstudents, SQL_PARAMS_NAMED, 'u'); $params += $uparams; $where = "u.id $usql AND quiza.preview = 0 AND quiza.id IS NOT NULL"; break; case quiz_attempts_report::ENROLLED_WITHOUT: // Show only students without attempts. list($usql, $uparams) = $DB->get_in_or_equal( $reportstudents, SQL_PARAMS_NAMED, 'u'); $params += $uparams; $where = "u.id $usql AND quiza.id IS NULL"; break; case quiz_attempts_report::ENROLLED_ALL: // Show all students with or without attempts. list($usql, $uparams) = $DB->get_in_or_equal( $reportstudents, SQL_PARAMS_NAMED, 'u'); $params += $uparams; $where = "u.id $usql AND (quiza.preview = 0 OR quiza.preview IS NULL)"; break; } if ($this->options->states) { list($statesql, $stateparams) = $DB->get_in_or_equal($this->options->states, SQL_PARAMS_NAMED, 'state'); $params += $stateparams; $where .= " AND (quiza.state $statesql OR quiza.state IS NULL)"; } return array($fields, $from, $where, $params); } /** * Add the information about the latest state of the question with slot * $slot to the query. * * The extra information is added as a join to a * 'table' with alias qa$slot, with columns that are a union of * the columns of the question_attempts and question_attempts_states tables. * * @param int $slot the question to add information for. */ protected function add_latest_state_join($slot) { $alias = 'qa' . $slot; $fields = $this->get_required_latest_state_fields($slot, $alias); if (!$fields) { return; } // This condition roughly filters the list of attempts to be considered. // It is only used in a subselect to help crappy databases (see MDL-30122) // therefore, it is better to use a very simple join, which may include // too many records, than to do a super-accurate join. $qubaids = new qubaid_join("{quiz_attempts} {$alias}quiza", "{$alias}quiza.uniqueid", "{$alias}quiza.quiz = :{$alias}quizid", array("{$alias}quizid" => $this->sql->params['quizid'])); $dm = new question_engine_data_mapper(); list($inlineview, $viewparams) = $dm->question_attempt_latest_state_view($alias, $qubaids); $this->sql->fields .= ",\n$fields"; $this->sql->from .= "\nLEFT JOIN $inlineview ON " . "$alias.questionusageid = quiza.uniqueid AND $alias.slot = :{$alias}slot"; $this->sql->params[$alias . 'slot'] = $slot; $this->sql->params = array_merge($this->sql->params, $viewparams); } /** * Get an appropriate qubaid_condition for loading more data about the * attempts we are displaying. * @return qubaid_condition */ protected function get_qubaids_condition() { if (is_null($this->rawdata)) { throw new coding_exception( 'Cannot call get_qubaids_condition until the main data has been loaded.'); } if ($this->is_downloading()) { // We want usages for all attempts. return new qubaid_join($this->sql->from, 'quiza.uniqueid', $this->sql->where, $this->sql->params); } $qubaids = array(); foreach ($this->rawdata as $attempt) { if ($attempt->usageid > 0) { $qubaids[] = $attempt->usageid; } } return new qubaid_list($qubaids); } public function query_db($pagesize, $useinitialsbar = true) { $doneslots = array(); foreach ($this->get_sort_columns() as $column => $notused) { $slot = $this->is_latest_step_column($column); if ($slot && !in_array($slot, $doneslots)) { $this->add_latest_state_join($slot); $doneslots[] = $slot; } } parent::query_db($pagesize, $useinitialsbar); if ($this->requires_extra_data()) { $this->load_extra_data(); } } public function get_sort_columns() { // Add attemptid as a final tie-break to the sort. This ensures that // Attempts by the same student appear in order when just sorting by name. $sortcolumns = parent::get_sort_columns(); $sortcolumns['quiza.id'] = SORT_ASC; return $sortcolumns; } public function wrap_html_start() { if ($this->is_downloading() || !$this->includecheckboxes) { return; } $url = $this->options->get_url(); $url->param('sesskey', sesskey()); echo '