Skip to content

Commit

Permalink
Opportunistically preserve Slack threading when parent thread in cach…
Browse files Browse the repository at this point in the history
…e. [#529]
  • Loading branch information
patcon committed Oct 27, 2018
1 parent 107969c commit b4cb094
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions bridge/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ type Message struct {
Event string `json:"event"`
Protocol string `json:"protocol"`
Gateway string `json:"gateway"`
ThreadTs string `json:"thread_timestamp"`
Timestamp time.Time `json:"timestamp"`
ID string `json:"id"`
Extra map[string][]interface{}
Expand Down
2 changes: 2 additions & 0 deletions bridge/slack/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,10 @@ func (b *Bslack) handleMessageEvent(ev *slack.MessageEvent) (*config.Message, er
Account: b.Account,
ID: "slack " + ev.Timestamp,
Extra: map[string][]interface{}{},
ThreadTs: ev.ThreadTimestamp,
}


if b.useChannelID {
rmsg.Channel = "ID:" + channelInfo.ID
}
Expand Down
1 change: 1 addition & 0 deletions bridge/slack/slack.go
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ func (b *Bslack) prepareMessageParameters(msg *config.Message) *slack.PostMessag
params.Username = msg.Username
params.LinkNames = 1 // replace mentions
params.IconURL = config.GetIconURL(msg, b.GetString(iconURLConfig))
params.ThreadTimestamp = msg.ThreadTs
if msg.Avatar != "" {
params.IconURL = msg.Avatar
}
Expand Down
43 changes: 43 additions & 0 deletions gateway/gateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,26 @@ func New(cfg config.Gateway, r *Router) *Gateway {
return gw
}

// Find the timestamp that the message is keyed under in cache
func (gw *Gateway) FindUpstreamTimestamp(timestamp string) string {
if gw.Messages.Contains("slack "+timestamp) {
return timestamp
}

for _, k := range gw.Messages.Keys() {
upstreamMsgID := k.(string)
v, _ := gw.Messages.Peek(k)
ids := v.([]*BrMsgID)
for _, downstreamMsgObj := range ids {
downstreamTimestamp := strings.Fields(downstreamMsgObj.ID)[1]
if downstreamTimestamp == timestamp {
return strings.Fields(upstreamMsgID)[1]
}
}
}
return ""
}

func (gw *Gateway) AddBridge(cfg *config.Bridge) error {
br := gw.Router.getBridge(cfg.Account)
if br == nil {
Expand Down Expand Up @@ -242,6 +262,12 @@ func (gw *Gateway) handleMessage(msg config.Message, dest *bridge.Bridge) []*BrM
return brMsgIDs
}

// Get the upstreamTimestamp of the thread_ts
var upstreamTimestamp string
if msg.ThreadTs != "" {
upstreamTimestamp = gw.FindUpstreamTimestamp(msg.ThreadTs)
}

originchannel := msg.Channel
origmsg := msg
channels := gw.getDestChannel(&msg, *dest)
Expand All @@ -262,6 +288,7 @@ func (gw *Gateway) handleMessage(msg config.Message, dest *bridge.Bridge) []*BrM
msg.Avatar = gw.modifyAvatar(origmsg, dest)
msg.Username = gw.modifyUsername(origmsg, dest)
msg.ID = ""
msg.ThreadTs = ""
if res, ok := gw.Messages.Get(origmsg.ID); ok {
IDs := res.([]*BrMsgID)
for _, id := range IDs {
Expand All @@ -276,10 +303,26 @@ func (gw *Gateway) handleMessage(msg config.Message, dest *bridge.Bridge) []*BrM
if dest.Protocol == "api" {
msg.Channel = originchannel
}

if upstreamTimestamp != "" {
if res, ok := gw.Messages.Get("slack "+upstreamTimestamp); ok {
IDs := res.([]*BrMsgID)
for _, id := range IDs {
// check protocol, bridge name and channelname
// for people that reuse the same bridge multiple times. see #342
if dest.Protocol == id.br.Protocol && dest.Name == id.br.Name && channel.ID == id.ChannelID {
msg.ThreadTs = strings.Fields(id.ID)[1]
}
}
if msg.ThreadTs == "" { msg.ThreadTs = upstreamTimestamp }
}
}

mID, err := dest.Send(msg)
if err != nil {
flog.Error(err)
}

// append the message ID (mID) from this bridge (dest) to our brMsgIDs slice
if mID != "" {
flog.Debugf("mID %s: %s", dest.Account, mID)
Expand Down

0 comments on commit b4cb094

Please sign in to comment.