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 * This file contains the User Filter API.
22 * @copyright 1999 Martin Dougiamas http://dougiamas.com
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require_once($CFG->dirroot
.'/user/filters/text.php');
27 require_once($CFG->dirroot
.'/user/filters/date.php');
28 require_once($CFG->dirroot
.'/user/filters/select.php');
29 require_once($CFG->dirroot
.'/user/filters/simpleselect.php');
30 require_once($CFG->dirroot
.'/user/filters/courserole.php');
31 require_once($CFG->dirroot
.'/user/filters/globalrole.php');
32 require_once($CFG->dirroot
.'/user/filters/profilefield.php');
33 require_once($CFG->dirroot
.'/user/filters/yesno.php');
34 require_once($CFG->dirroot
.'/user/filters/anycourses.php');
35 require_once($CFG->dirroot
.'/user/filters/cohort.php');
36 require_once($CFG->dirroot
.'/user/filters/user_filter_forms.php');
37 require_once($CFG->dirroot
.'/user/filters/checkbox.php');
40 * User filtering wrapper class.
42 * @copyright 1999 Martin Dougiamas http://dougiamas.com
43 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
45 class user_filtering
{
48 /** @var \user_add_filter_form */
50 /** @var \user_active_filter_form */
55 * @param array $fieldnames array of visible user fields
56 * @param string $baseurl base url used for submission/return, null if the same of current page
57 * @param array $extraparams extra page parameters
59 public function __construct($fieldnames = null, $baseurl = null, $extraparams = null) {
62 if (!isset($SESSION->user_filtering
)) {
63 $SESSION->user_filtering
= array();
66 if (empty($fieldnames)) {
67 // As a start, add all fields as advanced fields (which are only available after clicking on "Show more").
68 $fieldnames = array('realname' => 1, 'lastname' => 1, 'firstname' => 1, 'username' => 1, 'email' => 1, 'city' => 1,
69 'country' => 1, 'confirmed' => 1, 'suspended' => 1, 'profile' => 1, 'courserole' => 1,
70 'anycourses' => 1, 'systemrole' => 1, 'cohort' => 1, 'firstaccess' => 1, 'lastaccess' => 1,
71 'neveraccessed' => 1, 'timecreated' => 1, 'timemodified' => 1, 'nevermodified' => 1, 'auth' => 1,
72 'mnethostid' => 1, 'idnumber' => 1, 'institution' => 1, 'department' => 1, 'lastip' => 1);
74 // Get the config which filters the admin wanted to show by default.
75 $userfiltersdefault = get_config('core', 'userfiltersdefault');
77 // If the admin did not enable any filter, the form will not make much sense if all fields are hidden behind
78 // "Show more". Thus, we enable the 'realname' filter automatically.
79 if ($userfiltersdefault == '') {
80 $userfiltersdefault = array('realname');
82 // Otherwise, we split the enabled filters into an array.
84 $userfiltersdefault = explode(',', $userfiltersdefault);
87 // Show these fields by default which the admin has enabled in the config.
88 foreach ($userfiltersdefault as $key) {
89 $fieldnames[$key] = 0;
93 $this->_fields
= array();
95 foreach ($fieldnames as $fieldname => $advanced) {
96 if ($field = $this->get_field($fieldname, $advanced)) {
97 $this->_fields
[$fieldname] = $field;
101 // Fist the new filter form.
102 $this->_addform
= new user_add_filter_form($baseurl, array('fields' => $this->_fields
, 'extraparams' => $extraparams));
103 if ($adddata = $this->_addform
->get_data()) {
104 // Clear previous filters.
105 if (!empty($adddata->replacefilters
)) {
106 $SESSION->user_filtering
= [];
110 foreach ($this->_fields
as $fname => $field) {
111 $data = $field->check_data($adddata);
112 if ($data === false) {
113 continue; // Nothing new.
115 if (!array_key_exists($fname, $SESSION->user_filtering
)) {
116 $SESSION->user_filtering
[$fname] = array();
118 $SESSION->user_filtering
[$fname][] = $data;
122 // Now the active filters.
123 $this->_activeform
= new user_active_filter_form($baseurl, array('fields' => $this->_fields
, 'extraparams' => $extraparams));
124 if ($activedata = $this->_activeform
->get_data()) {
125 if (!empty($activedata->removeall
)) {
126 $SESSION->user_filtering
= array();
128 } else if (!empty($activedata->removeselected
) and !empty($activedata->filter
)) {
129 foreach ($activedata->filter
as $fname => $instances) {
130 foreach ($instances as $i => $val) {
134 unset($SESSION->user_filtering
[$fname][$i]);
136 if (empty($SESSION->user_filtering
[$fname])) {
137 unset($SESSION->user_filtering
[$fname]);
143 // Rebuild the forms if filters data was processed.
144 if ($adddata ||
$activedata) {
145 $_POST = []; // Reset submitted data.
146 $this->_addform
= new user_add_filter_form($baseurl, ['fields' => $this->_fields
, 'extraparams' => $extraparams]);
147 $this->_activeform
= new user_active_filter_form($baseurl, ['fields' => $this->_fields
, 'extraparams' => $extraparams]);
152 * Creates known user filter if present
153 * @param string $fieldname
154 * @param boolean $advanced
155 * @return object filter
157 public function get_field($fieldname, $advanced) {
158 global $USER, $CFG, $DB, $SITE;
160 switch ($fieldname) {
161 case 'username': return new user_filter_text('username', get_string('username'), $advanced, 'username');
162 case 'realname': return new user_filter_text('realname', get_string('fullnameuser'), $advanced, $DB->sql_fullname());
163 case 'lastname': return new user_filter_text('lastname', get_string('lastname'), $advanced, 'lastname');
164 case 'firstname': return new user_filter_text('firstname', get_string('firstname'), $advanced, 'firstname');
165 case 'email': return new user_filter_text('email', get_string('email'), $advanced, 'email');
166 case 'city': return new user_filter_text('city', get_string('city'), $advanced, 'city');
167 case 'country': return new user_filter_select('country', get_string('country'), $advanced, 'country', get_string_manager()->get_list_of_countries(), $USER->country
);
168 case 'confirmed': return new user_filter_yesno('confirmed', get_string('confirmed', 'admin'), $advanced, 'confirmed');
169 case 'suspended': return new user_filter_yesno('suspended', get_string('suspended', 'auth'), $advanced, 'suspended');
170 case 'profile': return new user_filter_profilefield('profile', get_string('profilefields', 'admin'), $advanced);
171 case 'courserole': return new user_filter_courserole('courserole', get_string('courserole', 'filters'), $advanced);
173 return new user_filter_anycourses('anycourses', get_string('anycourses', 'filters'), $advanced, 'user_enrolments');
174 case 'systemrole': return new user_filter_globalrole('systemrole', get_string('globalrole', 'role'), $advanced);
175 case 'firstaccess': return new user_filter_date('firstaccess', get_string('firstaccess', 'filters'), $advanced, 'firstaccess');
176 case 'lastaccess': return new user_filter_date('lastaccess', get_string('lastaccess'), $advanced, 'lastaccess');
177 case 'neveraccessed': return new user_filter_checkbox('neveraccessed', get_string('neveraccessed', 'filters'), $advanced, 'firstaccess', array('lastaccess_sck', 'lastaccess_eck', 'firstaccess_eck', 'firstaccess_sck'));
178 case 'timecreated': return new user_filter_date('timecreated', get_string('timecreated'), $advanced, 'timecreated');
179 case 'timemodified': return new user_filter_date('timemodified', get_string('lastmodified'), $advanced, 'timemodified');
180 case 'nevermodified': return new user_filter_checkbox('nevermodified', get_string('nevermodified', 'filters'), $advanced, array('timemodified', 'timecreated'), array('timemodified_sck', 'timemodified_eck'));
181 case 'cohort': return new user_filter_cohort($advanced);
182 case 'idnumber': return new user_filter_text('idnumber', get_string('idnumber'), $advanced, 'idnumber');
183 case 'institution': return new user_filter_text('institution', get_string('institution'), $advanced, 'institution');
184 case 'department': return new user_filter_text('department', get_string('department'), $advanced, 'department');
185 case 'lastip': return new user_filter_text('lastip', get_string('lastip'), $advanced, 'lastip');
187 $plugins = core_component
::get_plugin_list('auth');
189 foreach ($plugins as $auth => $unused) {
190 $choices[$auth] = get_string('pluginname', "auth_{$auth}");
192 return new user_filter_simpleselect('auth', get_string('authentication'), $advanced, 'auth', $choices);
195 // Include all hosts even those deleted or otherwise problematic.
196 if (!$hosts = $DB->get_records('mnet_host', null, 'id', 'id, wwwroot, name')) {
200 foreach ($hosts as $host) {
201 if ($host->id
== $CFG->mnet_localhost_id
) {
202 $choices[$host->id
] = format_string($SITE->fullname
).' ('.get_string('local').')';
203 } else if (empty($host->wwwroot
)) {
207 $choices[$host->id
] = $host->name
.' ('.$host->wwwroot
.')';
210 if ($usedhosts = $DB->get_fieldset_sql("SELECT DISTINCT mnethostid FROM {user} WHERE deleted=0")) {
211 foreach ($usedhosts as $hostid) {
212 if (empty($hosts[$hostid])) {
213 $choices[$hostid] = 'id: '.$hostid.' ('.get_string('error').')';
217 if (count($choices) < 2) {
218 return null; // Filter not needed.
220 return new user_filter_simpleselect('mnethostid', get_string('mnetidprovider', 'mnet'), $advanced, 'mnethostid', $choices);
228 * Returns sql where statement based on active user filters
229 * @param string $extra sql
230 * @param array $params named params (recommended prefix ex)
231 * @return array sql string and $params
233 public function get_sql_filter($extra='', array $params=null) {
240 $params = (array)$params;
242 if (!empty($SESSION->user_filtering
)) {
243 foreach ($SESSION->user_filtering
as $fname => $datas) {
244 if (!array_key_exists($fname, $this->_fields
)) {
245 continue; // Filter not used.
247 $field = $this->_fields
[$fname];
248 foreach ($datas as $i => $data) {
249 list($s, $p) = $field->get_sql_filter($data);
251 $params = $params +
$p;
257 return array('', array());
259 $sqls = implode(' AND ', $sqls);
260 return array($sqls, $params);
265 * Print the add filter form.
267 public function display_add() {
268 $this->_addform
->display();
272 * Print the active filter form.
274 public function display_active() {
275 $this->_activeform
->display();
281 * The base user filter class. All abstract classes must be implemented.
283 * @copyright 1999 Martin Dougiamas http://dougiamas.com
284 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
286 class user_filter_type
{
288 * The name of this filter instance.
294 * The label of this filter instance.
300 * Advanced form element flag
307 * @param string $name the name of the filter instance
308 * @param string $label the label of the filter instance
309 * @param boolean $advanced advanced form element flag
311 public function __construct($name, $label, $advanced) {
312 $this->_name
= $name;
313 $this->_label
= $label;
314 $this->_advanced
= $advanced;
318 * Old syntax of class constructor. Deprecated in PHP7.
320 * @deprecated since Moodle 3.1
322 public function user_filter_type($name, $label, $advanced) {
323 debugging('Use of class name as constructor is deprecated', DEBUG_DEVELOPER
);
324 self
::__construct($name, $label, $advanced);
328 * Returns the condition to be used with SQL where
329 * @param array $data filter settings
330 * @return string the filtering condition or null if the filter is disabled
332 public function get_sql_filter($data) {
333 throw new \
moodle_exception('mustbeoveride', 'debug', '', 'get_sql_filter');
337 * Retrieves data from the form data
338 * @param stdClass $formdata data submited with the form
339 * @return mixed array filter data or false when filter not set
341 public function check_data($formdata) {
342 throw new \
moodle_exception('mustbeoveride', 'debug', '', 'check_data');
346 * Adds controls specific to this filter in the form.
347 * @param moodleform $mform a MoodleForm object to setup
349 public function setupForm(&$mform) {
350 throw new \
moodle_exception('mustbeoveride', 'debug', '', 'setupForm');
354 * Returns a human friendly description of the filter used as label.
355 * @param array $data filter settings
356 * @return string active filter label
358 public function get_label($data) {
359 throw new \
moodle_exception('mustbeoveride', 'debug', '', 'get_label');