5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-09 15:40:27 +00:00
matterbridge/bridge
Wim 1bb39eba87
Add scripting (tengo) support for every incoming message (#731)
TengoModifyMessage allows you to specify the location of a tengo (https://github.com/d5/tengo/) script.
This script will receive every incoming message and can be used to modify the Username and the Text of that message.
The script will have the following global variables:
to modify: msgUsername and msgText
to read: msgChannel and msgAccount

The script is reloaded on every message, so you can modify the script on the fly.

Example script can be found in https://github.com/42wim/matterbridge/tree/master/gateway/bench.tengo
and https://github.com/42wim/matterbridge/tree/master/contrib/example.tengo

The example below will check if the text contains blah and if so, it'll replace the text and the username of that message.
text := import("text")
if text.re_match("blah",msgText) {
    msgText="replaced by this"
    msgUsername="fakeuser"
}

More information about tengo on: https://github.com/d5/tengo/blob/master/docs/tutorial.md and
https://github.com/d5/tengo/blob/master/docs/stdlib.md
2019-02-23 16:39:44 +01:00
..
api Update vendor, move to labstack/echo/v4 Fixes #698 2019-01-31 17:06:36 +01:00
config Add scripting (tengo) support for every incoming message (#731) 2019-02-23 16:39:44 +01:00
discord Allow sending discriminator with Discord username (#726) 2019-02-22 14:28:27 +01:00
gitter Fix golint linter issues and enable it in CI (#593) 2018-11-15 20:43:43 +01:00
helper Add support for markdown to HTML conversion (matrix). Closes #663 (#670) 2019-01-06 22:25:19 +01:00
irc Support quits from irc correctly. Fixes #722 (#724) 2019-02-17 22:43:04 +01:00
matrix Detect html nicks in RemoteNickFormat (matrix). Fixes #696 (#719) 2019-02-17 21:48:32 +01:00
mattermost Add support for mattermost threading (#627) 2019-01-09 21:50:03 +01:00
rocketchat Refactor and update RocketChat bridge 2019-02-15 18:19:34 +01:00
slack Add extra debug option (slack) 2019-02-22 19:36:50 +01:00
sshchat Add various sshchat fixes (#675) 2019-01-05 15:42:36 +01:00
steam Refactor steam bridge (#630) 2018-12-07 23:48:24 +01:00
telegram Refactor telegram (#649) 2018-12-12 23:50:08 +01:00
whatsapp Add initial WhatsApp support (#711) 2019-02-21 20:28:13 +01:00
xmpp Fix golint linter issues and enable it in CI (#593) 2018-11-15 20:43:43 +01:00
zulip Allow zulip bridge to specify topic per channel. Closes #701 (#723) 2019-02-17 21:50:05 +01:00
bridge.go Add initial support for getting ChannelMember info of all bridges (#678) 2019-01-18 18:35:31 +01:00