2018-10-12 21:16:34 +00:00
|
|
|
package bslack
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"regexp"
|
|
|
|
"strings"
|
2018-11-01 20:28:22 +00:00
|
|
|
"time"
|
2018-10-12 21:16:34 +00:00
|
|
|
|
|
|
|
"github.com/nlopes/slack"
|
|
|
|
)
|
|
|
|
|
2018-10-12 23:02:14 +00:00
|
|
|
func (b *Bslack) getUsername(id string) string {
|
|
|
|
for _, u := range b.users {
|
2018-10-12 21:16:34 +00:00
|
|
|
if u.ID == id {
|
|
|
|
if u.Profile.DisplayName != "" {
|
|
|
|
return u.Profile.DisplayName
|
|
|
|
}
|
|
|
|
return u.Name
|
|
|
|
}
|
|
|
|
}
|
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 ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Bslack) getAvatar(userid string) string {
|
2018-10-12 23:02:14 +00:00
|
|
|
for _, u := range b.users {
|
|
|
|
if userid == u.ID {
|
|
|
|
return u.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
|
|
|
users, err := b.sc.GetUsers()
|
|
|
|
if err != nil {
|
|
|
|
b.Log.Errorf("Could not reload users: %#v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
newUsers := map[string]*slack.User{}
|
2018-10-24 19:12:20 +00:00
|
|
|
for i := range users {
|
|
|
|
// Use array index for pointer, not the copy
|
|
|
|
// See: https://stackoverflow.com/a/29498133/504018
|
|
|
|
newUsers[users[i].ID] = &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 {
|
|
|
|
b.Log.Errorf("Could not reload channels: %#v", err)
|
|
|
|
return
|
2018-10-12 21:16:34 +00:00
|
|
|
}
|
2018-10-16 18:34:09 +00:00
|
|
|
for i := 0; i < len(channels); i++ {
|
|
|
|
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-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
|
|
|
|
}
|