summaryrefslogtreecommitdiffstats
path: root/gateway/router.go
Commit message (Collapse)AuthorAgeFilesLines
* Do some small cleanupsWim2018-02-271-5/+1
|
* Use prefixed-formatter for better loggingWim2018-02-211-3/+3
|
* Move Sirupsen => sirupsenWim2018-02-201-1/+2
|
* Add initial support for an external mediaserver. #278Wim2017-11-241-0/+1
| | | | | | | | Add 2 extra options `MediaServerUpload` and `MediaServerDownload`, where the URL for upload and download can be specified. See https://github.com/42wim/matterbridge/wiki/Mediaserver-setup-%5Badvanced%5D for an example with caddy
* Do not add messages without ID to cacheWim2017-08-291-1/+1
|
* Add support for editing messages across bridges. Currently mattermost/discord.Wim2017-08-281-1/+7
| | | | | | | | | | | | | | | | | | | | | | Our Message type has an extra ID field which contains the message ID of the specific bridge. The Send() function has been modified to return a msg ID (after the message to that specific bridge has been created). There is a lru cache of 5000 entries (message IDs). All in memory, so editing messages will only work for messages the bot has seen. Currently we go out from the idea that every message ID is unique, so we don't keep the ID separate for each bridge. (we do for each gateway though) If there's a new message from a bridge, we put that message ID in the LRU cache as key and the []*BrMsgID as value (this slice contains the message ID's of each bridge that received the new message) If there's a new message and this message ID already exists in the cache, it must be an updated message. The value from the cache gets checked for each bridge and if there is a message ID for this bridge, the ID will be added to the Message{} sent to that bridge. If the bridge sees that the ID isn't empty, it'll know it has to update the message with that specific ID instead of creating a new message.
* Remove unused functionWim2017-07-301-10/+0
|
* Handle same account in multiple gateways betterWim2017-07-301-10/+9
|
* Refactor. Add testsWim2017-07-251-0/+117