* @since Moodle 2.4
*/
public static function get_users_by_field_returns() {
- return new external_multiple_structure(
- new external_single_structure(
- array(
- 'id' => new external_value(PARAM_INT, 'ID of the user'),
- 'username' => new external_value(PARAM_USERNAME, 'Username policy is defined in Moodle security config', VALUE_OPTIONAL),
- 'firstname' => new external_value(PARAM_NOTAGS, 'The first name(s) of the user', VALUE_OPTIONAL),
- 'lastname' => new external_value(PARAM_NOTAGS, 'The family name of the user', VALUE_OPTIONAL),
- 'fullname' => new external_value(PARAM_NOTAGS, 'The fullname of the user'),
- 'email' => new external_value(PARAM_EMAIL, 'An email address', VALUE_OPTIONAL),
- 'address' => new external_value(PARAM_TEXT, 'Postal address', VALUE_OPTIONAL),
- 'phone1' => new external_value(PARAM_NOTAGS, 'Phone 1', VALUE_OPTIONAL),
- 'phone2' => new external_value(PARAM_NOTAGS, 'Phone 2', VALUE_OPTIONAL),
- 'icq' => new external_value(PARAM_NOTAGS, 'icq number', VALUE_OPTIONAL),
- 'skype' => new external_value(PARAM_NOTAGS, 'skype id', VALUE_OPTIONAL),
- 'yahoo' => new external_value(PARAM_NOTAGS, 'yahoo id', VALUE_OPTIONAL),
- 'aim' => new external_value(PARAM_NOTAGS, 'aim id', VALUE_OPTIONAL),
- 'msn' => new external_value(PARAM_NOTAGS, 'msn number', VALUE_OPTIONAL),
- 'department' => new external_value(PARAM_TEXT, 'department', VALUE_OPTIONAL),
- 'institution' => new external_value(PARAM_TEXT, 'institution', VALUE_OPTIONAL),
- 'idnumber' => new external_value(PARAM_RAW, 'An arbitrary ID code number perhaps from the institution', VALUE_OPTIONAL),
- 'interests' => new external_value(PARAM_TEXT, 'user interests (separated by commas)', VALUE_OPTIONAL),
- 'firstaccess' => new external_value(PARAM_INT, 'first access to the site (0 if never)', VALUE_OPTIONAL),
- 'lastaccess' => new external_value(PARAM_INT, 'last access to the site (0 if never)', VALUE_OPTIONAL),
- 'auth' => new external_value(PARAM_PLUGIN, 'Auth plugins include manual, ldap, imap, etc', VALUE_OPTIONAL),
- 'confirmed' => new external_value(PARAM_INT, 'Active user: 1 if confirmed, 0 otherwise', VALUE_OPTIONAL),
- 'lang' => new external_value(PARAM_SAFEDIR, 'Language code such as "en", must exist on server', VALUE_OPTIONAL),
- 'theme' => new external_value(PARAM_PLUGIN, 'Theme name such as "standard", must exist on server', VALUE_OPTIONAL),
- 'timezone' => new external_value(PARAM_TIMEZONE, 'Timezone code such as Australia/Perth, or 99 for default', VALUE_OPTIONAL),
- 'mailformat' => new external_value(PARAM_INT, 'Mail format code is 0 for plain text, 1 for HTML etc', VALUE_OPTIONAL),
- 'description' => new external_value(PARAM_RAW, 'User profile description', VALUE_OPTIONAL),
- 'descriptionformat' => new external_format_value('description', VALUE_OPTIONAL),
- 'city' => new external_value(PARAM_NOTAGS, 'Home city of the user', VALUE_OPTIONAL),
- 'url' => new external_value(PARAM_URL, 'URL of the user', VALUE_OPTIONAL),
- 'country' => new external_value(PARAM_ALPHA, 'Home country code of the user, such as AU or CZ', VALUE_OPTIONAL),
- 'profileimageurlsmall' => new external_value(PARAM_URL, 'User image profile URL - small version'),
- 'profileimageurl' => new external_value(PARAM_URL, 'User image profile URL - big version'),
- 'customfields' => new external_multiple_structure(
- new external_single_structure(
- array(
- 'type' => new external_value(PARAM_ALPHANUMEXT, 'The type of the custom field - text field, checkbox...'),
- 'value' => new external_value(PARAM_RAW, 'The value of the custom field'),
- 'name' => new external_value(PARAM_RAW, 'The name of the custom field'),
- 'shortname' => new external_value(PARAM_RAW, 'The shortname of the custom field - to be able to build the field class in the code'),
- )
- ), 'User custom fields (also known as user profil fields)', VALUE_OPTIONAL),
- 'preferences' => new external_multiple_structure(
- new external_single_structure(
- array(
- 'name' => new external_value(PARAM_ALPHANUMEXT, 'The name of the preferences'),
- 'value' => new external_value(PARAM_RAW, 'The value of the custom field'),
- )
- ), 'User preferences', VALUE_OPTIONAL)
+ return new external_multiple_structure(core_user_external::user_description());
+ }
+
+
+ /**
+ * Returns description of get_users() parameters
+ *
+ * @return external_function_parameters
+ * @since Moodle 2.4
+ */
+ public static function get_users_parameters() {
+ return new external_function_parameters(
+ array(
+ 'criteria' => new external_multiple_structure(
+ new external_single_structure(
+ array(
+ 'key' => new external_value(PARAM_ALPHA, 'the user column to search, expected keys (value format) are:
+ "id" (int) matching user id,
+ "lastname" (string) user last name (Note: you can use % for searching but it can be slow!),
+ "firstname" (string) user first name (Note: you can use % for searching but it can be slow!),
+ "idnumber" (string) matching user idnumber,
+ "username" (string) matching user username,
+ "email" (string) user email (Note: you can use % for searching but it can be slow!),
+ "auth" (plugin) matching user auth plugin'),
+ 'value' => new external_value(PARAM_RAW, 'the value to search')
+ )
+ ), 'the key/value pairs to be considered in user search. Values can not be empty.
+ Specifiy different keys only once (fullname => \'user1\', auth => \'manual\', ...) -
+ key occurences are ignored, only the last occurence is considered.
+ The search is executed with AND operator on the criterias.'
)
)
);
}
+ /**
+ * Retrieve matching user
+ *
+ * @param string $field
+ * @param array $values
+ * @return array An array of arrays containg user profiles.
+ * @since Moodle 2.4
+ */
+ public static function get_users($criteria = array()) {
+ global $CFG, $USER, $DB;
+
+ require_once($CFG->dirroot . "/user/lib.php");
+
+ $params = self::validate_parameters(self::get_users_parameters(),
+ array('criteria' => $criteria));
+
+ // Validate the criteria and retrieve the users
+ $cleanedvalues = array();
+ $firstcriteria = true;
+ $users = array();
+ $warnings = array();
+ $sql = '';
+ $sqlparams = array();
+
+ foreach ($params['criteria'] as $criteria) {
+
+ // Clean the parameters
+ $paramtype = PARAM_RAW;
+ switch ($criteria['key']) {
+ case 'id':
+ $paramtype = PARAM_INT;
+ break;
+ case 'idnumber':
+ $paramtype = PARAM_RAW;
+ break;
+ case 'username':
+ $paramtype = PARAM_USERNAME;
+ break;
+ case 'email':
+ // we use PARAM_RAW to allow searches with %
+ $paramtype = PARAM_RAW;
+ break;
+ case 'auth':
+ $paramtype = PARAM_AUTH;
+ break;
+ case 'lastname':
+ case 'firstname':
+ $paramtype = PARAM_TEXT;
+ break;
+ default:
+ // Send back a warning that this search key is not supported in this version
+ // This warning will make the function extandable without breaking clients
+ $warnings[] = array(
+ 'item' => 'key',
+ 'itemid' => $criteria['key'],
+ 'warningcode' => 'invalidfieldparameter',
+ 'message' => 'The search key \'' . $$criteria['key'] . '\' is not supported, look at the web service documentation'
+ );
+ }
+ $cleanedvalue = clean_param($criteria['value'], $paramtype);
+
+ // If first criteria do not add AND to the query
+ if ($firstcriteria) {
+ $firstcriteria = false;
+ } else {
+ $sql .= ' AND ';
+ }
+
+ // Create the SQL
+ switch ($criteria['key']) {
+ case 'id':
+ case 'idnumber':
+ case 'username':
+ case 'auth':
+ $sql .= $criteria['key'] . ' = :' . $criteria['key'];
+ $sqlparams[$criteria['key']] = $cleanedvalue;
+ break;
+ case 'email':
+ case 'lastname':
+ case 'firstname':
+ $sql .= $DB->sql_like($criteria['key'], ':'.$criteria['key'], false);
+ $sqlparams[$criteria['key']] = $cleanedvalue;
+ break;
+ default:
+ break;
+ }
+ }
+
+ $users = $DB->get_records_select('user', $sql, $sqlparams, 'id ASC');
+
+ // Finally retrieve each users information
+ $returnedusers = array();
+ foreach ($users as $user) {
+
+ $userdetails = user_get_user_details_courses($user);
+
+ // Return the user only if all the searched fields are returned.
+ // Otherwise it means that the $USER was not allowed to search the returned user.
+ if (!empty($userdetails)) {
+ $validuser = true;
+
+ foreach($params['criteria'] as $criteria) {
+ if (empty($userdetails[$criteria['key']])) {
+ $validuser = false;
+ }
+ }
+
+ if ($validuser) {
+ $returnedusers[] = $userdetails;
+ }
+ }
+ }
+
+ return array('users' => $returnedusers, 'warnings' => $warnings);
+ }
+
+ /**
+ * Returns description of get_users result value
+ *
+ * @return external_description
+ * @since Moodle 2.3
+ */
+ public static function get_users_returns() {
+ return new external_single_structure(
+ array('users' => new external_multiple_structure(
+ core_user_external::user_description()
+ ),
+ 'warnings' => new external_warnings()
+ )
+ );
+ }
+
/**
* Returns description of method parameters
*
return $result;
}
+
+
/**
* Returns description of method result value
*
*/
public static function get_users_by_id_returns() {
return new external_multiple_structure(
- new external_single_structure(
- array(
- 'id' => new external_value(PARAM_INT, 'ID of the user'),
- 'username' => new external_value(PARAM_RAW, 'Username policy is defined in Moodle security config', VALUE_OPTIONAL),
- 'firstname' => new external_value(PARAM_NOTAGS, 'The first name(s) of the user', VALUE_OPTIONAL),
- 'lastname' => new external_value(PARAM_NOTAGS, 'The family name of the user', VALUE_OPTIONAL),
- 'fullname' => new external_value(PARAM_NOTAGS, 'The fullname of the user'),
- 'email' => new external_value(PARAM_TEXT, 'An email address - allow email as root@localhost', VALUE_OPTIONAL),
- 'address' => new external_value(PARAM_TEXT, 'Postal address', VALUE_OPTIONAL),
- 'phone1' => new external_value(PARAM_NOTAGS, 'Phone 1', VALUE_OPTIONAL),
- 'phone2' => new external_value(PARAM_NOTAGS, 'Phone 2', VALUE_OPTIONAL),
- 'icq' => new external_value(PARAM_NOTAGS, 'icq number', VALUE_OPTIONAL),
- 'skype' => new external_value(PARAM_NOTAGS, 'skype id', VALUE_OPTIONAL),
- 'yahoo' => new external_value(PARAM_NOTAGS, 'yahoo id', VALUE_OPTIONAL),
- 'aim' => new external_value(PARAM_NOTAGS, 'aim id', VALUE_OPTIONAL),
- 'msn' => new external_value(PARAM_NOTAGS, 'msn number', VALUE_OPTIONAL),
- 'department' => new external_value(PARAM_TEXT, 'department', VALUE_OPTIONAL),
- 'institution' => new external_value(PARAM_TEXT, 'institution', VALUE_OPTIONAL),
- 'interests' => new external_value(PARAM_TEXT, 'user interests (separated by commas)', VALUE_OPTIONAL),
- 'firstaccess' => new external_value(PARAM_INT, 'first access to the site (0 if never)', VALUE_OPTIONAL),
- 'lastaccess' => new external_value(PARAM_INT, 'last access to the site (0 if never)', VALUE_OPTIONAL),
- 'auth' => new external_value(PARAM_PLUGIN, 'Auth plugins include manual, ldap, imap, etc', VALUE_OPTIONAL),
- 'confirmed' => new external_value(PARAM_INT, 'Active user: 1 if confirmed, 0 otherwise', VALUE_OPTIONAL),
- 'idnumber' => new external_value(PARAM_RAW, 'An arbitrary ID code number perhaps from the institution', VALUE_OPTIONAL),
- 'lang' => new external_value(PARAM_SAFEDIR, 'Language code such as "en", must exist on server', VALUE_OPTIONAL),
- 'theme' => new external_value(PARAM_PLUGIN, 'Theme name such as "standard", must exist on server', VALUE_OPTIONAL),
- 'timezone' => new external_value(PARAM_TIMEZONE, 'Timezone code such as Australia/Perth, or 99 for default', VALUE_OPTIONAL),
- 'mailformat' => new external_value(PARAM_INT, 'Mail format code is 0 for plain text, 1 for HTML etc', VALUE_OPTIONAL),
- 'description' => new external_value(PARAM_RAW, 'User profile description', VALUE_OPTIONAL),
- 'descriptionformat' => new external_format_value('description', VALUE_OPTIONAL),
- 'city' => new external_value(PARAM_NOTAGS, 'Home city of the user', VALUE_OPTIONAL),
- 'url' => new external_value(PARAM_URL, 'URL of the user', VALUE_OPTIONAL),
- 'country' => new external_value(PARAM_ALPHA, 'Home country code of the user, such as AU or CZ', VALUE_OPTIONAL),
- 'profileimageurlsmall' => new external_value(PARAM_URL, 'User image profile URL - small version'),
- 'profileimageurl' => new external_value(PARAM_URL, 'User image profile URL - big version'),
- 'customfields' => new external_multiple_structure(
- new external_single_structure(
- array(
- 'type' => new external_value(PARAM_ALPHANUMEXT, 'The type of the custom field - text field, checkbox...'),
- 'value' => new external_value(PARAM_RAW, 'The value of the custom field'),
- 'name' => new external_value(PARAM_RAW, 'The name of the custom field'),
- 'shortname' => new external_value(PARAM_RAW, 'The shortname of the custom field - to be able to build the field class in the code'),
- )
- ), 'User custom fields (also known as user profil fields)', VALUE_OPTIONAL),
- 'preferences' => new external_multiple_structure(
- new external_single_structure(
- array(
- 'name' => new external_value(PARAM_ALPHANUMEXT, 'The name of the preferences'),
- 'value' => new external_value(PARAM_RAW, 'The value of the custom field'),
- )
- ), 'User preferences', VALUE_OPTIONAL),
- 'enrolledcourses' => new external_multiple_structure(
- new external_single_structure(
- array(
- 'id' => new external_value(PARAM_INT, 'Id of the course'),
- 'fullname' => new external_value(PARAM_RAW, 'Fullname of the course'),
- 'shortname' => new external_value(PARAM_RAW, 'Shortname of the course')
- )
- ), 'Courses where the user is enrolled - limited by which courses the user is able to see', VALUE_OPTIONAL)
- )
- )
+ core_user_external::user_description()
);
}
/**
* @since Moodle 2.2
*/
public static function get_course_user_profiles_returns() {
- return new external_multiple_structure(
- new external_single_structure(
- array(
+ $additionalfields = array(
+ 'groups' => new external_multiple_structure(
+ new external_single_structure(
+ array(
+ 'id' => new external_value(PARAM_INT, 'group id'),
+ 'name' => new external_value(PARAM_RAW, 'group name'),
+ 'description' => new external_value(PARAM_RAW, 'group description'),
+ 'descriptionformat' => new external_format_value('description'),
+ )
+ ), 'user groups', VALUE_OPTIONAL),
+ 'roles' => new external_multiple_structure(
+ new external_single_structure(
+ array(
+ 'roleid' => new external_value(PARAM_INT, 'role id'),
+ 'name' => new external_value(PARAM_RAW, 'role name'),
+ 'shortname' => new external_value(PARAM_ALPHANUMEXT, 'role shortname'),
+ 'sortorder' => new external_value(PARAM_INT, 'role sortorder')
+ )
+ ), 'user roles', VALUE_OPTIONAL),
+ 'enrolledcourses' => new external_multiple_structure(
+ new external_single_structure(
+ array(
+ 'id' => new external_value(PARAM_INT, 'Id of the course'),
+ 'fullname' => new external_value(PARAM_RAW, 'Fullname of the course'),
+ 'shortname' => new external_value(PARAM_RAW, 'Shortname of the course')
+ )
+ ), 'Courses where the user is enrolled - limited by which courses the user is able to see', VALUE_OPTIONAL)
+ );
+
+ return new external_multiple_structure(core_user_external::user_description($additionalfields));
+ }
+
+ /**
+ * Create user return value description.
+ *
+ * @param array $additionalfiels some additional field
+ * @return single_structure_description
+ */
+ public static function user_description($additionalfiels = array()) {
+ $userfields = array(
'id' => new external_value(PARAM_INT, 'ID of the user'),
- 'username' => new external_value(PARAM_RAW, 'Username policy is defined in Moodle security config', VALUE_OPTIONAL),
+ 'username' => new external_value(PARAM_USERNAME, 'Username policy is defined in Moodle security config', VALUE_OPTIONAL),
'firstname' => new external_value(PARAM_NOTAGS, 'The first name(s) of the user', VALUE_OPTIONAL),
'lastname' => new external_value(PARAM_NOTAGS, 'The family name of the user', VALUE_OPTIONAL),
'fullname' => new external_value(PARAM_NOTAGS, 'The fullname of the user'),
'interests' => new external_value(PARAM_TEXT, 'user interests (separated by commas)', VALUE_OPTIONAL),
'firstaccess' => new external_value(PARAM_INT, 'first access to the site (0 if never)', VALUE_OPTIONAL),
'lastaccess' => new external_value(PARAM_INT, 'last access to the site (0 if never)', VALUE_OPTIONAL),
+ 'auth' => new external_value(PARAM_PLUGIN, 'Auth plugins include manual, ldap, imap, etc', VALUE_OPTIONAL),
+ 'confirmed' => new external_value(PARAM_INT, 'Active user: 1 if confirmed, 0 otherwise', VALUE_OPTIONAL),
+ 'lang' => new external_value(PARAM_SAFEDIR, 'Language code such as "en", must exist on server', VALUE_OPTIONAL),
+ 'theme' => new external_value(PARAM_PLUGIN, 'Theme name such as "standard", must exist on server', VALUE_OPTIONAL),
+ 'timezone' => new external_value(PARAM_TIMEZONE, 'Timezone code such as Australia/Perth, or 99 for default', VALUE_OPTIONAL),
+ 'mailformat' => new external_value(PARAM_INT, 'Mail format code is 0 for plain text, 1 for HTML etc', VALUE_OPTIONAL),
'description' => new external_value(PARAM_RAW, 'User profile description', VALUE_OPTIONAL),
'descriptionformat' => new external_format_value('description', VALUE_OPTIONAL),
'city' => new external_value(PARAM_NOTAGS, 'Home city of the user', VALUE_OPTIONAL),
'shortname' => new external_value(PARAM_RAW, 'The shortname of the custom field - to be able to build the field class in the code'),
)
), 'User custom fields (also known as user profil fields)', VALUE_OPTIONAL),
- 'groups' => new external_multiple_structure(
- new external_single_structure(
- array(
- 'id' => new external_value(PARAM_INT, 'group id'),
- 'name' => new external_value(PARAM_RAW, 'group name'),
- 'description' => new external_value(PARAM_RAW, 'group description'),
- 'descriptionformat' => new external_format_value('description'),
- )
- ), 'user groups', VALUE_OPTIONAL),
- 'roles' => new external_multiple_structure(
- new external_single_structure(
- array(
- 'roleid' => new external_value(PARAM_INT, 'role id'),
- 'name' => new external_value(PARAM_RAW, 'role name'),
- 'shortname' => new external_value(PARAM_ALPHANUMEXT, 'role shortname'),
- 'sortorder' => new external_value(PARAM_INT, 'role sortorder')
- )
- ), 'user roles', VALUE_OPTIONAL),
'preferences' => new external_multiple_structure(
new external_single_structure(
array(
'name' => new external_value(PARAM_ALPHANUMEXT, 'The name of the preferences'),
'value' => new external_value(PARAM_RAW, 'The value of the custom field'),
)
- ), 'User preferences', VALUE_OPTIONAL),
- 'enrolledcourses' => new external_multiple_structure(
- new external_single_structure(
- array(
- 'id' => new external_value(PARAM_INT, 'Id of the course'),
- 'fullname' => new external_value(PARAM_RAW, 'Fullname of the course'),
- 'shortname' => new external_value(PARAM_RAW, 'Shortname of the course')
- )
- ), 'Courses where the user is enrolled - limited by which courses the user is able to see', VALUE_OPTIONAL)
- )
- )
- );
+ ), 'Users preferences', VALUE_OPTIONAL)
+ );
+ if (!empty($additionalfields)) {
+ $userfields = array_merge($userfields, $additionalfields);
+ }
+ return new external_single_structure($userfields);
}
+
}
/**
* @see core_user_external::get_users_by_id_returns()
*/
public static function get_users_by_id_returns() {
- return core_user_external::get_users_by_id_returns();
+ $additionalfields = array (
+ 'enrolledcourses' => new external_multiple_structure(
+ new external_single_structure(
+ array(
+ 'id' => new external_value(PARAM_INT, 'Id of the course'),
+ 'fullname' => new external_value(PARAM_RAW, 'Fullname of the course'),
+ 'shortname' => new external_value(PARAM_RAW, 'Shortname of the course')
+ )
+ ), 'Courses where the user is enrolled - limited by which courses the user is able to see', VALUE_OPTIONAL));
+ return core_user_external::get_users_by_id_returns($additionalfields);
}
/**
* Returns description of method parameters
require_once($CFG->dirroot . '/enrol/externallib.php');
return core_enrol_external::get_enrolled_users_returns();
}
-}
\ No newline at end of file
+}