From d9985734667478d99a96c4786fd847f14bb001fe Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Wed, 26 Feb 2020 16:15:22 -0700 Subject: [PATCH] add ability to show help for given plugins --- main.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/main.go b/main.go index 10c5839..b95ba2b 100644 --- a/main.go +++ b/main.go @@ -6,6 +6,7 @@ import ( "log" "net/http" "os" + "regexp" "strconv" "strings" "time" @@ -38,6 +39,8 @@ func main() { unveil(db, "rwc") unveilBlock() + var help = `^help: (\w+)$` + var helpRE = regexp.MustCompile(help) var store, err = NewStore(db) if err != nil { log.Fatalf("%s\n", err) @@ -185,6 +188,9 @@ func main() { return } + // Sending a response per plugin hits issues, so save them and + // send as one message. + helps := []string{} for _, p := range plugins.Plugs { var post string var ok bool @@ -195,6 +201,14 @@ func main() { if mtype, ok := ev.MessageType(); ok { switch mtype { case "m.text": + if helpRE.Match([]byte(post)) { + pn := p.Name() + hName := helpRE.ReplaceAllString(post, "$1") + if hName == pn || hName == "puke" { + helps = append(helps, fmt.Sprintf("**%s**: `%s` - _%s_\n", p.Name(), p.Re(), p.Descr())) + } + + } if p.Match(username, post) { p.SetStore(store) p.RespondText(cli, ev, username, post) @@ -202,6 +216,9 @@ func main() { } } } + if len(helps) > 0 { + plugins.SendMD(cli, ev.RoomID, strings.Join(helps, "\n")) + } }) if avatar != "" {