[ Index ]

PHP Cross Reference of moodle-2.8

title

Body

[close]

/user/filters/ -> lib.php (source)

   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   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.
   8  //
   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.
  13  //
  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/>.
  16  
  17  /**
  18   * This file contains the User Filter API.
  19   *
  20   * @package   core_user
  21   * @category  user
  22   * @copyright 1999 Martin Dougiamas  http://dougiamas.com
  23   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   */
  25  
  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/cohort.php');
  35  require_once($CFG->dirroot.'/user/filters/user_filter_forms.php');
  36  require_once($CFG->dirroot.'/user/filters/checkbox.php');
  37  
  38  /**
  39   * User filtering wrapper class.
  40   *
  41   * @copyright 1999 Martin Dougiamas  http://dougiamas.com
  42   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  43   */
  44  class user_filtering {
  45      /** @var array */
  46      public $_fields;
  47      /** @var \user_add_filter_form */
  48      public $_addform;
  49      /** @var \user_active_filter_form */
  50      public $_activeform;
  51  
  52      /**
  53       * Contructor
  54       * @param array $fieldnames array of visible user fields
  55       * @param string $baseurl base url used for submission/return, null if the same of current page
  56       * @param array $extraparams extra page parameters
  57       */
  58      public function user_filtering($fieldnames = null, $baseurl = null, $extraparams = null) {
  59          global $SESSION;
  60  
  61          if (!isset($SESSION->user_filtering)) {
  62              $SESSION->user_filtering = array();
  63          }
  64  
  65          if (empty($fieldnames)) {
  66              $fieldnames = array('realname' => 0, 'lastname' => 1, 'firstname' => 1, 'username' => 1, 'email' => 1, 'city' => 1, 'country' => 1,
  67                                  'confirmed' => 1, 'suspended' => 1, 'profile' => 1, 'courserole' => 1, 'systemrole' => 1,
  68                                  'cohort' => 1, 'firstaccess' => 1, 'lastaccess' => 1, 'neveraccessed' => 1, 'timemodified' => 1,
  69                                  'nevermodified' => 1, 'auth' => 1, 'mnethostid' => 1);
  70          }
  71  
  72          $this->_fields  = array();
  73  
  74          foreach ($fieldnames as $fieldname => $advanced) {
  75              if ($field = $this->get_field($fieldname, $advanced)) {
  76                  $this->_fields[$fieldname] = $field;
  77              }
  78          }
  79  
  80          // Fist the new filter form.
  81          $this->_addform = new user_add_filter_form($baseurl, array('fields' => $this->_fields, 'extraparams' => $extraparams));
  82          if ($adddata = $this->_addform->get_data()) {
  83              foreach ($this->_fields as $fname => $field) {
  84                  $data = $field->check_data($adddata);
  85                  if ($data === false) {
  86                      continue; // Nothing new.
  87                  }
  88                  if (!array_key_exists($fname, $SESSION->user_filtering)) {
  89                      $SESSION->user_filtering[$fname] = array();
  90                  }
  91                  $SESSION->user_filtering[$fname][] = $data;
  92              }
  93              // Clear the form.
  94              $_POST = array();
  95              $this->_addform = new user_add_filter_form($baseurl, array('fields' => $this->_fields, 'extraparams' => $extraparams));
  96          }
  97  
  98          // Now the active filters.
  99          $this->_activeform = new user_active_filter_form($baseurl, array('fields' => $this->_fields, 'extraparams' => $extraparams));
 100          if ($adddata = $this->_activeform->get_data()) {
 101              if (!empty($adddata->removeall)) {
 102                  $SESSION->user_filtering = array();
 103  
 104              } else if (!empty($adddata->removeselected) and !empty($adddata->filter)) {
 105                  foreach ($adddata->filter as $fname => $instances) {
 106                      foreach ($instances as $i => $val) {
 107                          if (empty($val)) {
 108                              continue;
 109                          }
 110                          unset($SESSION->user_filtering[$fname][$i]);
 111                      }
 112                      if (empty($SESSION->user_filtering[$fname])) {
 113                          unset($SESSION->user_filtering[$fname]);
 114                      }
 115                  }
 116              }
 117              // Clear+reload the form.
 118              $_POST = array();
 119              $this->_activeform = new user_active_filter_form($baseurl, array('fields' => $this->_fields, 'extraparams' => $extraparams));
 120          }
 121          // Now the active filters.
 122      }
 123  
 124      /**
 125       * Creates known user filter if present
 126       * @param string $fieldname
 127       * @param boolean $advanced
 128       * @return object filter
 129       */
 130      public function get_field($fieldname, $advanced) {
 131          global $USER, $CFG, $DB, $SITE;
 132  
 133          switch ($fieldname) {
 134              case 'username':    return new user_filter_text('username', get_string('username'), $advanced, 'username');
 135              case 'realname':    return new user_filter_text('realname', get_string('fullnameuser'), $advanced, $DB->sql_fullname());
 136              case 'lastname':    return new user_filter_text('lastname', get_string('lastname'), $advanced, 'lastname');
 137              case 'firstname':    return new user_filter_text('firstname', get_string('firstname'), $advanced, 'firstname');
 138              case 'email':       return new user_filter_text('email', get_string('email'), $advanced, 'email');
 139              case 'city':        return new user_filter_text('city', get_string('city'), $advanced, 'city');
 140              case 'country':     return new user_filter_select('country', get_string('country'), $advanced, 'country', get_string_manager()->get_list_of_countries(), $USER->country);
 141              case 'confirmed':   return new user_filter_yesno('confirmed', get_string('confirmed', 'admin'), $advanced, 'confirmed');
 142              case 'suspended':   return new user_filter_yesno('suspended', get_string('suspended', 'auth'), $advanced, 'suspended');
 143              case 'profile':     return new user_filter_profilefield('profile', get_string('profilefields', 'admin'), $advanced);
 144              case 'courserole':  return new user_filter_courserole('courserole', get_string('courserole', 'filters'), $advanced);
 145              case 'systemrole':  return new user_filter_globalrole('systemrole', get_string('globalrole', 'role'), $advanced);
 146              case 'firstaccess': return new user_filter_date('firstaccess', get_string('firstaccess', 'filters'), $advanced, 'firstaccess');
 147              case 'lastaccess':  return new user_filter_date('lastaccess', get_string('lastaccess'), $advanced, 'lastaccess');
 148              case 'neveraccessed': return new user_filter_checkbox('neveraccessed', get_string('neveraccessed', 'filters'), $advanced, 'firstaccess', array('lastaccess_sck', 'lastaccess_eck', 'firstaccess_eck', 'firstaccess_sck'));
 149              case 'timemodified': return new user_filter_date('timemodified', get_string('lastmodified'), $advanced, 'timemodified');
 150              case 'nevermodified': return new user_filter_checkbox('nevermodified', get_string('nevermodified', 'filters'), $advanced, array('timemodified', 'timecreated'), array('timemodified_sck', 'timemodified_eck'));
 151              case 'cohort':      return new user_filter_cohort($advanced);
 152              case 'auth':
 153                  $plugins = core_component::get_plugin_list('auth');
 154                  $choices = array();
 155                  foreach ($plugins as $auth => $unused) {
 156                      $choices[$auth] = get_string('pluginname', "auth_{$auth}");
 157                  }
 158                  return new user_filter_simpleselect('auth', get_string('authentication'), $advanced, 'auth', $choices);
 159  
 160              case 'mnethostid':
 161                  // Include all hosts even those deleted or otherwise problematic.
 162                  if (!$hosts = $DB->get_records('mnet_host', null, 'id', 'id, wwwroot, name')) {
 163                      $hosts = array();
 164                  }
 165                  $choices = array();
 166                  foreach ($hosts as $host) {
 167                      if ($host->id == $CFG->mnet_localhost_id) {
 168                          $choices[$host->id] = format_string($SITE->fullname).' ('.get_string('local').')';
 169                      } else if (empty($host->wwwroot)) {
 170                          // All hosts.
 171                          continue;
 172                      } else {
 173                          $choices[$host->id] = $host->name.' ('.$host->wwwroot.')';
 174                      }
 175                  }
 176                  if ($usedhosts = $DB->get_fieldset_sql("SELECT DISTINCT mnethostid FROM {user} WHERE deleted=0")) {
 177                      foreach ($usedhosts as $hostid) {
 178                          if (empty($hosts[$hostid])) {
 179                              $choices[$hostid] = 'id: '.$hostid.' ('.get_string('error').')';
 180                          }
 181                      }
 182                  }
 183                  if (count($choices) < 2) {
 184                      return null; // Filter not needed.
 185                  }
 186                  return new user_filter_simpleselect('mnethostid', get_string('mnetidprovider', 'mnet'), $advanced, 'mnethostid', $choices);
 187  
 188              default:
 189                  return null;
 190          }
 191      }
 192  
 193      /**
 194       * Returns sql where statement based on active user filters
 195       * @param string $extra sql
 196       * @param array $params named params (recommended prefix ex)
 197       * @return array sql string and $params
 198       */
 199      public function get_sql_filter($extra='', array $params=null) {
 200          global $SESSION;
 201  
 202          $sqls = array();
 203          if ($extra != '') {
 204              $sqls[] = $extra;
 205          }
 206          $params = (array)$params;
 207  
 208          if (!empty($SESSION->user_filtering)) {
 209              foreach ($SESSION->user_filtering as $fname => $datas) {
 210                  if (!array_key_exists($fname, $this->_fields)) {
 211                      continue; // Filter not used.
 212                  }
 213                  $field = $this->_fields[$fname];
 214                  foreach ($datas as $i => $data) {
 215                      list($s, $p) = $field->get_sql_filter($data);
 216                      $sqls[] = $s;
 217                      $params = $params + $p;
 218                  }
 219              }
 220          }
 221  
 222          if (empty($sqls)) {
 223              return array('', array());
 224          } else {
 225              $sqls = implode(' AND ', $sqls);
 226              return array($sqls, $params);
 227          }
 228      }
 229  
 230      /**
 231       * Print the add filter form.
 232       */
 233      public function display_add() {
 234          $this->_addform->display();
 235      }
 236  
 237      /**
 238       * Print the active filter form.
 239       */
 240      public function display_active() {
 241          $this->_activeform->display();
 242      }
 243  
 244  }
 245  
 246  /**
 247   * The base user filter class. All abstract classes must be implemented.
 248   *
 249   * @copyright 1999 Martin Dougiamas  http://dougiamas.com
 250   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 251   */
 252  class user_filter_type {
 253      /**
 254       * The name of this filter instance.
 255       * @var string
 256       */
 257      public $_name;
 258  
 259      /**
 260       * The label of this filter instance.
 261       * @var string
 262       */
 263      public $_label;
 264  
 265      /**
 266       * Advanced form element flag
 267       * @var bool
 268       */
 269      public $_advanced;
 270  
 271      /**
 272       * Constructor
 273       * @param string $name the name of the filter instance
 274       * @param string $label the label of the filter instance
 275       * @param boolean $advanced advanced form element flag
 276       */
 277      public function user_filter_type($name, $label, $advanced) {
 278          $this->_name     = $name;
 279          $this->_label    = $label;
 280          $this->_advanced = $advanced;
 281      }
 282  
 283      /**
 284       * Returns the condition to be used with SQL where
 285       * @param array $data filter settings
 286       * @return string the filtering condition or null if the filter is disabled
 287       */
 288      public function get_sql_filter($data) {
 289          print_error('mustbeoveride', 'debug', '', 'get_sql_filter');
 290      }
 291  
 292      /**
 293       * Retrieves data from the form data
 294       * @param stdClass $formdata data submited with the form
 295       * @return mixed array filter data or false when filter not set
 296       */
 297      public function check_data($formdata) {
 298          print_error('mustbeoveride', 'debug', '', 'check_data');
 299      }
 300  
 301      /**
 302       * Adds controls specific to this filter in the form.
 303       * @param moodleform $mform a MoodleForm object to setup
 304       */
 305      public function setupForm(&$mform) {
 306          print_error('mustbeoveride', 'debug', '', 'setupForm');
 307      }
 308  
 309      /**
 310       * Returns a human friendly description of the filter used as label.
 311       * @param array $data filter settings
 312       * @return string active filter label
 313       */
 314      public function get_label($data) {
 315          print_error('mustbeoveride', 'debug', '', 'get_label');
 316      }
 317  }


Generated: Fri Nov 28 20:29:05 2014 Cross-referenced by PHPXref 0.7.1