From 81c7e80e0fa47619d80dc941104dfe7da73ca58c Mon Sep 17 00:00:00 2001 From: Hubert Hirtz Date: Thu, 20 Aug 2020 10:39:23 +0200 Subject: [PATCH] Forward RPL_TOPICWHOTIME to downstreams --- bridge.go | 15 ++++++++++++--- upstream.go | 26 ++++++++++++++++++++++++-- 2 files changed, 36 insertions(+), 5 deletions(-) diff --git a/bridge.go b/bridge.go index e434c49..f707e33 100644 --- a/bridge.go +++ b/bridge.go @@ -1,8 +1,10 @@ package soju import ( - "gopkg.in/irc.v3" + "strconv" "strings" + + "gopkg.in/irc.v3" ) func forwardChannel(dc *downstreamConn, ch *upstreamChannel) { @@ -11,8 +13,6 @@ func forwardChannel(dc *downstreamConn, ch *upstreamChannel) { } sendTopic(dc, ch) - - // TODO: rpl_topicwhotime sendNames(dc, ch) } @@ -25,6 +25,15 @@ func sendTopic(dc *downstreamConn, ch *upstreamChannel) { Command: irc.RPL_TOPIC, Params: []string{dc.nick, downstreamName, ch.Topic}, }) + if ch.TopicWho != nil { + topicWho := dc.marshalUserPrefix(ch.conn.network, ch.TopicWho) + topicTime := strconv.FormatInt(ch.TopicTime.Unix(), 10) + dc.SendMessage(&irc.Message{ + Prefix: dc.srv.prefix(), + Command: rpl_topicwhotime, + Params: []string{dc.nick, downstreamName, topicWho.String(), topicTime}, + }) + } } else { dc.SendMessage(&irc.Message{ Prefix: dc.srv.prefix(), diff --git a/upstream.go b/upstream.go index 2ac5654..1f9cacf 100644 --- a/upstream.go +++ b/upstream.go @@ -42,7 +42,7 @@ type upstreamChannel struct { Name string conn *upstreamConn Topic string - TopicWho string + TopicWho *irc.Prefix TopicTime time.Time Status channelStatus modes channelModes @@ -842,6 +842,10 @@ func (uc *upstreamConn) handleMessage(msg *irc.Message) error { ch.Topic = "" } case "TOPIC": + if msg.Prefix == nil { + return fmt.Errorf("expected a prefix") + } + var name string if err := parseMessageParams(msg, &name); err != nil { return err @@ -852,6 +856,8 @@ func (uc *upstreamConn) handleMessage(msg *irc.Message) error { } if len(msg.Params) > 1 { ch.Topic = msg.Params[1] + ch.TopicWho = msg.Prefix.Copy() + ch.TopicTime = time.Now() // TODO use msg.Tags["time"] } else { ch.Topic = "" } @@ -983,12 +989,28 @@ func (uc *upstreamConn) handleMessage(msg *irc.Message) error { if err != nil { return err } - ch.TopicWho = who + firstTopicWhoTime := ch.TopicWho == nil + ch.TopicWho = irc.ParsePrefix(who) sec, err := strconv.ParseInt(timeStr, 10, 64) if err != nil { return fmt.Errorf("failed to parse topic time: %v", err) } ch.TopicTime = time.Unix(sec, 0) + if firstTopicWhoTime { + uc.forEachDownstream(func(dc *downstreamConn) { + topicWho := dc.marshalUserPrefix(uc.network, ch.TopicWho) + dc.SendMessage(&irc.Message{ + Prefix: dc.srv.prefix(), + Command: rpl_topicwhotime, + Params: []string{ + dc.nick, + dc.marshalEntity(uc.network, ch.Name), + topicWho.String(), + timeStr, + }, + }) + }) + } case irc.RPL_LIST: var channel, clients, topic string if err := parseMessageParams(msg, nil, &channel, &clients, &topic); err != nil {