mcchunkie/plugins/thanks.go
2020-02-12 20:13:05 -07:00

57 lines
1.2 KiB
Go

package plugins
import (
"fmt"
"log"
"math/rand"
"regexp"
"time"
"github.com/matrix-org/gomatrix"
)
// Thanks responds to thanks
type Thanks struct {
}
// Descr describes this plugin
func (h *Thanks) Descr() string {
return "Bots should be respectful. Respond to thanks."
}
// Re checks for various forms of thanks
func (h *Thanks) Re() string {
return `(?i)^thank you|thank you$|^thanks|thanks$|^ty|ty$`
}
// Match determins if we are being thanked
func (h *Thanks) Match(user, msg string) bool {
re := regexp.MustCompile(h.Re())
return re.MatchString(msg) && ToMe(user, msg)
}
// SetStore we don't need a store here
func (h *Thanks) SetStore(s PluginStore) {}
// RespondText to welcome back events
func (h *Thanks) RespondText(c *gomatrix.Client, ev *gomatrix.Event, user, post string) {
s := NameRE.ReplaceAllString(ev.Sender, "$1")
a := []string{
fmt.Sprintf("welcome %s", s),
"welcome",
"you're welcome",
"np!",
fmt.Sprintf("you'r welcome, %s", s),
}
rand.Seed(time.Now().Unix())
log.Printf("%s: responding to '%s'", h.Name(), ev.Sender)
SendText(c, ev.RoomID, a[rand.Intn(len(a))])
}
// Name Thanks
func (h *Thanks) Name() string {
return "Thanks"
}