. /** * Classes to enforce the various access rules that can apply to a quiz. * * @package mod * @subpackage quiz * @copyright 2009 Tim Hunt * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * This class keeps track of the various access rules that apply to a particular * quiz, with convinient methods for seeing whether access is allowed. * * @copyright 2009 Tim Hunt * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class quiz_access_manager { /** @var quiz the quiz settings object. */ protected $quizobj; /** @var int the time to be considered as 'now'. */ protected $timenow; /** @var array of quiz_access_rule_base. */ protected $rules = array(); /** * Create an instance for a particular quiz. * @param object $quizobj An instance of the class quiz from attemptlib.php. * The quiz we will be controlling access to. * @param int $timenow The time to use as 'now'. * @param bool $canignoretimelimits Whether this user is exempt from time * limits (has_capability('mod/quiz:ignoretimelimits', ...)). */ public function __construct($quizobj, $timenow, $canignoretimelimits) { $this->quizobj = $quizobj; $this->timenow = $timenow; $this->rules = $this->make_rules($quizobj, $timenow, $canignoretimelimits); } /** * Make all the rules relevant to a particular quiz. * @param quiz $quizobj information about the quiz in question. * @param int $timenow the time that should be considered as 'now'. * @param bool $canignoretimelimits whether the current user is exempt from * time limits by the mod/quiz:ignoretimelimits capability. * @return array of {@link quiz_access_rule_base}s. */ protected function make_rules($quizobj, $timenow, $canignoretimelimits) { $rules = array(); foreach (self::get_rule_classes() as $ruleclass) { $rule = $ruleclass::make($quizobj, $timenow, $canignoretimelimits); if ($rule) { $rules[$ruleclass] = $rule; } } $superceededrules = array(); foreach ($rules as $rule) { $superceededrules += $rule->get_superceded_rules(); } foreach ($superceededrules as $superceededrule) { unset($rules['quizaccess_' . $superceededrule]); } return $rules; } /** * @return array of all the installed rule class names. */ protected static function get_rule_classes() { return get_plugin_list_with_class('quizaccess', '', 'rule.php'); } /** * Add any form fields that the access rules require to the settings form. * * Note that the standard plugins do not use this mechanism, becuase all their * settings are stored in the quiz table. * * @param mod_quiz_mod_form $quizform the quiz settings form that is being built. * @param MoodleQuickForm $mform the wrapped MoodleQuickForm. */ public static function add_settings_form_fields( mod_quiz_mod_form $quizform, MoodleQuickForm $mform) { foreach (self::get_rule_classes() as $rule) { $rule::add_settings_form_fields($quizform, $mform); } } /** * The the options for the Browser security settings menu. * * @return array key => lang string. */ public static function get_browser_security_choices() { $options = array('-' => get_string('none', 'quiz')); foreach (self::get_rule_classes() as $rule) { $options += $rule::get_browser_security_choices(); } return $options; } /** * Save any submitted settings when the quiz settings form is submitted. * * Note that the standard plugins do not use this mechanism, becuase all their * settings are stored in the quiz table. * * @param object $quiz the data from the quiz form, including $quiz->id * which is the is of the quiz being saved. */ public static function save_settings($quiz) { foreach (self::get_rule_classes() as $rule) { $rule::save_settings($quiz); } } /** * Build the SQL for loading all the access settings in one go. * @param int $quizid the quiz id. * @param string $basefields initial part of the select list. * @return array with two elements, the sql and the placeholder values. * If $basefields is '' then you must allow for the possibility that * there is no data to load, in which case this method returns $sql = ''. */ protected static function get_load_sql($quizid, $rules, $basefields) { $allfields = $basefields; $alljoins = '{quiz} quiz'; $allparams = array('quizid' => $quizid); foreach ($rules as $rule) { list($fields, $joins, $params) = $rule::get_settings_sql($quizid); if ($fields) { if ($allfields) { $allfields .= ', '; } $allfields .= $fields; } if ($joins) { $alljoins .= ' ' . $joins; } if ($params) { $allparams += $params; } } if ($allfields === '') { return array('', array()); } return array("SELECT $allfields FROM $alljoins WHERE quiz.id = :quizid", $allparams); } /** * Load any settings required by the access rules. We try to do this with * a single DB query. * * Note that the standard plugins do not use this mechanism, becuase all their * settings are stored in the quiz table. * * @param int $quizid the quiz id. * @return array setting value name => value. The value names should all * start with the name of the corresponding plugin to avoid collisions. */ public static function load_settings($quizid) { global $DB; $rules = self::get_rule_classes(); list($sql, $params) = self::get_load_sql($quizid, $rules, ''); if ($sql) { $data = (array) $DB->get_record_sql($sql, $params); } else { $data = array(); } foreach ($rules as $rule) { $data += $rule::get_extra_settings($quizid); } return $data; } /** * Load the quiz settings and any settings required by the access rules. * We try to do this with a single DB query. * * Note that the standard plugins do not use this mechanism, becuase all their * settings are stored in the quiz table. * * @param int $quizid the quiz id. * @return object mdl_quiz row with extra fields. */ public static function load_quiz_and_settings($quizid) { global $DB; $rules = self::get_rule_classes(); list($sql, $params) = self::get_load_sql($quizid, $rules, 'quiz.*'); $quiz = $DB->get_record_sql($sql, $params, MUST_EXIST); foreach ($rules as $rule) { foreach ($rule::get_extra_settings($quizid) as $name => $value) { $quiz->$name = $value; } } return $quiz; } /** * @return array the class names of all the active rules. Mainly useful for * debugging. */ public function get_active_rule_names() { $classnames = array(); foreach ($this->rules as $rule) { $classnames[] = get_class($rule); } return $classnames; } /** * Accumulates an array of messages. * @param array $messages the current list of messages. * @param string|array $new the new messages or messages. * @return array the updated array of messages. */ protected function accumulate_messages($messages, $new) { if (is_array($new)) { $messages = array_merge($messages, $new); } else if (is_string($new) && $new) { $messages[] = $new; } return $messages; } /** * Provide a description of the rules that apply to this quiz, such * as is shown at the top of the quiz view page. Note that not all * rules consider themselves important enough to output a description. * * @return array an array of description messages which may be empty. It * would be sensible to output each one surrounded by <p> tags. */ public function describe_rules() { $result = array(); foreach ($this->rules as $rule) { $result = $this->accumulate_messages($result, $rule->description()); } return $result; } /** * Whether or not a user should be allowed to start a new attempt at this quiz now. * If there are any restrictions in force now, return an array of reasons why access * should be blocked. If access is OK, return false. * * @param int $numattempts the number of previous attempts this user has made. * @param object|false $lastattempt information about the user's last completed attempt. * if there is not a previous attempt, the false is passed. * @return mixed An array of reason why access is not allowed, or an empty array * (== false) if access should be allowed. */ public function prevent_new_attempt($numprevattempts, $lastattempt) { $reasons = array(); foreach ($this->rules as $rule) { $reasons = $this->accumulate_messages($reasons, $rule->prevent_new_attempt($numprevattempts, $lastattempt)); } return $reasons; } /** * Whether the user should be blocked from starting a new attempt or continuing * an attempt now. If there are any restrictions in force now, return an array * of reasons why access should be blocked. If access is OK, return false. * * @return mixed An array of reason why access is not allowed, or an empty array * (== false) if access should be allowed. */ public function prevent_access() { $reasons = array(); foreach ($this->rules as $rule) { $reasons = $this->accumulate_messages($reasons, $rule->prevent_access()); } return $reasons; } /** * @param int|null $attemptid the id of the current attempt, if there is one, * otherwise null. * @return bool whether a check is required before the user starts/continues * their attempt. */ public function is_preflight_check_required($attemptid) { foreach ($this->rules as $rule) { if ($rule->is_preflight_check_required($attemptid)) { return true; } } return false; } /** * Build the form required to do the pre-flight checks. * @param moodle_url $url the form action URL. * @param int|null $attemptid the id of the current attempt, if there is one, * otherwise null. * @return mod_quiz_preflight_check_form the form. */ public function get_preflight_check_form(moodle_url $url, $attemptid) { return new mod_quiz_preflight_check_form($url->out_omit_querystring(), array('rules' => $this->rules, 'quizobj' => $this->quizobj, 'attemptid' => $attemptid, 'hidden' => $url->params())); } /** * The pre-flight check has passed. This is a chance to record that fact in * some way. * @param int|null $attemptid the id of the current attempt, if there is one, * otherwise null. */ public function notify_preflight_check_passed($attemptid) { foreach ($this->rules as $rule) { $rule->notify_preflight_check_passed($attemptid); } } /** * Inform the rules that the current attempt is finished. This is use, for example * by the password rule, to clear the flag in the session. */ public function current_attempt_finished() { foreach ($this->rules as $rule) { $rule->current_attempt_finished(); } } /** * Do any of the rules mean that this student will no be allowed any further attempts at this * quiz. Used, for example, to change the label by the grade displayed on the view page from * 'your current grade is' to 'your final grade is'. * * @param int $numattempts the number of previous attempts this user has made. * @param object $lastattempt information about the user's last completed attempt. * @return bool true if there is no way the user will ever be allowed to attempt * this quiz again. */ public function is_finished($numprevattempts, $lastattempt) { foreach ($this->rules as $rule) { if ($rule->is_finished($numprevattempts, $lastattempt)) { return true; } } return false; } /** * Sets up the attempt (review or summary) page with any properties required * by the access rules. * * @param moodle_page $page the page object to initialise. */ public function setup_attempt_page($page) { foreach ($this->rules as $rule) { $rule->setup_attempt_page($page); } } /** * Will cause the attempt time to start counting down after the page has loaded, * if that is necessary. * * @param object $attempt the data from the relevant quiz_attempts row. * @param int $timenow the time to consider as 'now'. * @param mod_quiz_renderer $output the quiz renderer. */ public function show_attempt_timer_if_needed($attempt, $timenow, $output) { $timeleft = false; foreach ($this->rules as $rule) { $ruletimeleft = $rule->time_left($attempt, $timenow); if ($ruletimeleft !== false && ($timeleft === false || $ruletimeleft < $timeleft)) { $timeleft = $ruletimeleft; } } if ($timeleft !== false) { // Make sure the timer starts just above zero. If $timeleft was <= 0, then // this will just have the effect of causing the quiz to be submitted immediately. $timerstartvalue = max($timeleft, 1); $output->initialise_timer($timerstartvalue); } } /** * @return bolean if this quiz should only be shown to students in a popup window. */ public function attempt_must_be_in_popup() { foreach ($this->rules as $rule) { if ($rule->attempt_must_be_in_popup()) { return true; } } return false; } /** * @return array any options that are required for showing the attempt page * in a popup window. */ public function get_popup_options() { $options = array(); foreach ($this->rules as $rule) { $options += $rule->get_popup_options(); } return $options; } /** * Send the user back to the quiz view page. Normally this is just a redirect, but * If we were in a secure window, we close this window, and reload the view window we came from. * * This method does not return; * * @param mod_quiz_renderer $output the quiz renderer. * @param string $message optional message to output while redirecting. */ public function back_to_view_page($output, $message = '') { if ($this->attempt_must_be_in_popup()) { echo $output->close_attempt_popup($this->quizobj->view_url(), $message); die(); } else { redirect($this->quizobj->view_url(), $message); } } /** * Make some text into a link to review the quiz, if that is appropriate. * * @param string $linktext some text. * @param object $attempt the attempt object * @return string some HTML, the $linktext either unmodified or wrapped in a * link to the review page. */ public function make_review_link($attempt, $reviewoptions, $output) { // If review of responses is not allowed, or the attempt is still open, don't link. if (!$attempt->timefinish) { return $output->no_review_message(''); } $when = quiz_attempt_state($this->quizobj->get_quiz(), $attempt); $reviewoptions = mod_quiz_display_options::make_from_quiz( $this->quizobj->get_quiz(), $when); if (!$reviewoptions->attempt) { return $output->no_review_message($this->quizobj->cannot_review_message($when, true)); } else { return $output->review_link($this->quizobj->review_url($attempt->id), $this->attempt_must_be_in_popup(), $this->get_popup_options()); } } }