2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Guest access plugin.
20 * This plugin does not add any entries into the user_enrolments table,
21 * the access control is granted on the fly via the tricks in require_login().
23 * @package enrol_guest
24 * @copyright 2010 Petr Skoda {@link http://skodak.org}
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 defined('MOODLE_INTERNAL') ||
die();
31 * Class enrol_guest_plugin
33 * @copyright 2010 Petr Skoda {@link http://skodak.org}
34 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
36 class enrol_guest_plugin
extends enrol_plugin
{
39 * Returns optional enrolment information icons.
41 * This is used in course list for quick overview of enrolment options.
43 * We are not using single instance parameter because sometimes
44 * we might want to prevent icon repetition when multiple instances
45 * of one type exist. One instance may also produce several icons.
47 * @param array $instances all enrol instances of this type in one course
48 * @return array of pix_icon
50 public function get_info_icons(array $instances) {
51 foreach ($instances as $instance) {
52 if ($instance->password
!== '') {
53 return array(new pix_icon('withpassword', get_string('guestaccess_withpassword', 'enrol_guest'), 'enrol_guest'));
55 return array(new pix_icon('withoutpassword', get_string('guestaccess_withoutpassword', 'enrol_guest'), 'enrol_guest'));
61 * Enrol a user using a given enrolment instance.
63 * @param stdClass $instance
66 * @param int $timestart
69 * @param null $recovergrades
71 public function enrol_user(stdClass
$instance, $userid, $roleid = null, $timestart = 0, $timeend = 0, $status = null, $recovergrades = null) {
72 // no real enrolments here!
77 * Enrol a user from a given enrolment instance.
79 * @param stdClass $instance
82 public function unenrol_user(stdClass
$instance, $userid) {
83 // nothing to do, we never enrol here!
88 * Attempt to automatically gain temporary guest access to course,
89 * calling code has to make sure the plugin and instance are active.
91 * @param stdClass $instance course enrol instance
92 * @return bool|int false means no guest access, integer means end of cached time
94 public function try_guestaccess(stdClass
$instance) {
99 if ($instance->password
=== '') {
102 } else if (isset($USER->enrol_guest_passwords
[$instance->id
])) { // this is a hack, ideally we should not add stuff to $USER...
103 if ($USER->enrol_guest_passwords
[$instance->id
] === $instance->password
) {
106 } else if (WS_SERVER
) { // Mobile app mostly.
107 $storedpass = get_user_preferences('enrol_guest_ws_password_'. $instance->id
);
108 // We check first if there is a supplied password.
109 if (!is_null($storedpass)) {
110 $allow = $storedpass === $instance->password
;
113 // Reset, probably the course password was changed.
114 unset_user_preference('enrol_guest_ws_password_' . $instance->id
);
120 // Temporarily assign them some guest role for this context
121 $context = context_course
::instance($instance->courseid
);
122 load_temp_course_role($context, $CFG->guestroleid
);
123 return ENROL_MAX_TIMESTAMP
;
130 * Returns true if the current user can add a new instance of enrolment plugin in course.
131 * @param int $courseid
134 public function can_add_instance($courseid) {
137 $context = context_course
::instance($courseid, MUST_EXIST
);
139 if (!has_capability('moodle/course:enrolconfig', $context) or !has_capability('enrol/guest:config', $context)) {
143 if ($DB->record_exists('enrol', array('courseid'=>$courseid, 'enrol'=>'guest'))) {
151 * Creates course enrol form, checks if form submitted
152 * and enrols user if necessary. It can also redirect.
154 * @param stdClass $instance
155 * @return string html text, usually a form in a text box
157 public function enrol_page_hook(stdClass
$instance) {
158 global $CFG, $OUTPUT, $SESSION, $USER;
160 if ($instance->password
=== '') {
164 if (isset($USER->enrol
['tempguest'][$instance->courseid
]) and $USER->enrol
['tempguest'][$instance->courseid
] > time()) {
165 // no need to show the guest access when user can already enter course as guest
169 require_once("$CFG->dirroot/enrol/guest/locallib.php");
170 $form = new enrol_guest_enrol_form(NULL, $instance);
171 $instanceid = optional_param('instance', 0, PARAM_INT
);
173 if ($instance->id
== $instanceid) {
174 if ($data = $form->get_data()) {
176 $context = context_course
::instance($instance->courseid
);
177 $USER->enrol_guest_passwords
[$instance->id
] = $data->guestpassword
; // this is a hack, ideally we should not add stuff to $USER...
178 if (isset($USER->enrol
['tempguest'][$instance->courseid
])) {
179 remove_temp_course_roles($context);
181 load_temp_course_role($context, $CFG->guestroleid
);
182 $USER->enrol
['tempguest'][$instance->courseid
] = ENROL_MAX_TIMESTAMP
;
184 // go to the originally requested page
185 if (!empty($SESSION->wantsurl
)) {
186 $destination = $SESSION->wantsurl
;
187 unset($SESSION->wantsurl
);
189 $destination = "$CFG->wwwroot/course/view.php?id=$instance->courseid";
191 redirect($destination);
197 $output = ob_get_clean();
199 return $OUTPUT->box($output, 'generalbox');
203 * Called after updating/inserting course.
205 * @param bool $inserted true if course just inserted
206 * @param object $course
207 * @param object $data form data
210 public function course_updated($inserted, $course, $data) {
214 if (isset($data->enrol_guest_status_0
)) {
215 $fields = array('status'=>$data->enrol_guest_status_0
);
216 if ($fields['status'] == ENROL_INSTANCE_ENABLED
) {
217 $fields['password'] = $data->enrol_guest_password_0
;
219 if ($this->get_config('requirepassword')) {
220 $fields['password'] = generate_password(20);
223 $this->add_instance($course, $fields);
225 if ($this->get_config('defaultenrol')) {
226 $this->add_default_instance($course);
231 $instances = $DB->get_records('enrol', array('courseid'=>$course->id
, 'enrol'=>'guest'));
232 foreach ($instances as $instance) {
235 if (isset($data->{'enrol_guest_status_'.$i})) {
236 $reset = ($instance->status
!= $data->{'enrol_guest_status_'.$i});
238 $instance->status
= $data->{'enrol_guest_status_'.$i};
239 $instance->timemodified
= time();
240 if ($instance->status
== ENROL_INSTANCE_ENABLED
) {
241 if ($instance->password
!== $data->{'enrol_guest_password_'.$i}) {
244 $instance->password
= $data->{'enrol_guest_password_'.$i};
246 $DB->update_record('enrol', $instance);
247 \core\event\enrol_instance_updated
::create_from_record($instance)->trigger();
250 $context = context_course
::instance($course->id
);
251 $context->mark_dirty();
259 * Add new instance of enrol plugin.
260 * @param object $course
261 * @param array instance fields
262 * @return int id of new instance, null if can not be created
264 public function add_instance($course, array $fields = NULL) {
265 $fields = (array)$fields;
267 if (!isset($fields['password'])) {
268 $fields['password'] = '';
271 return parent
::add_instance($course, $fields);
275 * Add new instance of enrol plugin with default settings.
276 * @param object $course
277 * @return int id of new instance
279 public function add_default_instance($course) {
280 $fields = array('status'=>$this->get_config('status'));
282 if ($this->get_config('requirepassword')) {
283 $fields['password'] = generate_password(20);
286 return $this->add_instance($course, $fields);
290 * Restore instance and map settings.
292 * @param restore_enrolments_structure_step $step
293 * @param stdClass $data
294 * @param stdClass $course
297 public function restore_instance(restore_enrolments_structure_step
$step, stdClass
$data, $course, $oldid) {
300 if (!$DB->record_exists('enrol', array('courseid' => $data->courseid
, 'enrol' => $this->get_name()))) {
301 $this->add_instance($course, (array)$data);
304 // No need to set mapping, we do not restore users or roles here.
305 $step->set_mapping('enrol', $oldid, 0);
309 * Is it possible to delete enrol instance via standard UI?
311 * @param object $instance
314 public function can_delete_instance($instance) {
315 $context = context_course
::instance($instance->courseid
);
316 return has_capability('enrol/guest:config', $context);
320 * Is it possible to hide/show enrol instance via standard UI?
322 * @param stdClass $instance
325 public function can_hide_show_instance($instance) {
326 $context = context_course
::instance($instance->courseid
);
327 if (!has_capability('enrol/guest:config', $context)) {
331 // If the instance is currently disabled, before it can be enabled, we must check whether the password meets the
332 // password policies.
333 if ($instance->status
== ENROL_INSTANCE_DISABLED
) {
334 if ($this->get_config('requirepassword')) {
335 if (empty($instance->password
)) {
340 // Only check the password if it is set.
341 if (!empty($instance->password
) && $this->get_config('usepasswordpolicy')) {
342 if (!check_password_policy($instance->password
, $errmsg)) {
352 * Get default settings for enrol_guest.
356 public function get_instance_defaults() {
358 $fields['status'] = $this->get_config('status');
363 * Return information for enrolment instance containing list of parameters required
364 * for enrolment, name of enrolment plugin etc.
366 * @param stdClass $instance enrolment instance
367 * @return stdClass instance info.
370 public function get_enrol_info(stdClass
$instance) {
372 $instanceinfo = new stdClass();
373 $instanceinfo->id
= $instance->id
;
374 $instanceinfo->courseid
= $instance->courseid
;
375 $instanceinfo->type
= $this->get_name();
376 $instanceinfo->name
= $this->get_instance_name($instance);
377 $instanceinfo->status
= $instance->status
== ENROL_INSTANCE_ENABLED
;
379 // Specifics enrolment method parameters.
380 $instanceinfo->requiredparam
= new stdClass();
381 $instanceinfo->requiredparam
->passwordrequired
= !empty($instance->password
);
383 // If the plugin is enabled, return the URL for obtaining more information.
384 if ($instanceinfo->status
) {
385 $instanceinfo->wsfunction
= 'enrol_guest_get_instance_info';
387 return $instanceinfo;
391 * Return an array of valid options for the status.
395 protected function get_status_options() {
396 $options = array(ENROL_INSTANCE_ENABLED
=> get_string('yes'),
397 ENROL_INSTANCE_DISABLED
=> get_string('no'));
402 * Add elements to the edit instance form.
404 * @param stdClass $instance
405 * @param MoodleQuickForm $mform
406 * @param context $context
409 public function edit_instance_form($instance, MoodleQuickForm
$mform, $context) {
412 $options = $this->get_status_options();
413 $mform->addElement('select', 'status', get_string('status', 'enrol_guest'), $options);
414 $mform->addHelpButton('status', 'status', 'enrol_guest');
415 $mform->setDefault('status', $this->get_config('status'));
416 $mform->setAdvanced('status', $this->get_config('status_adv'));
418 $mform->addElement('passwordunmask', 'password', get_string('password', 'enrol_guest'));
419 $mform->addHelpButton('password', 'password', 'enrol_guest');
421 // If we have a new instance and the password is required - make sure it is set. For existing
422 // instances we do not force the password to be required as it may have been set to empty before
423 // the password was required. We check in the validation function whether this check is required
424 // for existing instances.
425 if (empty($instance->id
) && $this->get_config('requirepassword')) {
426 $mform->addRule('password', get_string('required'), 'required', null);
431 * We are a good plugin and don't invent our own UI/validation code path.
435 public function use_standard_editing_ui() {
440 * Perform custom validation of the data used to edit the instance.
442 * @param array $data array of ("fieldname"=>value) of submitted data
443 * @param array $files array of uploaded files "element_name"=>tmp_file_path
444 * @param object $instance The instance loaded from the DB
445 * @param context $context The context of the instance we are editing
446 * @return array of "element_name"=>"error_description" if there are errors,
447 * or an empty array if everything is OK.
450 public function edit_instance_validation($data, $files, $instance, $context) {
453 $checkpassword = false;
456 // Check the password if we are enabling the plugin again.
457 if (($instance->status
== ENROL_INSTANCE_DISABLED
) && ($data['status'] == ENROL_INSTANCE_ENABLED
)) {
458 $checkpassword = true;
461 // Check the password if the instance is enabled and the password has changed.
462 if (($data['status'] == ENROL_INSTANCE_ENABLED
) && ($instance->password
!== $data['password'])) {
463 $checkpassword = true;
466 $checkpassword = true;
469 if ($checkpassword) {
470 $require = $this->get_config('requirepassword');
471 $policy = $this->get_config('usepasswordpolicy');
472 if ($require && trim($data['password']) === '') {
473 $errors['password'] = get_string('required');
474 } else if (!empty($data['password']) && $policy) {
476 if (!check_password_policy($data['password'], $errmsg)) {
477 $errors['password'] = $errmsg;
482 $validstatus = array_keys($this->get_status_options());
484 'status' => $validstatus
486 $typeerrors = $this->validate_param_types($data, $tovalidate);
487 $errors = array_merge($errors, $typeerrors);
493 * Check if enrolment plugin is supported in csv course upload.
497 public function is_csv_upload_supported(): bool {
502 * Finds matching instances for a given course.
504 * @param array $enrolmentdata enrolment data.
505 * @param int $courseid Course ID.
506 * @return stdClass|null Matching instance
508 public function find_instance(array $enrolmentdata, int $courseid): ?stdClass
{
510 $instances = enrol_get_instances($courseid, false);
512 foreach ($instances as $i) {
513 if ($i->enrol
== 'guest') {
514 // There can be only one guest enrol instance so find first available.
523 * Fill custom fields data for a given enrolment plugin.
525 * @param array $enrolmentdata enrolment data.
526 * @param int $courseid Course ID.
527 * @return array Updated enrolment data with custom fields info.
529 public function fill_enrol_custom_fields(array $enrolmentdata, int $courseid): array {
530 return $enrolmentdata +
['password' => ''];
535 * Get icon mapping for font-awesome.
537 function enrol_guest_get_fontawesome_icon_map() {
539 'enrol_guest:withpassword' => 'fa-key',
540 'enrol_guest:withoutpassword' => 'fa-unlock-alt',