Communication: Difference between revisions

From MoodleDocs
mNo edit summary
(corrected interlang link)
Line 63: Line 63:
*[[Capabilities/communication/matrix:moderator| Matrix moderator]].
*[[Capabilities/communication/matrix:moderator| Matrix moderator]].
*[[Capabilities/moodle/course:configurecoursecommunication| Configure course communication settings]].
*[[Capabilities/moodle/course:configurecoursecommunication| Configure course communication settings]].
[[https://docs.moodle.org/es/Comunicación]]
[[en:Comunicación]]

Revision as of 10:22, 3 December 2023

New feature
in Moodle 4.3!


If the Experimental setting Enable communication providers (enablecommunicationsubsystem) is checked, admins can offer Matrix rooms or custom links to existing rooms for teachers to use with learners in their courses.

Course communication

Course settings

  • Teachers can access course communication options from Course navigation > More > Communication if the admin has enabled the feature (see Site administration settings below.)
  • The different communications integrations are known as "providers".
  • Each provider can have their own different individual settings.
  • Start by choosing the provider from the available list
Course Image

Matrix

  • If the admin has set up a Matrix server for the site, a Matrix room will automatically be created when a new course is created. Teachers can configure the room settings by ensuring Matrix is selected as the provider.
  • If desired they can give the room a name and a topic. If they don't give the room a name then the course name is used instead.
MatrixProvider.png
  • A teacher will automatically have the moderator capability in the Matrix room.

Custom link

If there is no Matrix server on the site, teachers can add a link to a Matrix room of their own or to a room in another messaging service such as Telegram by selecting Custom link as the provider and adding the relevant URL.

CustomLink.png

Room / service access

Once saved the room will be available from a 'sticky' icon, present on all pages at the bottom of the screen above the information icon.

CommIcon.png

Site administration settings

Communication Providers in Moodle LMS are currently experimental and must be enabled in the "experimental settings". To Enable communication providers:

  • Navigate to Site administration > Development > Experimental > Experimental settings.
  • Check the checkbox nable communication providers (enablecommunicationsubsystem)
  • Click the Save changes button.

Once the communication providers experimental setting is enabled they can be configured.

  • Admins will then have a new section, Communication, from Site administration > Plugins. From the page Manage communication providers, administrators can configure the installed communication provider plugins server for the site if desired and disable/enable the option for teachers to add custom links to messaging rooms in their courses.
Manage communication providers.png

The currently supported communications providers are:

  • Custom link - Allows communication providers only requiring a URL (like Google Meet) to be linked to a Moodle LMS course
  • Matrix - Allows for pairing a Matrix Element room to a Moodle course, including user management.

Matrix

The Matrix communication provider allows Moodle LMS courses to have an associated room in a Matrix Element instance, and can provide adding and removing of participants in a course to a Matrix Element room.

Currently the integration supports the Synapse Matrix homeserver. To configure your Moodle LMS instance to connect to a Synapse server you will need the URL of the homeserver, and an API Access token for a Synapse Admin user. You will also need the URL of an Element web server to use.

HomeserverURL.png

To configure your Moodle LMS instance to use the Matrix provider:

  • Enter the URL of your Synapse server in the Homeserver URL (matrixhomeserverurl) field
  • Enter the Synapse server API Access token in the Access token (matrixaccesstoken) field
  • Enter the URL of the Element web server in the Element web URL (matrixelementurl) field
  • Click Save changes.

Synapse API Access Token Generation

To generate an API Access Token for Moodle LMS, you need access to a terminal and an existing username and password for and administrator of your Synapse server instance.

To generate an access token to be used with Moodle LMS, enter the following into a terminal:

curl -XPOST -d '{"type":"m.login.password", "user":"@admin:synapse", "password":"secretpass"}' "https://synapse:8008/_matrix/client/r0/login"
  • Where the username is:
@<user name on home server>:<home server domain>
  • Password is the admin user's regular password.

The returned value will look something like:

{"user_id":"@admin:synapse","access_token":"syt_YWRtaW4_OQNsHwWoObhseRAWmUCs_2T29if","home_server":"synapse","device_id":"JPAIBCQCSB"}

The access_token field is the API token to use in the Moodle LMS Matrix communication provider settings.

Capabilities