mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-22 15:10:28 +00:00
Prevent Slack API rate-limit overflow (#539)
This commit is contained in:
parent
3b8837a16b
commit
1269be1d04
@ -4,6 +4,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"regexp"
|
"regexp"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/nlopes/slack"
|
"github.com/nlopes/slack"
|
||||||
)
|
)
|
||||||
@ -57,7 +59,25 @@ func (b *Bslack) getChannelByID(ID string) (*slack.Channel, error) {
|
|||||||
return nil, fmt.Errorf("%s: channel %s not found", b.Account, ID)
|
return nil, fmt.Errorf("%s: channel %s not found", b.Account, ID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const minimumRefreshInterval = 10 * time.Second
|
||||||
|
|
||||||
|
var (
|
||||||
|
refreshMutex sync.Mutex
|
||||||
|
refreshInProgress bool
|
||||||
|
earliestChannelRefresh = time.Now()
|
||||||
|
earliestUserRefresh = time.Now()
|
||||||
|
)
|
||||||
|
|
||||||
func (b *Bslack) populateUsers() {
|
func (b *Bslack) populateUsers() {
|
||||||
|
refreshMutex.Lock()
|
||||||
|
if time.Now().Before(earliestUserRefresh) || refreshInProgress {
|
||||||
|
b.Log.Debugf("Not refreshing user list as it was done less than %d seconds ago.", int(minimumRefreshInterval.Seconds()))
|
||||||
|
refreshMutex.Unlock()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
refreshInProgress = true
|
||||||
|
refreshMutex.Unlock()
|
||||||
|
|
||||||
users, err := b.sc.GetUsers()
|
users, err := b.sc.GetUsers()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
b.Log.Errorf("Could not reload users: %#v", err)
|
b.Log.Errorf("Could not reload users: %#v", err)
|
||||||
@ -74,9 +94,21 @@ func (b *Bslack) populateUsers() {
|
|||||||
b.usersMutex.Lock()
|
b.usersMutex.Lock()
|
||||||
defer b.usersMutex.Unlock()
|
defer b.usersMutex.Unlock()
|
||||||
b.users = newUsers
|
b.users = newUsers
|
||||||
|
|
||||||
|
earliestUserRefresh = time.Now().Add(minimumRefreshInterval)
|
||||||
|
refreshInProgress = false
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Bslack) populateChannels() {
|
func (b *Bslack) populateChannels() {
|
||||||
|
refreshMutex.Lock()
|
||||||
|
if time.Now().Before(earliestChannelRefresh) || refreshInProgress {
|
||||||
|
b.Log.Debugf("Not refreshing channel list as it was done less than %d seconds ago.", int(minimumRefreshInterval.Seconds()))
|
||||||
|
refreshMutex.Unlock()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
refreshInProgress = true
|
||||||
|
refreshMutex.Unlock()
|
||||||
|
|
||||||
newChannelsByID := map[string]*slack.Channel{}
|
newChannelsByID := map[string]*slack.Channel{}
|
||||||
newChannelsByName := map[string]*slack.Channel{}
|
newChannelsByName := map[string]*slack.Channel{}
|
||||||
|
|
||||||
@ -106,6 +138,9 @@ func (b *Bslack) populateChannels() {
|
|||||||
defer b.channelsMutex.Unlock()
|
defer b.channelsMutex.Unlock()
|
||||||
b.channelsByID = newChannelsByID
|
b.channelsByID = newChannelsByID
|
||||||
b.channelsByName = newChannelsByName
|
b.channelsByName = newChannelsByName
|
||||||
|
|
||||||
|
earliestChannelRefresh = time.Now().Add(minimumRefreshInterval)
|
||||||
|
refreshInProgress = false
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
Loading…
Reference in New Issue
Block a user