2016-09-05 14:34:37 +00:00
|
|
|
package bslack
|
|
|
|
|
|
|
|
import (
|
2017-07-15 14:49:47 +00:00
|
|
|
"errors"
|
2018-10-12 23:02:14 +00:00
|
|
|
"fmt"
|
2016-09-05 14:34:37 +00:00
|
|
|
"strings"
|
2018-03-04 22:52:14 +00:00
|
|
|
"sync"
|
2018-03-22 21:28:27 +00:00
|
|
|
|
|
|
|
"github.com/42wim/matterbridge/bridge"
|
|
|
|
"github.com/42wim/matterbridge/bridge/config"
|
|
|
|
"github.com/42wim/matterbridge/bridge/helper"
|
|
|
|
"github.com/42wim/matterbridge/matterhook"
|
2018-08-17 22:12:05 +00:00
|
|
|
"github.com/hashicorp/golang-lru"
|
2018-03-22 21:28:27 +00:00
|
|
|
"github.com/nlopes/slack"
|
2018-05-27 19:50:00 +00:00
|
|
|
"github.com/rs/xid"
|
2016-09-05 14:34:37 +00:00
|
|
|
)
|
|
|
|
|
2016-09-18 17:21:15 +00:00
|
|
|
type Bslack struct {
|
2018-10-16 18:34:09 +00:00
|
|
|
sync.RWMutex
|
|
|
|
*bridge.Config
|
|
|
|
|
|
|
|
mh *matterhook.Client
|
|
|
|
sc *slack.Client
|
|
|
|
rtm *slack.RTM
|
|
|
|
si *slack.Info
|
|
|
|
|
2018-08-17 22:12:05 +00:00
|
|
|
cache *lru.Cache
|
2018-07-13 21:23:11 +00:00
|
|
|
uuid string
|
2018-10-16 18:34:09 +00:00
|
|
|
useChannelID bool
|
|
|
|
|
|
|
|
users map[string]*slack.User
|
|
|
|
usersMutex sync.RWMutex
|
|
|
|
|
|
|
|
channelsByID map[string]*slack.Channel
|
|
|
|
channelsByName map[string]*slack.Channel
|
|
|
|
channelsMutex sync.RWMutex
|
2016-09-05 14:34:37 +00:00
|
|
|
}
|
|
|
|
|
2018-10-12 23:02:14 +00:00
|
|
|
const (
|
|
|
|
sChannelJoin = "channel_join"
|
|
|
|
sChannelLeave = "channel_leave"
|
|
|
|
sMessageDeleted = "message_deleted"
|
|
|
|
sSlackAttachment = "slack_attachment"
|
|
|
|
sPinnedItem = "pinned_item"
|
|
|
|
sUnpinnedItem = "unpinned_item"
|
|
|
|
sChannelTopic = "channel_topic"
|
|
|
|
sChannelPurpose = "channel_purpose"
|
|
|
|
sFileComment = "file_comment"
|
|
|
|
sMeMessage = "me_message"
|
|
|
|
sUserTyping = "user_typing"
|
|
|
|
sLatencyReport = "latency_report"
|
|
|
|
sSystemUser = "system"
|
|
|
|
|
|
|
|
tokenConfig = "Token"
|
|
|
|
incomingWebhookConfig = "WebhookBindAddress"
|
|
|
|
outgoingWebhookConfig = "WebhookURL"
|
|
|
|
skipTLSConfig = "SkipTLSVerify"
|
|
|
|
useNickPrefixConfig = "PrefixMessagesWithNick"
|
|
|
|
editDisableConfig = "EditDisable"
|
|
|
|
editSuffixConfig = "EditSuffix"
|
|
|
|
iconURLConfig = "iconurl"
|
|
|
|
noSendJoinConfig = "nosendjoinpart"
|
|
|
|
)
|
2016-09-05 14:34:37 +00:00
|
|
|
|
2018-03-04 22:52:14 +00:00
|
|
|
func New(cfg *bridge.Config) bridge.Bridger {
|
2018-10-12 23:02:14 +00:00
|
|
|
newCache, err := lru.New(5000)
|
|
|
|
if err != nil {
|
|
|
|
cfg.Log.Fatalf("Could not create LRU cache for Slack bridge: %v", err)
|
|
|
|
}
|
|
|
|
b := &Bslack{
|
2018-10-16 18:34:09 +00:00
|
|
|
Config: cfg,
|
|
|
|
uuid: xid.New().String(),
|
|
|
|
cache: newCache,
|
|
|
|
users: map[string]*slack.User{},
|
|
|
|
channelsByID: map[string]*slack.Channel{},
|
|
|
|
channelsByName: map[string]*slack.Channel{},
|
2018-10-12 23:02:14 +00:00
|
|
|
}
|
2018-08-17 22:12:05 +00:00
|
|
|
return b
|
2016-09-05 14:34:37 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 17:21:15 +00:00
|
|
|
func (b *Bslack) Command(cmd string) string {
|
2016-09-05 14:34:37 +00:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2016-09-18 17:21:15 +00:00
|
|
|
func (b *Bslack) Connect() error {
|
2018-03-04 22:52:14 +00:00
|
|
|
b.RLock()
|
|
|
|
defer b.RUnlock()
|
2018-10-12 23:02:14 +00:00
|
|
|
if b.GetString(incomingWebhookConfig) != "" {
|
|
|
|
if b.GetString(outgoingWebhookConfig) != "" {
|
2018-02-26 23:33:21 +00:00
|
|
|
b.Log.Info("Connecting using webhookurl (sending) and webhookbindaddress (receiving)")
|
2018-10-12 23:02:14 +00:00
|
|
|
b.mh = matterhook.New(b.GetString(outgoingWebhookConfig), matterhook.Config{
|
|
|
|
InsecureSkipVerify: b.GetBool(skipTLSConfig),
|
|
|
|
BindAddress: b.GetString(incomingWebhookConfig),
|
|
|
|
})
|
|
|
|
} else if b.GetString(tokenConfig) != "" {
|
2018-02-26 23:33:21 +00:00
|
|
|
b.Log.Info("Connecting using token (sending)")
|
2018-10-12 23:02:14 +00:00
|
|
|
b.sc = slack.New(b.GetString(tokenConfig))
|
2017-07-15 14:49:47 +00:00
|
|
|
b.rtm = b.sc.NewRTM()
|
|
|
|
go b.rtm.ManageConnection()
|
2018-02-26 23:33:21 +00:00
|
|
|
b.Log.Info("Connecting using webhookbindaddress (receiving)")
|
2018-10-12 23:02:14 +00:00
|
|
|
b.mh = matterhook.New(b.GetString(outgoingWebhookConfig), matterhook.Config{
|
|
|
|
InsecureSkipVerify: b.GetBool(skipTLSConfig),
|
|
|
|
BindAddress: b.GetString(incomingWebhookConfig),
|
|
|
|
})
|
2017-07-15 14:49:47 +00:00
|
|
|
} else {
|
2018-02-26 23:33:21 +00:00
|
|
|
b.Log.Info("Connecting using webhookbindaddress (receiving)")
|
2018-10-12 23:02:14 +00:00
|
|
|
b.mh = matterhook.New(b.GetString(outgoingWebhookConfig), matterhook.Config{
|
|
|
|
InsecureSkipVerify: b.GetBool(skipTLSConfig),
|
|
|
|
BindAddress: b.GetString(incomingWebhookConfig),
|
|
|
|
})
|
2017-07-15 14:49:47 +00:00
|
|
|
}
|
|
|
|
go b.handleSlack()
|
|
|
|
return nil
|
|
|
|
}
|
2018-10-12 23:02:14 +00:00
|
|
|
if b.GetString(outgoingWebhookConfig) != "" {
|
2018-02-26 23:33:21 +00:00
|
|
|
b.Log.Info("Connecting using webhookurl (sending)")
|
2018-10-12 23:02:14 +00:00
|
|
|
b.mh = matterhook.New(b.GetString(outgoingWebhookConfig), matterhook.Config{
|
|
|
|
InsecureSkipVerify: b.GetBool(skipTLSConfig),
|
|
|
|
DisableServer: true,
|
|
|
|
})
|
|
|
|
if b.GetString(tokenConfig) != "" {
|
2018-02-26 23:33:21 +00:00
|
|
|
b.Log.Info("Connecting using token (receiving)")
|
2018-10-12 23:02:14 +00:00
|
|
|
b.sc = slack.New(b.GetString(tokenConfig))
|
2017-07-15 14:49:47 +00:00
|
|
|
b.rtm = b.sc.NewRTM()
|
|
|
|
go b.rtm.ManageConnection()
|
|
|
|
go b.handleSlack()
|
|
|
|
}
|
2018-10-12 23:02:14 +00:00
|
|
|
} else if b.GetString(tokenConfig) != "" {
|
2018-02-26 23:33:21 +00:00
|
|
|
b.Log.Info("Connecting using token (sending and receiving)")
|
2018-10-12 23:02:14 +00:00
|
|
|
b.sc = slack.New(b.GetString(tokenConfig))
|
2016-10-25 21:29:32 +00:00
|
|
|
b.rtm = b.sc.NewRTM()
|
|
|
|
go b.rtm.ManageConnection()
|
2017-07-15 14:49:47 +00:00
|
|
|
go b.handleSlack()
|
|
|
|
}
|
2018-10-12 23:02:14 +00:00
|
|
|
if b.GetString(incomingWebhookConfig) == "" && b.GetString(outgoingWebhookConfig) == "" && b.GetString(tokenConfig) == "" {
|
2018-02-24 22:35:53 +00:00
|
|
|
return errors.New("no connection method found. See that you have WebhookBindAddress, WebhookURL or Token configured")
|
2016-09-05 14:34:37 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-02-14 20:12:02 +00:00
|
|
|
func (b *Bslack) Disconnect() error {
|
2018-03-04 22:52:14 +00:00
|
|
|
return b.rtm.Disconnect()
|
2017-02-14 20:12:02 +00:00
|
|
|
}
|
|
|
|
|
2018-10-16 18:34:09 +00:00
|
|
|
// JoinChannel only acts as a verification method that checks whether Matterbridge's
|
|
|
|
// Slack integration is already member of the channel. This is because Slack does not
|
|
|
|
// allow apps or bots to join channels themselves and they need to be invited
|
|
|
|
// manually by a user.
|
2017-08-12 12:51:41 +00:00
|
|
|
func (b *Bslack) JoinChannel(channel config.ChannelInfo) error {
|
2018-11-07 16:25:00 +00:00
|
|
|
// We can only join a channel through the Slack API.
|
|
|
|
if b.sc == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-16 18:34:09 +00:00
|
|
|
b.populateChannels()
|
|
|
|
|
|
|
|
channelInfo, err := b.getChannel(channel.Name)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not join channel: %#v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(channel.Name, "ID:") {
|
2018-10-12 23:02:14 +00:00
|
|
|
b.useChannelID = true
|
2018-10-16 18:34:09 +00:00
|
|
|
channel.Name = channelInfo.Name
|
2018-07-13 21:23:11 +00:00
|
|
|
}
|
|
|
|
|
2018-10-16 18:34:09 +00:00
|
|
|
if !channelInfo.IsMember {
|
|
|
|
return fmt.Errorf("slack integration that matterbridge is using is not member of channel '%s', please add it manually", channelInfo.Name)
|
2016-09-18 17:21:15 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-22 17:43:57 +00:00
|
|
|
func (b *Bslack) Reload(cfg *bridge.Config) (string, error) {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
2017-08-27 20:59:37 +00:00
|
|
|
func (b *Bslack) Send(msg config.Message) (string, error) {
|
2018-02-28 21:23:29 +00:00
|
|
|
b.Log.Debugf("=> Receiving %#v", msg)
|
2018-02-24 22:35:53 +00:00
|
|
|
|
|
|
|
// Make a action /me of the message
|
2017-07-30 15:48:23 +00:00
|
|
|
if msg.Event == config.EVENT_USER_ACTION {
|
|
|
|
msg.Text = "_" + msg.Text + "_"
|
|
|
|
}
|
2018-02-24 22:35:53 +00:00
|
|
|
|
|
|
|
// Use webhook to send the message
|
2018-10-12 23:02:14 +00:00
|
|
|
if b.GetString(outgoingWebhookConfig) != "" {
|
2018-02-24 22:35:53 +00:00
|
|
|
return b.sendWebhook(msg)
|
|
|
|
}
|
2018-10-22 17:43:57 +00:00
|
|
|
return b.sendRTM(msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// sendWebhook uses the configured WebhookURL to send the message
|
|
|
|
func (b *Bslack) sendWebhook(msg config.Message) (string, error) {
|
|
|
|
// skip events
|
|
|
|
if msg.Event != "" {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.GetBool(useNickPrefixConfig) {
|
|
|
|
msg.Text = msg.Username + msg.Text
|
|
|
|
}
|
|
|
|
|
|
|
|
if msg.Extra != nil {
|
|
|
|
// this sends a message only if we received a config.EVENT_FILE_FAILURE_SIZE
|
|
|
|
for _, rmsg := range helper.HandleExtra(&msg, b.General) {
|
|
|
|
iconURL := config.GetIconURL(&rmsg, b.GetString(iconURLConfig))
|
|
|
|
matterMessage := matterhook.OMessage{
|
|
|
|
IconURL: iconURL,
|
|
|
|
Channel: msg.Channel,
|
|
|
|
UserName: rmsg.Username,
|
|
|
|
Text: rmsg.Text,
|
|
|
|
}
|
|
|
|
if err := b.mh.Send(matterMessage); err != nil {
|
|
|
|
b.Log.Errorf("Failed to send message: %v", err)
|
|
|
|
}
|
|
|
|
}
|
2018-02-24 22:35:53 +00:00
|
|
|
|
2018-10-22 17:43:57 +00:00
|
|
|
// webhook doesn't support file uploads, so we add the url manually
|
|
|
|
for _, f := range msg.Extra["file"] {
|
|
|
|
fi := f.(config.FileInfo)
|
|
|
|
if fi.URL != "" {
|
|
|
|
msg.Text += " " + fi.URL
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we have native slack_attachments add them
|
|
|
|
var attachs []slack.Attachment
|
|
|
|
for _, attach := range msg.Extra[sSlackAttachment] {
|
|
|
|
attachs = append(attachs, attach.([]slack.Attachment)...)
|
|
|
|
}
|
|
|
|
|
|
|
|
iconURL := config.GetIconURL(&msg, b.GetString(iconURLConfig))
|
|
|
|
matterMessage := matterhook.OMessage{
|
|
|
|
IconURL: iconURL,
|
|
|
|
Attachments: attachs,
|
|
|
|
Channel: msg.Channel,
|
|
|
|
UserName: msg.Username,
|
|
|
|
Text: msg.Text,
|
|
|
|
}
|
|
|
|
if msg.Avatar != "" {
|
|
|
|
matterMessage.IconURL = msg.Avatar
|
|
|
|
}
|
|
|
|
err := b.mh.Send(matterMessage)
|
|
|
|
if err != nil {
|
|
|
|
b.Log.Error(err)
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Bslack) sendRTM(msg config.Message) (string, error) {
|
2018-10-12 23:02:14 +00:00
|
|
|
channelInfo, err := b.getChannel(msg.Channel)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("could not send message: %v", err)
|
|
|
|
}
|
2018-02-24 22:35:53 +00:00
|
|
|
|
|
|
|
// Delete message
|
|
|
|
if msg.Event == config.EVENT_MSG_DELETE {
|
|
|
|
// some protocols echo deletes, but with empty ID
|
|
|
|
if msg.ID == "" {
|
|
|
|
return "", nil
|
2018-02-03 00:11:11 +00:00
|
|
|
}
|
2018-02-24 22:35:53 +00:00
|
|
|
// we get a "slack <ID>", split it
|
|
|
|
ts := strings.Fields(msg.ID)
|
2018-10-22 17:43:57 +00:00
|
|
|
_, _, err = b.rtm.DeleteMessage(channelInfo.ID, ts[1])
|
2018-02-24 22:35:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return msg.ID, err
|
2018-02-22 23:49:32 +00:00
|
|
|
}
|
2018-02-24 22:35:53 +00:00
|
|
|
return msg.ID, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prepend nick if configured
|
2018-10-12 23:02:14 +00:00
|
|
|
if b.GetBool(useNickPrefixConfig) {
|
2018-02-24 22:35:53 +00:00
|
|
|
msg.Text = msg.Username + msg.Text
|
|
|
|
}
|
2018-02-03 00:11:11 +00:00
|
|
|
|
2018-02-24 22:35:53 +00:00
|
|
|
// Edit message if we have an ID
|
|
|
|
if msg.ID != "" {
|
|
|
|
ts := strings.Fields(msg.ID)
|
2018-10-22 17:43:57 +00:00
|
|
|
_, _, _, err = b.rtm.UpdateMessage(channelInfo.ID, ts[1], msg.Text)
|
2016-09-05 14:34:37 +00:00
|
|
|
if err != nil {
|
2018-02-24 22:35:53 +00:00
|
|
|
return msg.ID, err
|
2016-09-05 14:34:37 +00:00
|
|
|
}
|
2018-02-24 22:35:53 +00:00
|
|
|
return msg.ID, nil
|
2016-10-08 19:57:03 +00:00
|
|
|
}
|
2018-02-24 22:35:53 +00:00
|
|
|
|
2018-10-22 17:43:57 +00:00
|
|
|
messageParameters := b.prepareMessageParameters(&msg)
|
2017-09-18 21:51:27 +00:00
|
|
|
|
2018-02-24 22:35:53 +00:00
|
|
|
// Upload a file if it exists
|
2017-11-03 22:10:16 +00:00
|
|
|
if msg.Extra != nil {
|
2018-02-03 00:11:11 +00:00
|
|
|
for _, rmsg := range helper.HandleExtra(&msg, b.General) {
|
2018-10-22 17:43:57 +00:00
|
|
|
_, _, err = b.rtm.PostMessage(channelInfo.ID, rmsg.Username+rmsg.Text, *messageParameters)
|
2018-10-12 23:02:14 +00:00
|
|
|
if err != nil {
|
|
|
|
b.Log.Error(err)
|
|
|
|
}
|
2017-11-03 22:10:16 +00:00
|
|
|
}
|
2018-10-12 23:02:14 +00:00
|
|
|
// Upload files if necessary (from Slack, Telegram or Mattermost).
|
|
|
|
b.handleUploadFile(&msg, channelInfo.ID)
|
2017-11-03 22:10:16 +00:00
|
|
|
}
|
|
|
|
|
2018-02-24 22:35:53 +00:00
|
|
|
// Post normal message
|
2018-10-22 17:43:57 +00:00
|
|
|
_, id, err := b.rtm.PostMessage(channelInfo.ID, msg.Text, *messageParameters)
|
2017-08-28 18:29:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return "slack " + id, nil
|
2016-09-05 14:34:37 +00:00
|
|
|
}
|
|
|
|
|
2018-10-22 17:43:57 +00:00
|
|
|
func (b *Bslack) prepareMessageParameters(msg *config.Message) *slack.PostMessageParameters {
|
|
|
|
params := slack.NewPostMessageParameters()
|
|
|
|
if b.GetBool(useNickPrefixConfig) {
|
|
|
|
params.AsUser = true
|
|
|
|
}
|
|
|
|
params.Username = msg.Username
|
|
|
|
params.LinkNames = 1 // replace mentions
|
|
|
|
params.IconURL = config.GetIconURL(msg, b.GetString(iconURLConfig))
|
2018-11-07 08:14:31 +00:00
|
|
|
msgFields := strings.Fields(msg.ParentID)
|
|
|
|
if len(msgFields) >= 2 {
|
|
|
|
params.ThreadTimestamp = msgFields[1]
|
|
|
|
}
|
2018-10-22 17:43:57 +00:00
|
|
|
if msg.Avatar != "" {
|
|
|
|
params.IconURL = msg.Avatar
|
|
|
|
}
|
|
|
|
// add a callback ID so we can see we created it
|
|
|
|
params.Attachments = append(params.Attachments, slack.Attachment{CallbackID: "matterbridge_" + b.uuid})
|
|
|
|
// add file attachments
|
|
|
|
params.Attachments = append(params.Attachments, b.createAttach(msg.Extra)...)
|
|
|
|
// add slack attachments (from another slack bridge)
|
|
|
|
if msg.Extra != nil {
|
|
|
|
for _, attach := range msg.Extra[sSlackAttachment] {
|
|
|
|
params.Attachments = append(params.Attachments, attach.([]slack.Attachment)...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ¶ms
|
2018-03-04 22:52:14 +00:00
|
|
|
}
|
|
|
|
|
2017-09-21 20:35:21 +00:00
|
|
|
func (b *Bslack) createAttach(extra map[string][]interface{}) []slack.Attachment {
|
2018-10-12 23:02:14 +00:00
|
|
|
var attachements []slack.Attachment
|
2017-09-21 20:35:21 +00:00
|
|
|
for _, v := range extra["attachments"] {
|
2017-09-18 22:04:27 +00:00
|
|
|
entry := v.(map[string]interface{})
|
2018-10-12 23:02:14 +00:00
|
|
|
s := slack.Attachment{
|
|
|
|
Fallback: extractStringField(entry, "fallback"),
|
|
|
|
Color: extractStringField(entry, "color"),
|
|
|
|
Pretext: extractStringField(entry, "pretext"),
|
|
|
|
AuthorName: extractStringField(entry, "author_name"),
|
|
|
|
AuthorLink: extractStringField(entry, "author_link"),
|
|
|
|
AuthorIcon: extractStringField(entry, "author_icon"),
|
|
|
|
Title: extractStringField(entry, "title"),
|
|
|
|
TitleLink: extractStringField(entry, "title_link"),
|
|
|
|
Text: extractStringField(entry, "text"),
|
|
|
|
ImageURL: extractStringField(entry, "image_url"),
|
|
|
|
ThumbURL: extractStringField(entry, "thumb_url"),
|
|
|
|
Footer: extractStringField(entry, "footer"),
|
|
|
|
FooterIcon: extractStringField(entry, "footer_icon"),
|
|
|
|
}
|
|
|
|
attachements = append(attachements, s)
|
|
|
|
}
|
|
|
|
return attachements
|
|
|
|
}
|
|
|
|
|
|
|
|
func extractStringField(data map[string]interface{}, field string) string {
|
|
|
|
if rawValue, found := data[field]; found {
|
|
|
|
if value, ok := rawValue.(string); ok {
|
|
|
|
return value
|
|
|
|
}
|
2017-09-18 21:51:27 +00:00
|
|
|
}
|
2018-10-12 23:02:14 +00:00
|
|
|
return ""
|
2017-09-18 21:51:27 +00:00
|
|
|
}
|