Mattermost Moodle Sync Plugin
This plugin is a required companion of the Mattermost Sync for Moodle plugin.
Installation
- You can get the latest version on the releases page.
- Upload this file in the Mattermost System Console > Plugins > Management page to install the plugin. To learn more about how to upload a plugin, see the documentation.
- After installing the plugin, you should go to the plugin's settings in System Console and set the Webhook Secret (more about this below).
Please note that this plugin is a companion of the Moodle Plugin
System Console Settings
-
Webhook Secret:
Setting a webhook secret allows you to ensure that the requests sent to the payload URL are from Moodle, and is used with every request that is made from Moodle to Mattermost.
Moodle Bot Username
Set the username for the moodle bot which will be a member of every channel made by Moodle and will notify you everytime a user's role is updated in a channel.
Moodle Bot Display Name
Set the display name for the moodle bot.
Moodle Bot Description
Set the description for the moodle bot.
Building the plugin
-
Make sure you have following components installed:
-
Note that this project uses Go modules. Be sure to locate the project outside of $GOPATH
.
To learn more about plugins, see plugin documentation.
-
Build your plugin:
make dist
-
This will produce a single plugin file (with support for multiple architectures) for upload to your Mattermost server:
dist/com.mattermost.moodle-sync-x.y.z.tar.gz
Development
To avoid having to manually install your plugin, build and deploy your plugin using one of the following options.
Deploying with Local Mode
If your Mattermost server is running locally, you can enable local mode to streamline deploying your plugin. Edit your server configuration as follows:
{
"ServiceSettings": {
...
"EnableLocalMode": true,
"LocalModeSocketLocation": "/var/tmp/mattermost_local.socket"
}
}
and then deploy your plugin:
make deploy
You may also customize the Unix socket path:
export MM_LOCALSOCKETPATH=/var/tmp/alternate_local.socket
make deploy
Deploying with credentials
Alternatively, you can authenticate with the server's API with credentials:
export MM_SERVICESETTINGS_SITEURL=http://localhost:8065
export MM_ADMIN_USERNAME=admin
export MM_ADMIN_PASSWORD=password
make deploy
or with a personal access token:
export MM_SERVICESETTINGS_SITEURL=http://localhost:8065
export MM_ADMIN_TOKEN=j44acwd8obn78cdcx7koid4jkr
make deploy
Made with ♥ by Brightscout