From 99abd9bb2f10f802c63a9178b2694cb47757a38b Mon Sep 17 00:00:00 2001 From: Chris Sexton Date: Thu, 5 Aug 2021 10:47:34 -0400 Subject: [PATCH] slack: update library --- main.go | 2 ++ plugins/quotegame/quotegame.go | 53 ++++++++++++++++++++++++++++++++-- 2 files changed, 53 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 5758cbe..750ec98 100644 --- a/main.go +++ b/main.go @@ -13,6 +13,7 @@ import ( "github.com/velour/catbase/connectors/discord" "github.com/velour/catbase/plugins/giphy" "github.com/velour/catbase/plugins/last" + "github.com/velour/catbase/plugins/quotegame" "github.com/velour/catbase/plugins/rest" "github.com/velour/catbase/plugins/secrets" @@ -163,6 +164,7 @@ func main() { b.AddPlugin(sms.New(b)) b.AddPlugin(countdown.New(b)) b.AddPlugin(rest.New(b)) + b.AddPlugin(quotegame.New(b)) // catches anything left, will always return true b.AddPlugin(fact.New(b)) diff --git a/plugins/quotegame/quotegame.go b/plugins/quotegame/quotegame.go index 4834bd0..3b3e103 100644 --- a/plugins/quotegame/quotegame.go +++ b/plugins/quotegame/quotegame.go @@ -2,9 +2,11 @@ package quotegame import ( "math/rand" + "regexp" "time" "github.com/jmoiron/sqlx" + "github.com/rs/zerolog/log" "github.com/velour/catbase/bot" "github.com/velour/catbase/config" ) @@ -14,16 +16,38 @@ type QuoteGame struct { c *config.Config db *sqlx.DB + handlers []bot.HandlerSpec + currentGame *time.Timer } func New(b bot.Bot) *QuoteGame { - return &QuoteGame{ + p := &QuoteGame{ b: b, c: b.Config(), db: b.DB(), currentGame: nil, } + p.register() + return p +} + +func (p *QuoteGame) register() { + log.Debug().Msg("registering quote handlers") + p.handlers = []bot.HandlerSpec{ + { + Kind: bot.Message, IsCmd: true, + Regex: regexp.MustCompile(`(?i)^quote game$`), + HelpText: "Start a quote game", + Handler: p.startGame, + }, + { + Kind: bot.Message, IsCmd: false, + Regex: regexp.MustCompile(`.*`), + Handler: p.message, + }, + } + p.b.RegisterTable(p, p.handlers) } func (p *QuoteGame) getAllQuotes() ([]string, error) { @@ -47,4 +71,29 @@ func (p *QuoteGame) getRandomquote() (string, error) { return "", err } return quotes[rand.Intn(len(quotes))], nil -} \ No newline at end of file +} + +func (p *QuoteGame) startGame(r bot.Request) bool { + log.Debug().Msg("startGame called") + if p.currentGame != nil { + p.b.Send(r.Conn, bot.Message, r.Msg.Channel, "There is already a quote game running.") + return true + } + + length := time.Duration(p.c.GetInt("quotegame.length", 120)) + p.currentGame = time.AfterFunc(length * time.Second, func() { + p.currentGame = nil + p.b.Send(r.Conn, bot.Message, r.Msg.Channel, "Game ended.") + }) + + p.b.Send(r.Conn, bot.Message, r.Msg.Channel, "Game started.") + + return true +} + +func (p *QuoteGame) message(r bot.Request) bool { + if p.currentGame == nil { + return false + } + return false +}