Slack-compatible webhooks for Matrix. Talk about it on Matrix: #webhooks:t2bot.io
Fork from https://github.com/turt2live/matrix-appservice-webhooks
Invite the webhook bridge to your room (@_webhook:t2bot.io
) and send the message !webhook
. The bridge bot will then send you a link to send messages to in a private message. You must be able to configure the room in order to set up webhooks.
{
"text": "Hello world!",
"format": "plain",
"displayName": "My Cool Webhook",
"avatar_url": "http://i.imgur.com/IDOBtEJ.png"
}
Format can be plain
or html
. Emoji will be converted automatically(:heart:
becomes ❤); set the emoji
property to false
to disable this conversion.
To send a notice or emote, add "msgtype" : "notice"
or "msgtype" : "emote"
in your request.
Before you begin: A matrix homeserver and Node 9 or higher are required.
-
Clone this repository and install the dependencies
git clone http://github.com/redoonetworks/matrix-appservice-webhooks cd matrix-appservice-webhooks npm install
-
Copy
config/sample.yaml
toconfig/config.yaml
and fill in the appropriate fields -
Generate the registration file
node index.js -r -u "http://localhost:9000" -c config/config.yaml
Note: The default URL to run the appservice is
http://localhost:9000
. If you have other appservices, or other requirements, pick an appropriate hostname and port. -
Copy/symlink the registration file to your Synapse directory
cd ~/.synapse ln -s ../matrix-appservice-webhooks/appservice-registration-webhooks.yaml appservice-registration-webhooks.yaml
-
Add the registration file to your
homeserver.yaml
... app_service_config_files: ["appservice-registration-webhooks.yaml"] ...
-
Restart Synapse (
synctl restart
, for example)
Using the port specified during the install (9000
by default), use node index.js -p 9000 -c config/config.yaml -f appservice-registration-webhooks.yaml
from the repository directory.
The bridge should start working shortly afterwards.
A Docker image of the bridge is available to host the bridge yourself. The image can be built yourself with docker build -t matrix-appservice-webhooks .
or you can use the image on docker.io:
docker run -p 9000:9000 -v /path/to/webhooks/dir:/data redoonetworks/matrix-appservice-webhooks
The /path/to/webhooks/dir
should have an appservice-registration-webhooks.yaml
file, config.yaml
, and database.json
. Additional bridge-related data will be stored here.
id: webhooks
hs_token: A_RANDOM_ALPHANUMERIC_STRING # CHANGE THIS
as_token: ANOTHER_RANDOM_ALPHANUMERIC_STRING # CHANGE THIS
namespaces:
users:
- exclusive: true
regex: "@_webhook.*"
aliases: []
rooms: []
url: "http://localhost:9002" # you may need to change this (this should point at the bridge)
sender_localpart: _webhook
rate_limited: false
protocols: null
Use Emoji Images from https://www.emojione.com/licenses/free