Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 310 and 311] [Versions 310 and 400] [Versions 310 and 401] [Versions 310 and 402] [Versions 310 and 403] [Versions 39 and 310]

   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   * Form class for mybackpack.php
  19   *
  20   * @package    core
  21   * @subpackage badges
  22   * @copyright  2012 onwards Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   * @author     Yuliya Bozhko <yuliya.bozhko@totaralms.com>
  25   */
  26  
  27  namespace core_badges\form;
  28  
  29  defined('MOODLE_INTERNAL') || die();
  30  
  31  require_once($CFG->libdir . '/formslib.php');
  32  require_once($CFG->libdir . '/badgeslib.php');
  33  
  34  use html_writer;
  35  use moodleform;
  36  use stdClass;
  37  
  38  /**
  39   * Form to edit backpack initial details.
  40   *
  41   */
  42  class backpack extends external_backpack {
  43  
  44      /**
  45       * Defines the form
  46       */
  47      public function definition() {
  48          global $USER, $PAGE, $OUTPUT, $CFG;
  49          $mform = $this->_form;
  50          $this->_customdata['userbackpack'] = 1;
  51  
  52          $mform->addElement('html', html_writer::tag('span', '', array('class' => 'notconnected', 'id' => 'connection-error')));
  53          $mform->addElement('header', 'backpackheader', get_string('backpackconnection', 'badges'));
  54          $mform->addHelpButton('backpackheader', 'backpackconnection', 'badges');
  55          $mform->addElement('hidden', 'userid', $USER->id);
  56          $mform->setType('userid', PARAM_INT);
  57          $freeze = [];
  58          if (isset($this->_customdata['email'])) {
  59              // Email will be passed in when we're in the process of verifying the user's email address,
  60              // so set the connection status, lock the email field, and provide options to resend the verification
  61              // email or cancel the verification process entirely and start over.
  62              $freeze = ['backpackemail'];
  63              $mform->addElement('hidden', 'password', $this->_customdata['backpackpassword']);
  64              $mform->setType('password', PARAM_RAW);
  65              $mform->addElement('hidden', 'externalbackpackid', $this->_customdata['backpackid']);
  66              $mform->setType('externalbackpackid', PARAM_INT);
  67              $status = html_writer::tag('span', get_string('backpackemailverificationpending', 'badges'),
  68                  array('class' => 'notconnected', 'id' => 'connection-status'));
  69          } else {
  70              $sitebackpacks = badges_get_site_backpacks();
  71              $choices = [];
  72              $restrictedoptions = [];
  73              foreach ($sitebackpacks as $backpack) {
  74                  $choices[$backpack->id] = $backpack->backpackweburl;
  75                  if ($backpack->apiversion == OPEN_BADGES_V2P1) {
  76                      $restrictedoptions[] = $backpack->id;
  77                  }
  78              }
  79              $mform->addElement('select', 'externalbackpackid', get_string('backpackprovider', 'badges'), $choices);
  80              $mform->setType('externalbackpackid', PARAM_INT);
  81              $mform->setDefault('externalbackpackid', $CFG->badges_site_backpack);
  82              $mform->hideIf('password', 'externalbackpackid', 'in', $restrictedoptions);
  83              $mform->hideIf('backpackemail', 'externalbackpackid', 'in', $restrictedoptions);
  84  
  85              $status = html_writer::tag('span', get_string('notconnected', 'badges'),
  86                  array('class' => 'notconnected', 'id' => 'connection-status'));
  87          }
  88          $mform->addElement('static', 'status', get_string('status'), $status);
  89  
  90          $this->add_auth_fields($this->_customdata['email'] ?? $USER->email, !isset($this->_customdata['email']));
  91  
  92          $mform->setDisableShortforms(false);
  93  
  94          // Freeze any elemnts after definition.
  95          if ($freeze) {
  96              $mform->freeze($freeze);
  97          }
  98          $this->add_action_buttons();
  99      }
 100  
 101      /**
 102       * Override add_action_buttons
 103       *
 104       * @param bool $cancel
 105       * @param null|text $submitlabel
 106       */
 107      public function add_action_buttons($cancel = true, $submitlabel = null) {
 108          $mform = $this->_form;
 109          if (isset($this->_customdata['email'])) {
 110              $buttonarray = [];
 111              $buttonarray[] = &$mform->createElement('submit', 'submitbutton',
 112                                                      get_string('backpackconnectionresendemail', 'badges'));
 113              $buttonarray[] = &$mform->createElement('submit', 'revertbutton',
 114                                                      get_string('backpackconnectioncancelattempt', 'badges'));
 115              $mform->addGroup($buttonarray, 'buttonar', '', [''], false);
 116              $mform->closeHeaderBefore('buttonar');
 117          } else {
 118              // Email isn't present, so provide an input element to get it and a button to start the verification process.
 119              parent::add_action_buttons(false, get_string('backpackconnectionconnect', 'badges'));
 120          }
 121      }
 122  
 123      /**
 124       * Validates form data
 125       */
 126      public function validation($data, $files) {
 127          global $CFG;
 128  
 129          $errors = parent::validation($data, $files);
 130          if (badges_open_badges_backpack_api() == OPEN_BADGES_V2P1) {
 131              return $errors;
 132          }
 133          // We don't need to verify the email address if we're clearing a pending email verification attempt.
 134          if (!isset($data['revertbutton'])) {
 135              $check = new stdClass();
 136              $check->email = $data['backpackemail'];
 137              $check->password = $data['password'];
 138              $sitebackpack = badges_get_site_backpack($data['externalbackpackid']);
 139              $bp = new \core_badges\backpack_api($sitebackpack, $check);
 140  
 141              $result = $bp->authenticate();
 142              if ($result === false || !empty($result->error)) {
 143                  $errors['backpackemail'] = get_string('backpackconnectionunexpectedresult', 'badges');
 144                  $msg = $bp->get_authentication_error();
 145                  if (!empty($msg)) {
 146                      $errors['backpackemail'] .= '<br/><br/>';
 147                      $errors['backpackemail'] .= get_string('backpackconnectionunexpectedmessage', 'badges', $msg);
 148                  }
 149              }
 150          }
 151          return $errors;
 152      }
 153  }