mcchunkie/plugins/love.go

55 lines
1.2 KiB
Go
Raw Normal View History

2020-02-01 15:15:01 -07:00
package plugins
import (
"math/rand"
"regexp"
"github.com/matrix-org/gomatrix"
)
// LoveYou responds to love messages
type LoveYou struct {
}
// Descr describes this plugin
func (h *LoveYou) Descr() string {
return "Spreading love where ever we can by responding when someone shows us love."
}
// Re matches "i love you"
func (h *LoveYou) Re() string {
return `(?i)i love you`
}
2020-02-10 17:10:57 -07:00
// Match checks for 'i love you' and a reference to the bot name
func (h *LoveYou) Match(user, msg string) bool {
re := regexp.MustCompile(h.Re())
2020-02-10 17:10:57 -07:00
return re.MatchString(msg) && ToMe(user, msg)
2020-02-01 15:15:01 -07:00
}
// Process does the heavy lifting
func (h *LoveYou) Process(from, post string) string {
2020-02-01 15:15:01 -07:00
a := []string{
"I am not ready for this kind of relationship!",
"ಠ_ಠ",
"I love you too!",
"(╯‵Д′)╯彡┻━┻",
"hawkard!",
}
return a[rand.Intn(len(a))]
}
2020-02-05 22:04:04 -07:00
// SetStore we don't need a store, so just return
2020-05-13 17:05:01 -06:00
func (h *LoveYou) SetStore(_ PluginStore) {}
2020-02-05 22:04:04 -07:00
// RespondText to love events
2020-05-13 17:05:01 -06:00
func (h *LoveYou) RespondText(c *gomatrix.Client, ev *gomatrix.Event, _, _ string) error {
return SendText(c, ev.RoomID, h.Process("", ""))
2020-02-01 15:15:01 -07:00
}
// Name i love you
func (h *LoveYou) Name() string {
return "LoveYou"
}