<3
This commit is contained in:
parent
a78dfbc0ce
commit
608806becb
56
plugins/love.go
Normal file
56
plugins/love.go
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
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"
|
||||||
|
}
|
@ -46,4 +46,5 @@ var Plugs = Plugins{
|
|||||||
&BotSnack{},
|
&BotSnack{},
|
||||||
&HighFive{},
|
&HighFive{},
|
||||||
&Hi{},
|
&Hi{},
|
||||||
|
&LoveYou{},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user