Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Do not use webhooks when token is configured (slack) (fixes #1123) (#1134) | Wim | 2020-05-14 | 1 | -1/+1 |
| | |||||
* | Prevent image/message looping (slack). Fixes #1088 (#1096) | Wim | 2020-04-18 | 1 | -6/+10 |
| | | | Also check for our matterbridge ID in Blocks set in SubMessages. | ||||
* | Don't transmit typing events from ourselves (slack/discord) (#1056) | Qais Patankar | 2020-03-22 | 1 | -1/+10 |
| | |||||
* | Use blocks not attachments (slack) (#1048) | Qais Patankar | 2020-03-21 | 1 | -2/+8 |
| | | | | This removes the extra space below messages, as shown in https://user-images.githubusercontent.com/923242/77235190-a3359980-6bab-11ea-8b7b-697d730ae5c1.png | ||||
* | Ignore ConnectingEvent (slack) (#1041) | Qais Patankar | 2020-03-18 | 1 | -1/+1 |
| | |||||
* | Use upstream slack-go/slack again (#1018) | Wim | 2020-03-01 | 1 | -1/+1 |
| | |||||
* | Convert slack bold/strike to correct markdown (slack). Fixes #918 (#930) | Wim | 2019-10-27 | 1 | -0/+1 |
| | |||||
* | Suppress unhandled HelloEvent message (slack) (#913) | Qais Patankar | 2019-10-04 | 1 | -2/+2 |
| | |||||
* | Disable user lookups on delete messages (slack) (#812) | Wim | 2019-04-23 | 1 | -11/+11 |
| | |||||
* | Ignore message_replied and hidden messages (slack). Fixes #709 (#779) | Wim | 2019-03-27 | 1 | -6/+12 |
| | |||||
* | Refactor channel and user management (slack) (#766) | Duco van Amstel | 2019-03-15 | 1 | -40/+8 |
| | |||||
* | Add extra debug of SubMessage to empty messages error (slack). #709 | Wim | 2019-02-15 | 1 | -0/+3 |
| | |||||
* | Optimize handling of very large slack teams. Fixes #695 | Wim | 2019-01-30 | 1 | -3/+0 |
| | | | | | | | | | | Stop getting users if we reach 2000 users. Slack will rate-limit us even if we follow their limits. This means that we now have to lookup every user that says a message for the first time. This should be less intensive on the API. This also disables partly fb713ed91bfb48c0037e489f80be85c54e69953a for now. ChannelMembers will not be filled. | ||||
* | Add initial support for getting ChannelMember info of all bridges (#678) | Wim | 2019-01-18 | 1 | -0/+52 |
| | | | | | | | | | | | | | | * Add initial support for getting ChannelMember info of all bridges. Adds an EventGetChannelMembers event, which gets send every x time to all bridges. Bridges should respond on this event with a Message containing ChannelMembers in the EventGetChannelMembers key in the Extra field. handleEventGetChannelMembers will handle this Message and sets the contained ChannelMembers to the Bridge struct. * Add ChannelMembers support to the slack bridge | ||||
* | Ignore LatencyReport event (slack) | Wim | 2019-01-02 | 1 | -0/+2 |
| | |||||
* | Try downloading files again if slack is too slow (slack). Closes #655 (#656) | Jerry Heiselman | 2018-12-19 | 1 | -2/+8 |
| | |||||
* | Add wait option for populateUsers/Channels (slack) Fixes #579 (#653) | Wim | 2018-12-15 | 1 | -5/+5 |
| | | | | | When setting wait to true, we wait until the populating isn't in progress anymore. This is used on startup connections where we really need the initial information which could take a long time on big servers. | ||||
* | Populate user on channel join (slack) (#644) | David Hill | 2018-12-15 | 1 | -0/+3 |
| | |||||
* | Sync channel topics between Slack bridges (#585) | Patrick Connolly | 2018-11-26 | 1 | -1/+6 |
| | | | Added logic to allow for configurable synchronisation of topics and purposes of channels between Slack bridges. | ||||
* | Handle deleted/edited thread starting messages (slack). Fixes #600 (#605) | Wim | 2018-11-25 | 1 | -0/+7 |
| | |||||
* | Add protocol to msg.ID in cache (#596) | Wim | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | Fix golint linter issues and enable it in CI (#593) | Duco van Amstel | 2018-11-15 | 1 | -7/+7 |
| | |||||
* | Fix regression in skip logic (slack). (#592) | Patrick Connolly | 2018-11-15 | 1 | -1/+6 |
| | |||||
* | Fix file caching issue (slack). #572 (#575) | Patrick Connolly | 2018-11-14 | 1 | -7/+22 |
| | |||||
* | Restore file comments coming from Slack (#583) | Duco van Amstel | 2018-11-12 | 1 | -20/+9 |
| | |||||
* | Make scopelint happy | Wim | 2018-11-08 | 1 | -0/+1 |
| | |||||
* | Act only on UserTypingEvents when enabled | Wim | 2018-11-08 | 1 | -0/+3 |
| | |||||
* | Add ability to show when user is typing across Slack bridges (#559) | Patrick Connolly | 2018-11-08 | 1 | -1/+29 |
| | |||||
* | Fix Slack edit usernames (#570) | Duco van Amstel | 2018-11-08 | 1 | -10/+0 |
| | |||||
* | Refactor and clean-up handlers. (slack) (#533) | Duco van Amstel | 2018-11-07 | 1 | -193/+128 |
| | |||||
* | Clean up various stuff (#508) | David Hill | 2018-11-07 | 1 | -6/+5 |
| | | | * various cleanups | ||||
* | Preserve threading between Slack instances (#529) | Patrick Connolly | 2018-11-07 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | * Opportunistically preserve Slack threading when parent thread in cache. [#529] * Removed slack-specific processing from gateway. * Added docs. * Add option to enable threading, with default to off. * Did cleanup on @42wim's comments. * Update gateway/gateway.go Co-Authored-By: patcon <patrick.c.connolly@gmail.com> * Suggestion from @42wim :) * Suggestions from @42wim. * More suggestions. | ||||
* | Clean up user and channel information management (slack) (#521) | Duco van Amstel | 2018-10-16 | 1 | -20/+4 |
| | |||||
* | Clean up code and strengthening (slack) (#519) | Duco van Amstel | 2018-10-13 | 1 | -56/+72 |
| | | | | | | | | | | | | | Changes include: - Refactor of strings into package-wide constants. - Predeclaration of regexps to be instantiated at package load time. - Checking of unchecked errors. - Structural changes: - Adding verifications to type-casting code. - Remove unnecessary 'len(X) > 0' checks before iterating over X. - Remove unnecessary 'else' clause after 'if' with 'return'. - Unexporting of public fields of Bridge struct. - Formatting: - One-field-per-line struct definitions. | ||||
* | Refactor slack bridge prelude (#517) | Duco van Amstel | 2018-10-12 | 1 | -0/+337 |
Distributing the source of the Slack bridge across multiple files to increase readability and as a prelude to various refactors and clean-ups. |