mcchunkie/plugins/version.go

56 lines
1.2 KiB
Go

package plugins
import (
"fmt"
"regexp"
"runtime"
"github.com/matrix-org/gomatrix"
)
var version string
const response = `**%s** running on: **%s**. Built with Go: **%s**.`
// Version responds to hi messages
type Version struct {
}
// Descr describes this plugin
func (v *Version) Descr() string {
return "Show a bit of information about what we are."
}
// Re matches version
func (v *Version) Re() string {
return `(?i)version$`
}
// Match checks for "version" anywhere. Might want to tighten this one down at
// some point
func (v *Version) Match(user, msg string) bool {
re := regexp.MustCompile(v.Re())
return re.MatchString(msg) && ToMe(user, msg)
}
// Process does the heavy lifting
func (v *Version) Process(_, _ string) string {
if version == "" {
version = "unknown version"
}
return fmt.Sprintf(response, version, runtime.GOOS, runtime.Version())
}
// SetStore does nothing in here
func (v *Version) SetStore(_ PluginStore) {}
// RespondText to version events
func (v *Version) RespondText(c *gomatrix.Client, ev *gomatrix.Event, _, _ string) error {
return SendMD(c, ev.RoomID, v.Process("", ""))
}
// Name Version
func (v *Version) Name() string {
return "Version"
}