- new node "Invite Room" for receiving room invites - new node "Leave Room" for leaving a room - updated examples with new nodes
9.4 KiB
Examples
These are examples of what is possible with the node-red-contrib-matrix-chat module for Node-RED
If you want to try any of them out just copy their JSON contents from their .json file and use the hamburger menu in Node-RED to import the flow.
Build something cool with these nodes? Feel free to submit a pull request to share it!
Index
- Create User with Shared Secret Registration
- Create/Edit Synapse User
- Use function node to run any command
- Respond to "ping" with "pong"
- Respond to "html" with an HTML message
- Respond to "image" with an uploaded image
- Respond to "file" with an uploaded file
- Respond to "react" with a reaction
- Accept room invites from specific user
- Leave room when someone says "bye"
- Remove messages containing "delete"
- Respond to "users" with full list of server users
- Respond to "newroom" by creating new room and inviting user
- Respond to "joinroom <room_id_or_alias>" by joining mentioned room
- Respond to "rooms <user_id>" with user's rooms (list server's rooms if <user_id> is left blank)
- Respond to "whois <user_id>" with information about the user's session
- Respond to "room_users" with current room's users
- Download & store all received files/images
- Kick/Ban user from room
- Deactivate user
Create user with Shared Secret Registration
Use this flow to create users on servers with closed registration. You also use this endpoint to create your first admin user as it is the same as running the local python script on the server. This requires your registration secret from your homeserver.yaml Synapse server configuration file.
Edit the object on the inject node to the user/pass combo you want to create and hit the inject button (to the left of the inject node).
Note: This only works on Synapse servers.
Create/Edit Synapse User
Allows an administrator to create or modify a user account with a specified msg.userId
.
Use function node to run any command
If we do not have a node for something you want to do you can do this manually with a function node. We now have a node for removing events but this is still a good example.
Note: You should make sure to catch any errors in your function node otherwise you could cause Node-RED to crash.
To view what sort of functions you have access to check out the client.ts
file from matrix-js-sdk
here.
Respond to "ping" with "pong"
Use this flow to respond to anyone that says "ping" with "pong" into the same room.
Respond to "html" with an HTML message
Use this flow to respond to anyone that says "html" with an example HTML message. This shows how easy it is to send HTML.
Respond to "image" with an uploaded image
You will need an image on the machine running Node-RED. In this case example.png exists inside the Node-RED directory.
Respond to "file" with an uploaded file
You will need a file on the machine running Node-RED. In this case sample.pdf exists inside the Node-RED directory.
Respond to "react" with a reaction
Give a 👍 reaction when someone says "react"
Accept room invites from specific user
Accept room invites from specific user.
Leave room when someone says bye
Leave room when someone says "bye".
Remove messages containing "delete"
Any messages containing "delete" will try to be removed by the client.
Respond to "users" with full list of server users
When someone sends the text "users" they get a HTML message back containing all the current users on the server. If your server has a lot of users this paginates and sends a message with 25 users per message.
This requires admin privileges.
Respond to "newroom" by creating new room and inviting user
When someone sends "newroom" a new room will be created and the user that said the message will be invited. The client will also send a welcome message into the new room.
Respond to "joinroom <room_id_or_alias>" by joining mentioned room
When someone sends "newroom" a new room will be created and the user that said the message will be invited. The client will also send a welcome message into the new room.
Respond to "rooms <user_id>" with user's rooms (list server's rooms if <user_id> is left blank)
Responds to "rooms <user_id>" with that user's rooms. If the message is just "rooms" it responds with a list of all rooms the server is participating in.
Note: If there are a lot of rooms this may fail to send the message as it is too large. This also only works for user's that are on the current server.
This requires admin privileges.
Respond to "whois <user_id>" with information about the user's session
This lists out the user's session info. Each session contains the IP address, when it was last seen, and the user agent. Useful to find out more about a specific user on your server.
Note: If there are a lot of sessions this may fail to send the message as it is too large. This also only works for user's that are on the current server.
This requires admin privileges.
Respond to "room_users" with current room's users
List out the users participating in a room.
Note: If there are a lot of users in the room this will fail to send due to a large message error.
Download & store all received files/images
Download received files/images. If the file is encrypted it will decrypt it for you. The decrypt node downloads the file for you otherwise you need to use a HTTP Request node to download the file.
Note: You may need to edit the storage directory for this to work. Default action is to create a downloads
folder in the Node-RED directory and places files in that but there is a good chance your Node-RED instance doesn't have access to write to this directory.
Kick/Ban user from room
If you say "kick @test:example.com" the bot will kick @test:example.com from the current room.
If you say "ban @test:example.com" the bot will ban @test:example.com from the current room.
Note: This requires the bot to have permissions to kick/ban in the current room.
Deactivate user
If you say "deactivate_user @test:example.com" the bot will deactivate the @test:example.com account on the server.
Note: This requires the bot to be a server admin.
WARNING: Accounts that are deleted cannot be restored. If you want to temp-disable edit the user instead.
Force user to join room
If you say "force_join @test:example.com !320j90mf0394f:example.com" the bot will force the user @test:example.com
into room !320j90mf0394f:example.com
Note: This requires the bot to be a server admin. This also only works for rooms on the same server.