2020-01-10 13:53:33 +00:00
# Setting up Appservice Webhooks (optional)
The playbook can install and configure [matrix-appservice-webhooks ](https://github.com/turt2live/matrix-appservice-webhooks ) for you.
2020-01-14 14:02:37 +00:00
This bridge provides support for Slack-compatible webhooks.
2020-01-10 13:53:33 +00:00
Setup Instructions:
loosely based on [this ](https://github.com/turt2live/matrix-appservice-webhooks/blob/master/README.md )
2020-01-13 16:28:54 +00:00
1. All you basically need is to adjust your `inventory/host_vars/matrix.<domain-name>/vars.yml` :
2020-01-14 13:55:56 +00:00
```yaml
matrix_appservice_webhooks_enabled: true
matrix_appservice_webhooks_api_secret: '< your_secret > '
```
2020-01-10 13:53:33 +00:00
2. In case you want to change the verbosity of logging via `journalctl -fu matrix-appservice-webhooks.service`
2020-01-13 16:28:54 +00:00
you can adjust this in `inventory/host_vars/matrix.<domain-name>/vars.yml` as well.
2020-01-10 13:53:33 +00:00
2020-01-14 13:55:56 +00:00
*Note*: default value is: `info` and availabe log levels are : `info` , `verbose`
```yaml
matrix_appservice_webhooks_log_level: '< log_level > '
```
2020-01-10 13:53:33 +00:00
3. If you've already installed Matrix services using the playbook before, you'll need to re-run it (`--tags=setup-all,start`). If not, proceed with [configuring other playbook services ](configuring-playbook.md ) and then with [Installing ](installing.md ). Get back to this guide once ready.
2020-02-20 07:39:27 +00:00
4. If you're using the [Dimension Integration Manager ](configuring-playbook-dimension.md ), you can configure the Webhooks bridge by opening the Dimension integration manager -> Settings -> Bridges and selecting edit action for "Webhook Bridge". Press "Add self-hosted Bridge" button and populate "Provisioning URL" & "Shared Secret" values from `/matrix/appservice-webhooks/config/config.yaml` file's homeserver URL value and provisioning secret value, respectively.
2020-02-20 05:11:19 +00:00
2020-02-26 00:01:32 +00:00
5. Invite the bridge bot user to your room:
2020-01-14 13:55:56 +00:00
- either with `/invite @_webhook:<domain.name>` (*Note*: Make sure you have administration permissions in your room)
2020-01-10 13:53:33 +00:00
- or simply add the bridge bot to a private channel (personal channels imply you being an administrator)
2020-02-26 00:01:32 +00:00
6. Send a message to the bridge bot in order to receive a private message including the webhook link.
2020-01-14 13:55:56 +00:00
```
!webhook
```
2020-01-10 13:53:33 +00:00
2020-02-26 00:01:32 +00:00
7. The JSON body for posting messages will have to look like this:
2020-01-14 13:55:56 +00:00
```json
{
"text": "Hello world!",
"format": "plain",
"displayName": "My Cool Webhook",
"avatarUrl": "http://i.imgur.com/IDOBtEJ.png"
}
```
You can test this via curl like so:
```
curl --header "Content-Type: application/json" \
--data '{
"text": "Hello world!",
"format": "plain",
"displayName": "My Cool Webhook",
"avatarUrl": "http://i.imgur.com/IDOBtEJ.png"
}' \
< the link you ' ve gotten in 5 . >
```