2020-02-02 07:23:59 -07:00
|
|
|
package plugins
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"regexp"
|
|
|
|
"runtime"
|
|
|
|
|
|
|
|
"github.com/matrix-org/gomatrix"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Version responds to hi messages
|
|
|
|
type Version struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Version) match(msg string) bool {
|
|
|
|
re := regexp.MustCompile(`(?i)version$`)
|
|
|
|
return re.MatchString(msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Version) print(to string) string {
|
|
|
|
return fmt.Sprintf("%s, I am written in Go, running on %s", to, runtime.GOOS)
|
|
|
|
}
|
|
|
|
|
2020-02-02 19:43:26 -07:00
|
|
|
// RespondText to version events
|
|
|
|
func (v *Version) RespondText(c *gomatrix.Client, ev *gomatrix.Event, user, post string) {
|
|
|
|
u := NameRE.ReplaceAllString(user, "$1")
|
|
|
|
s := NameRE.ReplaceAllString(ev.Sender, "$1")
|
|
|
|
if ToMe(u, post) {
|
|
|
|
if v.match(post) {
|
|
|
|
log.Printf("%s: responding to '%s'", v.Name(), ev.Sender)
|
|
|
|
SendText(c, ev.RoomID, v.print(s))
|
2020-02-02 07:23:59 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name Version
|
|
|
|
func (v *Version) Name() string {
|
|
|
|
return "Version"
|
|
|
|
}
|