Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.2.x will end 22 April 2024 (12 months).
  • Bug fixes for security issues in 4.2.x will end 7 October 2024 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.1.x is supported too.
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.

declare(strict_types=1);

namespace core_reportbuilder\local\helpers;

use context_system;
> use core_text;
use core_reportbuilder\local\filters\boolean_select; use core_reportbuilder\local\filters\date; use core_reportbuilder\local\filters\select; use core_reportbuilder\local\filters\text;
< use core_reportbuilder\local\helpers\database;
use core_reportbuilder\local\report\column; use core_reportbuilder\local\report\filter; use lang_string; use profile_field_base; use stdClass; defined('MOODLE_INTERNAL') || die(); global $CFG; require_once($CFG->dirroot.'/user/profile/lib.php'); /** * Helper class for user profile fields. * * @package core_reportbuilder * @copyright 2021 David Matamoros <davidmc@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class user_profile_fields { /** @var array user profile fields */ private $userprofilefields; /** @var string $entityname Name of the entity */ private $entityname; /** @var int $usertablefieldalias The user table/field alias */ private $usertablefieldalias; /** @var array additional joins */ private $joins = []; /** * Class userprofilefields constructor. * * @param string $usertablefieldalias The user table/field alias used when adding columns and filters. * @param string $entityname The entity name used when adding columns and filters. */ public function __construct(string $usertablefieldalias, string $entityname) { $this->usertablefieldalias = $usertablefieldalias; $this->entityname = $entityname; $this->userprofilefields = $this->get_user_profile_fields(); } /** * Retrieves the list of available/visible user profile fields * * @return profile_field_base[] */ private function get_user_profile_fields(): array { return array_filter(profile_get_user_fields_with_data(0), static function(profile_field_base $profilefield): bool { return $profilefield->is_visible(); }); } /** * Additional join that is needed. * * @param string $join * @return self */ public function add_join(string $join): self { $this->joins[trim($join)] = trim($join); return $this; } /** * Additional joins that are needed. * * @param array $joins * @return self */ public function add_joins(array $joins): self { foreach ($joins as $join) { $this->add_join($join); } return $this; } /** * Return joins * * @return string[] */ private function get_joins(): array { return array_values($this->joins); } /**
> * Generate table alias for given profile field * Return the user profile fields visible columns. > * * > * The entity name is used to ensure the alias differs when the entity is used multiple times within the same report, each * @return column[] > * having their own table alias/join */ > * public function get_columns(): array { > * @param profile_field_base $profilefield global $DB; > * @return string > */ $columns = []; > private function get_table_alias(profile_field_base $profilefield): string { foreach ($this->userprofilefields as $profilefield) { > static $aliases = []; $userinfotablealias = database::generate_alias(); > > $aliaskey = "{$this->entityname}_{$profilefield->fieldid}"; $columntype = $this->get_user_field_type($profilefield->field->datatype); > if (!array_key_exists($aliaskey, $aliases)) { > $aliases[$aliaskey] = database::generate_alias(); $columnfieldsql = "{$userinfotablealias}.data"; > } if ($DB->get_dbfamily() === 'oracle') { > $columnfieldsql = $DB->sql_order_by_text($columnfieldsql, 1024); > return $aliases[$aliaskey]; } > } > $column = (new column( > /** 'profilefield_' . $profilefield->field->shortname, > * Generate table join for given profile field new lang_string('customfieldcolumn', 'core_reportbuilder', > * format_string($profilefield->field->name, true, > * @param profile_field_base $profilefield ['escape' => true, 'context' => context_system::instance()])), > * @return string $this->entityname > */ )) > private function get_table_join(profile_field_base $profilefield): string { ->add_joins($this->get_joins()) > $userinfotablealias = $this->get_table_alias($profilefield); ->add_join("LEFT JOIN {user_info_data} {$userinfotablealias} " . > "ON {$userinfotablealias}.userid = {$this->usertablefieldalias} " . > return "LEFT JOIN {user_info_data} {$userinfotablealias} "AND {$userinfotablealias}.fieldid = {$profilefield->fieldid}") > ON {$userinfotablealias}.userid = {$this->usertablefieldalias} ->add_field($columnfieldsql, 'data') > AND {$userinfotablealias}.fieldid = {$profilefield->fieldid}"; ->set_type($columntype) > } ->set_is_sortable($columntype !== column::TYPE_LONGTEXT) > ->add_callback([$this, 'format_profile_field'], $profilefield); > /**
< $userinfotablealias = database::generate_alias(); <
}
> $columnfieldsql = $this->get_table_alias($profilefield) . '.data';
< $columnfieldsql = "{$userinfotablealias}.data"; < if ($DB->get_dbfamily() === 'oracle') {
> // Numeric (checkbox/time) fields should be cast, as should all fields for Oracle, for aggregation support. > if ($columntype === column::TYPE_BOOLEAN || $columntype === column::TYPE_TIMESTAMP) { > $columnfieldsql = "CASE WHEN {$columnfieldsql} IS NULL THEN NULL ELSE " . > $DB->sql_cast_char2int($columnfieldsql, true) . " END"; > } else if ($DB->get_dbfamily() === 'oracle') {
< $column = (new column( < 'profilefield_' . $profilefield->field->shortname,
> $columns[] = (new column( > 'profilefield_' . core_text::strtolower($profilefield->field->shortname),
< ['escape' => true, 'context' => context_system::instance()])),
> ['escape' => false, 'context' => context_system::instance()])),
< ->add_join("LEFT JOIN {user_info_data} {$userinfotablealias} " . < "ON {$userinfotablealias}.userid = {$this->usertablefieldalias} " . < "AND {$userinfotablealias}.fieldid = {$profilefield->fieldid}")
> ->add_join($this->get_table_join($profilefield))
< ->add_callback([$this, 'format_profile_field'], $profilefield);
> ->add_callback(static function($value, stdClass $row, profile_field_base $field): string { > if ($value === null) { > return ''; > }
< $columns[] = $column;
> $field->data = $value; > return (string) $field->display_data(); > }, $profilefield);
global $DB; $filters = []; foreach ($this->userprofilefields as $profilefield) {
< $userinfotablealias = database::generate_alias(); < $field = "{$userinfotablealias}.data";
> $field = $this->get_table_alias($profilefield) . '.data';
$params = []; switch ($profilefield->field->datatype) { case 'checkbox': $classname = boolean_select::class; $fieldsql = "COALESCE(" . $DB->sql_cast_char2int($field, true) . ", 0)"; break; case 'datetime': $classname = date::class; $fieldsql = $DB->sql_cast_char2int($field, true); break; case 'menu': $classname = select::class; $emptyparam = database::generate_param_name(); $fieldsql = "COALESCE(" . $DB->sql_compare_text($field, 255) . ", :{$emptyparam})"; $params[$emptyparam] = ''; break; case 'text': case 'textarea': default: $classname = text::class; $emptyparam = database::generate_param_name(); $fieldsql = "COALESCE(" . $DB->sql_compare_text($field, 255) . ", :{$emptyparam})"; $params[$emptyparam] = ''; break; } $filter = (new filter( $classname,
< 'profilefield_' . $profilefield->field->shortname,
> 'profilefield_' . core_text::strtolower($profilefield->field->shortname),
new lang_string('customfieldcolumn', 'core_reportbuilder', format_string($profilefield->field->name, true, ['escape' => false, 'context' => context_system::instance()])), $this->entityname, $fieldsql, $params )) ->add_joins($this->get_joins())
< ->add_join("LEFT JOIN {user_info_data} {$userinfotablealias} " . < "ON {$userinfotablealias}.userid = {$this->usertablefieldalias} " . < "AND {$userinfotablealias}.fieldid = {$profilefield->fieldid}");
> ->add_join($this->get_table_join($profilefield));
// If menu type then set filter options as appropriate. if ($profilefield->field->datatype === 'menu') { $filter->set_options($profilefield->options); } $filters[] = $filter; } return $filters; } /** * Get user profile field type for report. * * @param string $userfield user field. * @return int the constant equivalent to this custom field type. */ protected function get_user_field_type(string $userfield): int { switch ($userfield) { case 'checkbox': $customfieldtype = column::TYPE_BOOLEAN; break; case 'datetime': $customfieldtype = column::TYPE_TIMESTAMP; break; case 'textarea': $customfieldtype = column::TYPE_LONGTEXT; break; case 'menu': case 'text': default: $customfieldtype = column::TYPE_TEXT; break; } return $customfieldtype;
< } < < /** < * Formatter for a profile field. It formats the field according to its type. < * < * @param mixed $value < * @param stdClass $row < * @param profile_field_base $field < * @return string < */ < public static function format_profile_field($value, stdClass $row, profile_field_base $field): string { < // Special handling of checkboxes, we want to display their boolean state rather than the input element itself. < if (is_a($field, 'profile_field_checkbox')) { < return format::boolean_as_text($value); < } < < $field->data = $value; < return (string) $field->display_data();
} }