mcchunkie/plugins/version.go

44 lines
921 B
Go

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)
}
// SetStore does nothing in here
func (h *Version) SetStore(s PluginStore) { return }
// 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))
}
}
}
// Name Version
func (v *Version) Name() string {
return "Version"
}