mcchunkie/plugins/version.go

59 lines
1.1 KiB
Go
Raw Normal View History

2020-02-02 07:23:59 -07:00
package plugins
import (
"fmt"
"regexp"
"runtime"
"github.com/matrix-org/gomatrix"
)
2020-03-13 15:04:39 -06:00
var version string
2020-06-27 07:29:35 -06:00
const response = `
**%s** running on: **%s**
Built with Go: **%s**
`
2020-02-02 07:23:59 -07:00
// 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$`
}
2020-02-10 17:10:57 -07:00
// 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())
2020-02-10 17:10:57 -07:00
return re.MatchString(msg) && ToMe(user, msg)
2020-02-02 07:23:59 -07:00
}
func (v *Version) Process(_, _ string) string {
2020-03-13 15:04:39 -06:00
if version == "" {
version = "unknown version"
}
2020-06-27 07:29:35 -06:00
return fmt.Sprintf(response, version, runtime.GOOS, runtime.Version())
2020-02-02 07:23:59 -07:00
}
2020-02-05 22:04:04 -07:00
// SetStore does nothing in here
2020-05-13 17:05:01 -06:00
func (v *Version) SetStore(_ PluginStore) {}
2020-02-05 22:04:04 -07:00
// RespondText to version events
2020-05-13 17:05:01 -06:00
func (v *Version) RespondText(c *gomatrix.Client, ev *gomatrix.Event, _, _ string) error {
return SendMD(c, ev.RoomID, v.Process("", ""))
2020-02-02 07:23:59 -07:00
}
// Name Version
func (v *Version) Name() string {
return "Version"
}