Proyectos de Subversion Moodle

Rev

Autoría | Ultima modificación | Ver Log |

<?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/>.

namespace enrol_lti\local\ltiadvantage\form;
use enrol_lti\local\ltiadvantage\repository\application_registration_repository;

defined('MOODLE_INTERNAL') || die();

require_once($CFG->libdir . '/formslib.php');

/**
 * The platform_registration_form class, for registering a platform as a consumer of a published tool.
 *
 * @package    enrol_lti
 * @copyright  2021 Jake Dallimore <jrhdallimore@gmail.com>
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
class platform_registration_form extends \moodleform {

    /**
     * Define the form.
     */
    protected function definition() {
        $mform = $this->_form;
        $strrequired = get_string('required');

        // Id.
        $mform->addElement('hidden', 'id');
        $mform->setType('id', PARAM_INT);

        // Name.
        $mform->addElement('text', 'name', get_string('registerplatform:name', 'enrol_lti'));
        $mform->setType('name', PARAM_TEXT);
        $mform->addRule('name', $strrequired, 'required', null, 'client');

        // Platform Id.
        $mform->addElement('text', 'platformid', get_string('registerplatform:platformid', 'enrol_lti'));
        $mform->setType('platformid', PARAM_URL);
        $mform->addRule('platformid', $strrequired, 'required', null, 'client');
        $mform->addHelpButton('platformid', 'registerplatform:platformid', 'enrol_lti');

        // Client Id.
        $mform->addElement('text', 'clientid', get_string('registerplatform:clientid', 'enrol_lti'));
        $mform->setType('clientid', PARAM_TEXT);
        $mform->addRule('clientid', $strrequired, 'required', null, 'client');
        $mform->addHelpButton('clientid', 'registerplatform:clientid', 'enrol_lti');

        // Authentication request URL.
        $mform->addElement('text', 'authenticationrequesturl', get_string('registerplatform:authrequesturl', 'enrol_lti'));
        $mform->setType('authenticationrequesturl', PARAM_URL);
        $mform->addRule('authenticationrequesturl', $strrequired, 'required', null, 'client');
        $mform->addHelpButton('authenticationrequesturl', 'registerplatform:authrequesturl', 'enrol_lti');

        // JSON Web Key Set URL.
        $mform->addElement('text', 'jwksurl', get_string('registerplatform:jwksurl', 'enrol_lti'));
        $mform->setType('jwksurl', PARAM_URL);
        $mform->addRule('jwksurl', $strrequired, 'required', null, 'client');
        $mform->addHelpButton('jwksurl', 'registerplatform:jwksurl', 'enrol_lti');

        // Access token URL.
        $mform->addElement('text', 'accesstokenurl', get_string('registerplatform:accesstokenurl', 'enrol_lti'));
        $mform->setType('accesstokenurl', PARAM_URL);
        $mform->addRule('accesstokenurl', $strrequired, 'required', null, 'client');
        $mform->addHelpButton('accesstokenurl', 'registerplatform:accesstokenurl', 'enrol_lti');

        $buttonarray = [];
        $buttonarray[] = $mform->createElement('submit', 'submitbutton', get_string('savechanges'));
        $buttonarray[] = $mform->createElement('cancel');
        $mform->addGroup($buttonarray, 'buttonar', '', ' ', false);
    }

    /**
     * Provides validation of URL syntax and issuer uniqueness.
     *
     * @param array $data the form data.
     * @param array $files any submitted files.
     * @return array an array of errors.
     */
    public function validation($data, $files) {
        $errors = parent::validation($data, $files);

        // Check URLs look ok.
        foreach ($data as $key => $val) {
            if (isset($this->_form->_types[$key]) && $this->_form->_types[$key] == 'url') {
                if (!filter_var($val, FILTER_VALIDATE_URL)) {
                    $errors[$key] = get_string('registerplatform:invalidurlerror', 'enrol_lti');
                }
            }
        }

        // Check uniqueness of the {issuer, client_id} tuple.
        $appregistrationrepo = new application_registration_repository();
        $appreg = $appregistrationrepo->find_by_platform($data['platformid'], $data['clientid']);
        if ($appreg) {
            if (empty($data['id']) || $appreg->get_id() != $data['id']) {
                $errors['clientid'] = get_string('registerplatform:duplicateregistrationerror', 'enrol_lti');
            }
        }

        return $errors;
    }
}