50 lines
916 B
Go
50 lines
916 B
Go
package plugins
|
|
|
|
import (
|
|
"log"
|
|
"math/rand"
|
|
"regexp"
|
|
"time"
|
|
|
|
"github.com/matrix-org/gomatrix"
|
|
)
|
|
|
|
// LoveYou responds to love messages
|
|
type LoveYou struct {
|
|
}
|
|
|
|
func (h *LoveYou) match(msg string) bool {
|
|
re := regexp.MustCompile(`(?i)i love you`)
|
|
return re.MatchString(msg)
|
|
}
|
|
|
|
func (h *LoveYou) resp() string {
|
|
a := []string{
|
|
"I am not ready for this kind of relationship!",
|
|
"ಠ_ಠ",
|
|
"I love you too!",
|
|
"(╯‵Д′)╯彡┻━┻",
|
|
"hawkard!",
|
|
}
|
|
|
|
rand.Seed(time.Now().Unix())
|
|
return a[rand.Intn(len(a))]
|
|
|
|
}
|
|
|
|
// RespondText to love events
|
|
func (h *LoveYou) RespondText(c *gomatrix.Client, ev *gomatrix.Event, user, post string) {
|
|
u := NameRE.ReplaceAllString(user, "$1")
|
|
if ToMe(u, post) {
|
|
if h.match(post) {
|
|
log.Printf("%s: responding to '%s'", h.Name(), ev.Sender)
|
|
SendText(c, ev.RoomID, h.resp())
|
|
}
|
|
}
|
|
}
|
|
|
|
// Name i love you
|
|
func (h *LoveYou) Name() string {
|
|
return "LoveYou"
|
|
}
|