mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
Add a delay while joining channels
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
b53a00e504
commit
afa340af94
1 changed files with 10 additions and 2 deletions
12
irc.go
12
irc.go
|
@ -12,7 +12,12 @@ import (
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
const twitchRequestTimeout = 2 * time.Second
|
const (
|
||||||
|
twitchRequestTimeout = 2 * time.Second
|
||||||
|
// 20 join attempts per 10 seconds per user (2000 for verified bots)
|
||||||
|
// https://dev.twitch.tv/docs/irc/guide
|
||||||
|
twitchChannelJoinDelay = time.Second
|
||||||
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
badgeBroadcaster = "broadcaster"
|
badgeBroadcaster = "broadcaster"
|
||||||
|
@ -58,6 +63,9 @@ func (i ircHandler) Close() error { return i.conn.Close() }
|
||||||
func (i ircHandler) ExecuteJoins(channels []string) {
|
func (i ircHandler) ExecuteJoins(channels []string) {
|
||||||
for _, ch := range channels {
|
for _, ch := range channels {
|
||||||
i.c.Write(fmt.Sprintf("JOIN #%s", strings.TrimLeft(ch, "#")))
|
i.c.Write(fmt.Sprintf("JOIN #%s", strings.TrimLeft(ch, "#")))
|
||||||
|
|
||||||
|
// We need to wait a moment between joins not to get kicked
|
||||||
|
time.Sleep(twitchChannelJoinDelay)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -76,7 +84,7 @@ func (i ircHandler) Handle(c *irc.Client, m *irc.Message) {
|
||||||
}, " "),
|
}, " "),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
i.ExecuteJoins(config.Channels)
|
go i.ExecuteJoins(config.Channels)
|
||||||
|
|
||||||
case "JOIN":
|
case "JOIN":
|
||||||
// JOIN (Default IRC Command)
|
// JOIN (Default IRC Command)
|
||||||
|
|
Loading…
Reference in a new issue