Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.3.x will end 7 October 2024 (12 months).
  • Bug fixes for security issues in 4.3.x will end 21 April 2025 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.2.x is supported too.
   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  namespace communication_matrix\local\spec;
  18  
  19  /**
  20   * Matrix API to support version v1.1 of the Matrix specification.
  21   *
  22   * https://spec.matrix.org/v1.1/client-server-api/
  23   *
  24   * @package    communication_matrix
  25   * @copyright  2023 Andrew Lyons <andrew@nicols.co.uk>
  26   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  27   */
  28  class v1p1 extends \communication_matrix\matrix_client {
  29      // Use the standard matrix API for these features.
  30      use features\matrix\create_room_v3;
  31      use features\matrix\get_room_members_v3;
  32      use features\matrix\remove_member_from_room_v3;
  33      use features\matrix\update_room_avatar_v3;
  34      use features\matrix\update_room_name_v3;
  35      use features\matrix\update_room_topic_v3;
  36      use features\matrix\upload_content_v3;
  37      use features\matrix\update_room_power_levels_v3;
  38      use features\matrix\get_room_powerlevels_from_sync_v3;
  39  
  40      // We use the Synapse API here because it can invite users to a room without requiring them to accept the invite.
  41      use features\synapse\invite_member_to_room_v1;
  42  
  43      // User information and creation is a server-specific feature.
  44      use features\synapse\get_user_info_v2;
  45      use features\synapse\create_user_v2;
  46      use features\synapse\get_room_info_v1;
  47  }