4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-08-10 05:58:09 +00:00

Add support for ReplaceMessages using regexp to replace messages. #269

This commit is contained in:
Wim
2017-11-15 23:32:49 +01:00
parent 2778580397
commit aff3964078
2 changed files with 60 additions and 46 deletions

View File

@@ -287,6 +287,19 @@ func (gw *Gateway) modifyAvatar(msg config.Message, dest *bridge.Bridge) string
func (gw *Gateway) modifyMessage(msg *config.Message) {
// replace :emoji: to unicode
msg.Text = emojilib.Replace(msg.Text)
br := gw.Bridges[msg.Account]
// loop to replace messages
for _, outer := range br.Config.ReplaceMessages {
search := outer[0]
replace := outer[1]
// TODO move compile to bridge init somewhere
re, err := regexp.Compile(search)
if err != nil {
log.Errorf("regexp in %s failed: %s", msg.Account, err)
break
}
msg.Text = re.ReplaceAllString(msg.Text, replace)
}
msg.Gateway = gw.Name
}