2020-03-13 17:13:03 +00:00
|
|
|
package soju
|
2020-02-06 21:45:54 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"gopkg.in/irc.v3"
|
|
|
|
)
|
|
|
|
|
|
|
|
func forwardChannel(dc *downstreamConn, ch *upstreamChannel) {
|
|
|
|
if !ch.complete {
|
|
|
|
panic("Tried to forward a partial channel")
|
|
|
|
}
|
|
|
|
|
2020-03-25 23:19:45 +00:00
|
|
|
sendTopic(dc, ch)
|
|
|
|
|
|
|
|
// TODO: rpl_topicwhotime
|
|
|
|
sendNames(dc, ch)
|
|
|
|
}
|
|
|
|
|
|
|
|
func sendTopic(dc *downstreamConn, ch *upstreamChannel) {
|
2020-02-19 17:25:19 +00:00
|
|
|
downstreamName := dc.marshalChannel(ch.conn, ch.Name)
|
|
|
|
|
2020-02-06 21:45:54 +00:00
|
|
|
if ch.Topic != "" {
|
2020-02-17 11:27:48 +00:00
|
|
|
dc.SendMessage(&irc.Message{
|
2020-02-06 21:45:54 +00:00
|
|
|
Prefix: dc.srv.prefix(),
|
|
|
|
Command: irc.RPL_TOPIC,
|
2020-02-19 17:25:19 +00:00
|
|
|
Params: []string{dc.nick, downstreamName, ch.Topic},
|
2020-02-17 11:27:48 +00:00
|
|
|
})
|
2020-02-06 21:45:54 +00:00
|
|
|
} else {
|
2020-02-17 11:27:48 +00:00
|
|
|
dc.SendMessage(&irc.Message{
|
2020-02-06 21:45:54 +00:00
|
|
|
Prefix: dc.srv.prefix(),
|
|
|
|
Command: irc.RPL_NOTOPIC,
|
2020-02-19 17:25:19 +00:00
|
|
|
Params: []string{dc.nick, downstreamName, "No topic is set"},
|
2020-02-17 11:27:48 +00:00
|
|
|
})
|
2020-02-06 21:45:54 +00:00
|
|
|
}
|
2020-03-21 00:24:29 +00:00
|
|
|
}
|
2020-02-06 21:45:54 +00:00
|
|
|
|
2020-03-21 00:24:29 +00:00
|
|
|
func sendNames(dc *downstreamConn, ch *upstreamChannel) {
|
2020-02-06 21:45:54 +00:00
|
|
|
// TODO: send multiple members in each message
|
2020-03-21 00:24:29 +00:00
|
|
|
|
|
|
|
downstreamName := dc.marshalChannel(ch.conn, ch.Name)
|
|
|
|
|
2020-02-06 21:45:54 +00:00
|
|
|
for nick, membership := range ch.Members {
|
2020-03-20 23:48:19 +00:00
|
|
|
s := membership.String() + dc.marshalNick(ch.conn, nick)
|
2020-02-06 21:45:54 +00:00
|
|
|
|
2020-02-17 11:27:48 +00:00
|
|
|
dc.SendMessage(&irc.Message{
|
2020-02-06 21:45:54 +00:00
|
|
|
Prefix: dc.srv.prefix(),
|
|
|
|
Command: irc.RPL_NAMREPLY,
|
2020-02-19 17:25:19 +00:00
|
|
|
Params: []string{dc.nick, string(ch.Status), downstreamName, s},
|
2020-02-17 11:27:48 +00:00
|
|
|
})
|
2020-02-06 21:45:54 +00:00
|
|
|
}
|
|
|
|
|
2020-02-17 11:27:48 +00:00
|
|
|
dc.SendMessage(&irc.Message{
|
2020-02-06 21:45:54 +00:00
|
|
|
Prefix: dc.srv.prefix(),
|
|
|
|
Command: irc.RPL_ENDOFNAMES,
|
2020-02-19 17:25:19 +00:00
|
|
|
Params: []string{dc.nick, downstreamName, "End of /NAMES list"},
|
2020-02-17 11:27:48 +00:00
|
|
|
})
|
2020-02-06 21:45:54 +00:00
|
|
|
}
|