summaryrefslogtreecommitdiffstats
path: root/gateway
Commit message (Collapse)AuthorAgeFilesLines
...
* Obey the Gateway value from the json (api). Closes #344Wim2018-01-211-1/+11
|
* Make edits/delete work for bridges that gets reused. Closes #342Wim2018-01-201-4/+7
|
* Change RemoteNickFormat replacement order. Closes #336Wim2018-01-141-1/+1
|
* Add initial support for an external mediaserver. #278Wim2017-11-242-0/+32
| | | | | | | | 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
* Add support for uploaded images/video/files (matrix)Wim2017-11-221-1/+2
|
* Add support for ReplaceNicks using regexp to replace nicks. Closes #269Wim2017-11-201-0/+14
|
* Add support for ReplaceMessages using regexp to replace messages. #269Wim2017-11-151-0/+13
|
* Do not ignore empty messages with files for bridges that support itWim2017-11-121-3/+6
|
* Add StripNick option, only allow alphanumerical nicks. Closes #285Wim2017-10-271-0/+4
|
* Make [general] settings default, not total override (specifically ↵Patrick Connolly2017-10-201-2/+2
| | | | | | | | | | RemoteNickFormat) (#279) * Use general settings as default, that specific protocols override. * Fixed tab formatting. * Clarified override precedence of [general] config.
* Download files from slack and reupload to mattermost (slack/mattermost). ↵Wim2017-09-211-1/+1
| | | | | | | | | | | | Closes #255 Refactor message.Extra to a map[string][]interface{} to have a bit more flexibility for stuffing extra stuff. For attached files from slack, files < 1MB size get downloaded (in memory), and get put into Extra["file"][]config.FileInfo (containing a pointer to the buffer and the filename). This is not async so slack channels with lots of attached files may suffer a slowdown. (the download timeout is set at 5 seconds).
* Relay attachments from mattermost to slack (slack). Closes #260Wim2017-09-181-0/+15
|
* Do not add messages without ID to cacheWim2017-08-292-2/+4
|
* Remove debug messageWim2017-08-281-3/+0
|
* Add support for editing messages across bridges. Currently mattermost/discord.Wim2017-08-282-7/+32
| | | | | | | | | | | | | | | | | | | | | | 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.
* Modify Send() to return also a message idWim2017-08-271-1/+7
|
* Remove unused functionWim2017-07-301-10/+0
|
* Handle same account in multiple gateways betterWim2017-07-302-12/+12
|
* Update tests with gofmtWim2017-07-252-13/+13
|
* Refactor. Add testsWim2017-07-254-112/+460
|
* Fix in/out logic. Closes #224Wim2017-07-221-24/+26
|
* Fix message modificationWim2017-07-211-5/+6
|
* Fix megacheck / go vet issuesWim2017-07-141-29/+23
|
* Replace :emoji: with unicode chars. #215Wim2017-07-091-0/+7
| | | | Add vendor github.com/peterhellberg/emojilib
* Fix samechannel gateway issue. Closes #207Wim2017-06-271-0/+12
|
* Add UserID to each message. Closes #200Wim2017-06-181-3/+0
|
* Add option IgnoreMessages to ignore messages based on regexp. (all). Closes #70Wim2017-06-181-0/+18
|
* Remove need for channel when using api. Closes #195Wim2017-06-151-0/+13
|
* Fix utf-8 issues #193Wim2017-06-151-1/+10
|
* Allow reuse of api in different gateways. See #189Wim2017-06-071-5/+16
|
* Add gateway name to messagesWim2017-06-051-0/+1
|
* Add NOPINGNICK option. Closes #175Wim2017-05-301-0/+1
|
* Fix sending to different channels on same account (slack). Closes #177Wim2017-05-241-1/+2
|
* Rejoin channel when kicked (irc). Closes #146Wim2017-04-081-0/+9
|
* Modify iconurl correctly (mattermost). Closes #145Wim2017-04-081-0/+12
|
* Fix join/leave regression (irc)v0.11.0-beta2Wim2017-04-031-0/+4
|
* Reuse connection when using same bridge with another gateway. See #87Wim2017-04-012-55/+84
|
* RefactorWim2017-03-282-70/+49
|
* Fail when bridge is unable to join a channel (general)Wim2017-03-161-1/+4
|
* Do not forward empty message from any bridge (general). Closes #128Wim2017-03-021-0/+4
|
* Add REST API supportWim2017-02-181-0/+6
|
* Refactor samechannelgatewayWim2017-02-172-90/+35
|
* Refactor. Make extra options easier for other protocolsWim2017-02-141-4/+12
|
* Refactor to handle disconnects/reconnects better.Wim2017-02-141-13/+27
| | | | Now try to reconnect every 60 seconds until forever.
* Fix IgnoreNicks (global). Closes #115Wim2017-01-212-21/+20
|
* Add channel key support (irc). Closes #27Wim2017-01-041-7/+18
|
* Add support for RemoteNickFormat in general configuration (samechannelgateway)Wim2016-11-201-1/+4
|
* Add support for RemoteNickFormat in general configurationWim2016-11-201-1/+4
|
* Add gateway.inout config for bidirectional bridges. Closes #85Wim2016-11-201-1/+5
|
* Fix ShowJoinPart from irc bridge. Closes #72Wim2016-11-141-0/+8
|