summaryrefslogtreecommitdiffstats
path: root/gateway/gateway_test.go
Commit message (Collapse)AuthorAgeFilesLines
* Do configuration validation on start-up. Fixes #888 (#889)Wim2019-09-091-1/+13
| | | | | | Fail if: * we don't have any gateways configured * we have gateways configured but with non-existing bridge configuration * we have gateways configured without any configuration
* Make all loggers derive from non-default instance (#728)Wim2019-02-231-14/+32
|
* Add scripting (tengo) support for every incoming message (#731)Wim2019-02-231-0/+10
| | | | | | | | | | | | | | | | | | | | | | 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
* Allow regexs in ignoreNicks. Closes #690 (#720)Wim2019-02-171-12/+12
|
* Use logrus imports instead of log (#662)Duco van Amstel2018-12-261-2/+1
|
* Refactor gateway (#648)Wim2018-12-121-0/+113
| | | | | | | * Decrease complexity of handleMessage, handleReceive, handleFiles * Move handlers to handlers.go * Split ignoreMessage up in ignoreTextEmpty, ignoreNicks and IgnoreTexts * Add ignoreEvent * Add testcase for ignoreTextEmpty, ignoreNicks, ignoreTexts and ignoreEvent
* Extract bridgeMap into own package to improve testability (#601)Patrick Connolly2018-11-301-1/+2
|
* Make goconst linter happyWim2018-11-081-24/+30
|
* Fix race in gateway test. (#520)Duco van Amstel2018-10-131-29/+132
|
* Reconnect on quit. (irc) See #431 (#445)Liam Stanley2018-06-091-1/+2
| | | | | * potential fixes for #431 * go: fix formatting/gofmt/goreturns
* Fix tests and make megacheck happyWim2018-03-051-20/+10
|
* Update tests with gofmtWim2017-07-251-12/+12
|
* Refactor. Add testsWim2017-07-251-0/+288