57 lines
1.0 KiB
Go
57 lines
1.0 KiB
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))]
|
||
|
|
||
|
}
|
||
|
|
||
|
// Respond to love events
|
||
|
func (h *LoveYou) Respond(c *gomatrix.Client, ev *gomatrix.Event, user string) {
|
||
|
if mtype, ok := ev.MessageType(); ok {
|
||
|
switch mtype {
|
||
|
case "m.text":
|
||
|
if post, ok := ev.Body(); ok {
|
||
|
u := NameRE.ReplaceAllString(user, "$1")
|
||
|
if ToMe(u, post) {
|
||
|
if h.match(post) {
|
||
|
log.Printf("%s: responding to '%s'", h.Name(), ev.Sender)
|
||
|
SendMessage(c, ev.RoomID, h.resp())
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Name i love you
|
||
|
func (h *LoveYou) Name() string {
|
||
|
return "LoveYou"
|
||
|
}
|