summaryrefslogtreecommitdiffstats
path: root/bridge
diff options
context:
space:
mode:
authorWim <wim@42.be>2018-12-15 23:11:03 +0100
committerWim <wim@42.be>2018-12-15 23:21:31 +0100
commit859b084814f179345866d98d9c01117a204f6839 (patch)
treedeb6ad05ebc3aeefb4b8b1930dac0c1cc1f3e944 /bridge
parent315a038e001ead142e93eb104bd71d062a0391a2 (diff)
downloadmatterbridge-msglm-859b084814f179345866d98d9c01117a204f6839.tar.gz
matterbridge-msglm-859b084814f179345866d98d9c01117a204f6839.tar.bz2
matterbridge-msglm-859b084814f179345866d98d9c01117a204f6839.zip
Add wait option for populateUsers/Channels (slack) Fixes #579 (#653)
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.
Diffstat (limited to 'bridge')
-rw-r--r--bridge/slack/handlers.go8
-rw-r--r--bridge/slack/helpers.go14
-rw-r--r--bridge/slack/slack.go2
3 files changed, 15 insertions, 9 deletions
diff --git a/bridge/slack/handlers.go b/bridge/slack/handlers.go
index 609fff18..4270e632 100644
--- a/bridge/slack/handlers.go
+++ b/bridge/slack/handlers.go
@@ -75,7 +75,7 @@ func (b *Bslack) handleSlackClient(messages chan *config.Message) {
// When we join a channel we update the full list of users as
// well as the information for the channel that we joined as this
// should now tell that we are a member of it.
- b.populateUsers()
+ b.populateUsers(false)
b.channelsMutex.Lock()
b.channelsByID[ev.Channel.ID] = &ev.Channel
@@ -83,8 +83,8 @@ func (b *Bslack) handleSlackClient(messages chan *config.Message) {
b.channelsMutex.Unlock()
case *slack.ConnectedEvent:
b.si = ev.Info
- b.populateChannels()
- b.populateUsers()
+ b.populateChannels(true)
+ b.populateUsers(true)
case *slack.InvalidAuthEvent:
b.Log.Fatalf("Invalid Token %#v", ev)
case *slack.ConnectionErrorEvent:
@@ -196,7 +196,7 @@ func (b *Bslack) handleMessageEvent(ev *slack.MessageEvent) (*config.Message, er
func (b *Bslack) handleStatusEvent(ev *slack.MessageEvent, rmsg *config.Message) bool {
switch ev.SubType {
case sChannelJoined, sMemberJoined:
- b.populateUsers()
+ b.populateUsers(false)
// There's no further processing needed on channel events
// so we return 'true'.
return true
diff --git a/bridge/slack/helpers.go b/bridge/slack/helpers.go
index a03feb7b..bf9a3257 100644
--- a/bridge/slack/helpers.go
+++ b/bridge/slack/helpers.go
@@ -85,15 +85,18 @@ func (b *Bslack) populateUser(userID string) {
b.usersMutex.Unlock()
}
-func (b *Bslack) populateUsers() {
+func (b *Bslack) populateUsers(wait bool) {
b.refreshMutex.Lock()
- if time.Now().Before(b.earliestUserRefresh) || b.refreshInProgress {
+ if !wait && (time.Now().Before(b.earliestUserRefresh) || b.refreshInProgress) {
b.Log.Debugf("Not refreshing user list as it was done less than %v ago.",
minimumRefreshInterval)
b.refreshMutex.Unlock()
return
}
+ for b.refreshInProgress {
+ time.Sleep(time.Second)
+ }
b.refreshInProgress = true
b.refreshMutex.Unlock()
@@ -129,14 +132,17 @@ func (b *Bslack) populateUsers() {
b.refreshInProgress = false
}
-func (b *Bslack) populateChannels() {
+func (b *Bslack) populateChannels(wait bool) {
b.refreshMutex.Lock()
- if time.Now().Before(b.earliestChannelRefresh) || b.refreshInProgress {
+ if !wait && (time.Now().Before(b.earliestChannelRefresh) || b.refreshInProgress) {
b.Log.Debugf("Not refreshing channel list as it was done less than %v seconds ago.",
minimumRefreshInterval)
b.refreshMutex.Unlock()
return
}
+ for b.refreshInProgress {
+ time.Sleep(time.Second)
+ }
b.refreshInProgress = true
b.refreshMutex.Unlock()
diff --git a/bridge/slack/slack.go b/bridge/slack/slack.go
index cb35aa5c..b2cfbc67 100644
--- a/bridge/slack/slack.go
+++ b/bridge/slack/slack.go
@@ -160,7 +160,7 @@ func (b *Bslack) JoinChannel(channel config.ChannelInfo) error {
return nil
}
- b.populateChannels()
+ b.populateChannels(false)
channelInfo, err := b.getChannel(channel.Name)
if err != nil {