Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.
<?php
// This file is part of Moodle - https://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/>.

/**
 * Provides the {@see \core_webservice\token_form} class.
 *
 * @package     core_webservice
 * @category    admin
 * @copyright   2020 David Mudrák <david@moodle.com>
 * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */

namespace core_webservice;

use core_user;
> use DateInterval; > use DateTime;
/** * Form to create and edit a web service token. * * Tokens allow users call external functions provided by selected web services. They can optionally have IP restriction * and date validity defined. * * @copyright 2010 Jerome Mouneyrac <jerome@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class token_form extends \moodleform { /** * Defines the form fields. */ public function definition() { global $DB; $mform = $this->_form; $data = $this->_customdata; $mform->addElement('header', 'token', get_string('token', 'webservice'));
> $mform->addElement('text', 'name', get_string('tokenname', 'webservice')); // User selector. > $mform->setType('name', PARAM_TEXT); $attributes = [ > $mform->addElement('static', 'tokennamehint', '', get_string('tokennamehint', 'webservice')); 'multiple' => false, >
'ajax' => 'core_user/form_user_selector', 'valuehtmlcallback' => function($userid) { global $OUTPUT; $context = \context_system::instance(); $fields = \core_user\fields::for_name()->with_identity($context, false); $record = core_user::get_user($userid, 'id ' . $fields->get_sql()->selects, MUST_EXIST); $user = (object)[ 'id' => $record->id, 'fullname' => fullname($record, has_capability('moodle/site:viewfullnames', $context)), 'extrafields' => [], ]; foreach ($fields->get_required_fields([\core_user\fields::PURPOSE_IDENTITY]) as $extrafield) { $user->extrafields[] = (object)[ 'name' => $extrafield, 'value' => s($record->$extrafield) ]; } return $OUTPUT->render_from_template('core_user/form_user_selector_suggestion', $user); }, ]; $mform->addElement('autocomplete', 'user', get_string('user'), [], $attributes); $mform->addRule('user', get_string('required'), 'required', null, 'client'); // Service selector. $options = $DB->get_records_menu('external_services', null, '', 'id, name'); $mform->addElement('select', 'service', get_string('service', 'webservice'), $options); $mform->addRule('service', get_string('required'), 'required', null, 'client'); $mform->setType('service', PARAM_INT); $mform->addElement('text', 'iprestriction', get_string('iprestriction', 'webservice')); $mform->setType('iprestriction', PARAM_RAW_TRIMMED); $mform->addElement('date_selector', 'validuntil', get_string('validuntil', 'webservice'), array('optional' => true));
> // Expires in 30 days. $mform->setType('validuntil', PARAM_INT); > $expires = new DateTime(); > $expires->add(new DateInterval("P30D")); $mform->addElement('hidden', 'action'); > $mform->setDefault('validuntil', $expires->getTimestamp());
$mform->setType('action', PARAM_ALPHANUMEXT); $this->add_action_buttons(true); $this->set_data($data); } /** * Validate the submitted data. * * @param array $data Submitted data. * @param array $files Submitted files. * @return array Validation errors. */ public function validation($data, $files) { global $DB; $errors = parent::validation($data, $files); if ($DB->get_field('user', 'suspended', ['id' => $data['user']], MUST_EXIST)) { $errors['user'] = get_string('suspended', 'core') . ' - ' . get_string('forbiddenwsuser', 'core_webservice'); } return $errors; } }