2018-10-12 21:16:34 +00:00
|
|
|
package bslack
|
|
|
|
|
|
|
|
import (
|
2018-11-10 21:09:41 +00:00
|
|
|
"context"
|
2018-10-12 21:16:34 +00:00
|
|
|
"fmt"
|
|
|
|
"regexp"
|
|
|
|
"strings"
|
2018-11-01 20:28:22 +00:00
|
|
|
"time"
|
2018-10-12 21:16:34 +00:00
|
|
|
|
2018-11-07 20:35:59 +00:00
|
|
|
"github.com/42wim/matterbridge/bridge/config"
|
2018-10-12 21:16:34 +00:00
|
|
|
"github.com/nlopes/slack"
|
|
|
|
)
|
|
|
|
|
2018-11-07 20:35:59 +00:00
|
|
|
func (b *Bslack) getUser(id string) *slack.User {
|
|
|
|
b.usersMutex.RLock()
|
|
|
|
defer b.usersMutex.RUnlock()
|
|
|
|
|
|
|
|
return b.users[id]
|
|
|
|
}
|
|
|
|
|
2018-10-12 23:02:14 +00:00
|
|
|
func (b *Bslack) getUsername(id string) string {
|
2018-11-07 20:35:59 +00:00
|
|
|
if user := b.getUser(id); user != nil {
|
|
|
|
if user.Profile.DisplayName != "" {
|
|
|
|
return user.Profile.DisplayName
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
2018-11-07 20:35:59 +00:00
|
|
|
return user.Name
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
2018-10-12 23:02:14 +00:00
|
|
|
b.Log.Warnf("Could not find user with ID '%s'", id)
|
2018-10-12 21:16:34 +00:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2018-11-07 20:35:59 +00:00
|
|
|
func (b *Bslack) getAvatar(id string) string {
|
|
|
|
if user := b.getUser(id); user != nil {
|
|
|
|
return user.Profile.Image48
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
2018-10-12 23:02:14 +00:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Bslack) getChannel(channel string) (*slack.Channel, error) {
|
|
|
|
if strings.HasPrefix(channel, "ID:") {
|
|
|
|
return b.getChannelByID(strings.TrimPrefix(channel, "ID:"))
|
|
|
|
}
|
|
|
|
return b.getChannelByName(channel)
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Bslack) getChannelByName(name string) (*slack.Channel, error) {
|
2018-10-16 18:34:09 +00:00
|
|
|
b.channelsMutex.RLock()
|
|
|
|
defer b.channelsMutex.RUnlock()
|
|
|
|
|
|
|
|
if channel, ok := b.channelsByName[name]; ok {
|
|
|
|
return channel, nil
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("%s: channel %s not found", b.Account, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Bslack) getChannelByID(ID string) (*slack.Channel, error) {
|
2018-10-16 18:34:09 +00:00
|
|
|
b.channelsMutex.RLock()
|
|
|
|
defer b.channelsMutex.RUnlock()
|
|
|
|
|
|
|
|
if channel, ok := b.channelsByID[ID]; ok {
|
|
|
|
return channel, nil
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("%s: channel %s not found", b.Account, ID)
|
|
|
|
}
|
|
|
|
|
2018-11-01 20:28:22 +00:00
|
|
|
const minimumRefreshInterval = 10 * time.Second
|
|
|
|
|
2018-10-16 18:34:09 +00:00
|
|
|
func (b *Bslack) populateUsers() {
|
2018-11-07 19:36:50 +00:00
|
|
|
b.refreshMutex.Lock()
|
|
|
|
if 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()
|
|
|
|
|
2018-11-01 20:28:22 +00:00
|
|
|
return
|
|
|
|
}
|
2018-11-07 19:36:50 +00:00
|
|
|
b.refreshInProgress = true
|
|
|
|
b.refreshMutex.Unlock()
|
2018-11-01 20:28:22 +00:00
|
|
|
|
2018-10-16 18:34:09 +00:00
|
|
|
newUsers := map[string]*slack.User{}
|
2018-11-10 21:09:41 +00:00
|
|
|
pagination := b.sc.GetUsersPaginated(slack.GetUsersOptionLimit(200))
|
|
|
|
for {
|
|
|
|
var err error
|
|
|
|
pagination, err = pagination.Next(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
if pagination.Done(err) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = b.handleRateLimit(err); err != nil {
|
|
|
|
b.Log.Errorf("Could not retrieve users: %#v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := range pagination.Users {
|
|
|
|
newUsers[pagination.Users[i].ID] = &pagination.Users[i]
|
|
|
|
}
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
2018-10-16 18:34:09 +00:00
|
|
|
|
|
|
|
b.usersMutex.Lock()
|
|
|
|
defer b.usersMutex.Unlock()
|
|
|
|
b.users = newUsers
|
2018-11-01 20:28:22 +00:00
|
|
|
|
2018-11-07 19:36:50 +00:00
|
|
|
b.refreshMutex.Lock()
|
|
|
|
defer b.refreshMutex.Unlock()
|
|
|
|
b.earliestUserRefresh = time.Now().Add(minimumRefreshInterval)
|
|
|
|
b.refreshInProgress = false
|
2018-10-16 18:34:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Bslack) populateChannels() {
|
2018-11-07 19:36:50 +00:00
|
|
|
b.refreshMutex.Lock()
|
|
|
|
if 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()
|
2018-11-01 20:28:22 +00:00
|
|
|
return
|
|
|
|
}
|
2018-11-07 19:36:50 +00:00
|
|
|
b.refreshInProgress = true
|
|
|
|
b.refreshMutex.Unlock()
|
2018-11-01 20:28:22 +00:00
|
|
|
|
2018-10-16 18:34:09 +00:00
|
|
|
newChannelsByID := map[string]*slack.Channel{}
|
|
|
|
newChannelsByName := map[string]*slack.Channel{}
|
|
|
|
|
|
|
|
// We only retrieve public and private channels, not IMs
|
|
|
|
// and MPIMs as those do not have a channel name.
|
|
|
|
queryParams := &slack.GetConversationsParameters{
|
|
|
|
ExcludeArchived: "true",
|
|
|
|
Types: []string{"public_channel,private_channel"},
|
|
|
|
}
|
|
|
|
for {
|
|
|
|
channels, nextCursor, err := b.sc.GetConversations(queryParams)
|
|
|
|
if err != nil {
|
2018-11-10 21:09:41 +00:00
|
|
|
if err = b.handleRateLimit(err); err != nil {
|
|
|
|
b.Log.Errorf("Could not retrieve channels: %#v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
continue
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
2018-11-10 21:09:41 +00:00
|
|
|
|
|
|
|
for i := range channels {
|
2018-10-16 18:34:09 +00:00
|
|
|
newChannelsByID[channels[i].ID] = &channels[i]
|
|
|
|
newChannelsByName[channels[i].Name] = &channels[i]
|
|
|
|
}
|
|
|
|
if nextCursor == "" {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
queryParams.Cursor = nextCursor
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
2018-10-16 18:34:09 +00:00
|
|
|
|
|
|
|
b.channelsMutex.Lock()
|
|
|
|
defer b.channelsMutex.Unlock()
|
|
|
|
b.channelsByID = newChannelsByID
|
|
|
|
b.channelsByName = newChannelsByName
|
2018-11-01 20:28:22 +00:00
|
|
|
|
2018-11-07 19:36:50 +00:00
|
|
|
b.refreshMutex.Lock()
|
|
|
|
defer b.refreshMutex.Unlock()
|
|
|
|
b.earliestChannelRefresh = time.Now().Add(minimumRefreshInterval)
|
|
|
|
b.refreshInProgress = false
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
|
|
|
|
2018-11-07 20:35:59 +00:00
|
|
|
// populateReceivedMessage shapes the initial Matterbridge message that we will forward to the
|
|
|
|
// router before we apply message-dependent modifications.
|
|
|
|
func (b *Bslack) populateReceivedMessage(ev *slack.MessageEvent) (*config.Message, error) {
|
|
|
|
// Use our own func because rtm.GetChannelInfo doesn't work for private channels.
|
|
|
|
channel, err := b.getChannelByID(ev.Channel)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
rmsg := &config.Message{
|
|
|
|
Text: ev.Text,
|
|
|
|
Channel: channel.Name,
|
|
|
|
Account: b.Account,
|
|
|
|
ID: "slack " + ev.Timestamp,
|
|
|
|
Extra: make(map[string][]interface{}),
|
|
|
|
ParentID: ev.ThreadTimestamp,
|
|
|
|
}
|
|
|
|
if b.useChannelID {
|
|
|
|
rmsg.Channel = "ID:" + channel.ID
|
|
|
|
}
|
|
|
|
|
2018-11-08 19:07:21 +00:00
|
|
|
// Handle 'edit' messages.
|
|
|
|
if ev.SubMessage != nil && !b.GetBool(editDisableConfig) {
|
|
|
|
rmsg.ID = "slack " + ev.SubMessage.Timestamp
|
|
|
|
if ev.SubMessage.ThreadTimestamp != ev.SubMessage.Timestamp {
|
|
|
|
b.Log.Debugf("SubMessage %#v", ev.SubMessage)
|
|
|
|
rmsg.Text = ev.SubMessage.Text + b.GetString(editSuffixConfig)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-07 20:35:59 +00:00
|
|
|
if err = b.populateMessageWithUserInfo(ev, rmsg); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return rmsg, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Bslack) populateMessageWithUserInfo(ev *slack.MessageEvent, rmsg *config.Message) error {
|
|
|
|
if ev.SubType == sMessageDeleted || ev.SubType == sFileComment {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-11-08 19:07:21 +00:00
|
|
|
// First, deal with bot-originating messages but only do so when not using webhooks: we
|
|
|
|
// would not be able to distinguish which bot would be sending them.
|
2018-11-10 21:09:41 +00:00
|
|
|
if err := b.populateMessageWithBotInfo(ev, rmsg); err != nil {
|
|
|
|
return err
|
2018-11-07 20:35:59 +00:00
|
|
|
}
|
|
|
|
|
2018-11-08 19:07:21 +00:00
|
|
|
// Second, deal with "real" users if we have the necessary information.
|
|
|
|
var userID string
|
2018-11-08 21:01:29 +00:00
|
|
|
switch {
|
|
|
|
case ev.User != "":
|
2018-11-08 19:07:21 +00:00
|
|
|
userID = ev.User
|
2018-11-08 21:01:29 +00:00
|
|
|
case ev.SubMessage != nil && ev.SubMessage.User != "":
|
2018-11-08 19:07:21 +00:00
|
|
|
userID = ev.SubMessage.User
|
2018-11-08 21:01:29 +00:00
|
|
|
default:
|
2018-11-08 19:07:21 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
user := b.getUser(userID)
|
|
|
|
if user == nil {
|
|
|
|
return fmt.Errorf("could not find information for user with id %s", ev.User)
|
|
|
|
}
|
|
|
|
|
|
|
|
rmsg.UserID = user.ID
|
|
|
|
rmsg.Username = user.Name
|
|
|
|
if user.Profile.DisplayName != "" {
|
|
|
|
rmsg.Username = user.Profile.DisplayName
|
2018-11-07 20:35:59 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-11-10 21:09:41 +00:00
|
|
|
func (b *Bslack) populateMessageWithBotInfo(ev *slack.MessageEvent, rmsg *config.Message) error {
|
|
|
|
if ev.BotID == "" || b.GetString(outgoingWebhookConfig) != "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
|
|
|
var bot *slack.Bot
|
|
|
|
for {
|
|
|
|
bot, err = b.rtm.GetBotInfo(ev.BotID)
|
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = b.handleRateLimit(err); err != nil {
|
|
|
|
b.Log.Errorf("Could not retrieve bot information: %#v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if bot.Name != "" && bot.Name != "Slack API Tester" {
|
|
|
|
rmsg.Username = bot.Name
|
|
|
|
if ev.Username != "" {
|
|
|
|
rmsg.Username = ev.Username
|
|
|
|
}
|
|
|
|
rmsg.UserID = bot.ID
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-12 23:02:14 +00:00
|
|
|
var (
|
|
|
|
mentionRE = regexp.MustCompile(`<@([a-zA-Z0-9]+)>`)
|
|
|
|
channelRE = regexp.MustCompile(`<#[a-zA-Z0-9]+\|(.+?)>`)
|
|
|
|
variableRE = regexp.MustCompile(`<!((?:subteam\^)?[a-zA-Z0-9]+)(?:\|@?(.+?))?>`)
|
|
|
|
urlRE = regexp.MustCompile(`<(.*?)(\|.*?)?>`)
|
|
|
|
)
|
2018-10-12 21:16:34 +00:00
|
|
|
|
|
|
|
// @see https://api.slack.com/docs/message-formatting#linking_to_channels_and_users
|
|
|
|
func (b *Bslack) replaceMention(text string) string {
|
2018-10-12 23:02:14 +00:00
|
|
|
replaceFunc := func(match string) string {
|
|
|
|
userID := strings.Trim(match, "@<>")
|
|
|
|
if username := b.getUsername(userID); userID != "" {
|
|
|
|
return "@" + username
|
|
|
|
}
|
|
|
|
return match
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
2018-10-12 23:02:14 +00:00
|
|
|
return mentionRE.ReplaceAllStringFunc(text, replaceFunc)
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// @see https://api.slack.com/docs/message-formatting#linking_to_channels_and_users
|
|
|
|
func (b *Bslack) replaceChannel(text string) string {
|
2018-10-12 23:02:14 +00:00
|
|
|
for _, r := range channelRE.FindAllStringSubmatch(text, -1) {
|
|
|
|
text = strings.Replace(text, r[0], "#"+r[1], 1)
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
|
|
|
return text
|
|
|
|
}
|
|
|
|
|
|
|
|
// @see https://api.slack.com/docs/message-formatting#variables
|
|
|
|
func (b *Bslack) replaceVariable(text string) string {
|
2018-10-12 23:02:14 +00:00
|
|
|
for _, r := range variableRE.FindAllStringSubmatch(text, -1) {
|
2018-10-12 21:16:34 +00:00
|
|
|
if r[2] != "" {
|
2018-10-12 23:02:14 +00:00
|
|
|
text = strings.Replace(text, r[0], "@"+r[2], 1)
|
2018-10-12 21:16:34 +00:00
|
|
|
} else {
|
2018-10-12 23:02:14 +00:00
|
|
|
text = strings.Replace(text, r[0], "@"+r[1], 1)
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return text
|
|
|
|
}
|
|
|
|
|
|
|
|
// @see https://api.slack.com/docs/message-formatting#linking_to_urls
|
|
|
|
func (b *Bslack) replaceURL(text string) string {
|
2018-10-12 23:02:14 +00:00
|
|
|
for _, r := range urlRE.FindAllStringSubmatch(text, -1) {
|
2018-10-12 21:16:34 +00:00
|
|
|
if len(strings.TrimSpace(r[2])) == 1 { // A display text separator was found, but the text was blank
|
2018-10-12 23:02:14 +00:00
|
|
|
text = strings.Replace(text, r[0], "", 1)
|
2018-10-12 21:16:34 +00:00
|
|
|
} else {
|
2018-10-12 23:02:14 +00:00
|
|
|
text = strings.Replace(text, r[0], r[1], 1)
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return text
|
|
|
|
}
|
2018-11-10 21:09:41 +00:00
|
|
|
|
|
|
|
func (b *Bslack) handleRateLimit(err error) error {
|
|
|
|
rateLimit, ok := err.(*slack.RateLimitedError)
|
|
|
|
if !ok {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
b.Log.Infof("Rate-limited by Slack. Sleeping for %v", rateLimit.RetryAfter)
|
|
|
|
time.Sleep(rateLimit.RetryAfter)
|
|
|
|
return nil
|
|
|
|
}
|