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
|
|
|
|
|
2021-04-07 19:40:14 -06:00
|
|
|
const response = `**%s** running on: **%s**. Built with Go: **%s**.`
|
2020-06-27 07:29:35 -06:00
|
|
|
|
2020-02-02 07:23:59 -07:00
|
|
|
// Version responds to hi messages
|
|
|
|
type Version struct {
|
|
|
|
}
|
|
|
|
|
2020-02-11 07:56:19 -07:00
|
|
|
// 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 {
|
2020-02-11 07:56:19 -07:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-04-07 19:40:14 -06:00
|
|
|
// Process does the heavy lifting
|
2021-04-01 16:15:25 -06: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
|
|
|
|
2020-02-02 19:43:26 -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 {
|
2021-04-01 16:15:25 -06:00
|
|
|
return SendMD(c, ev.RoomID, v.Process("", ""))
|
2020-02-02 07:23:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Name Version
|
|
|
|
func (v *Version) Name() string {
|
|
|
|
return "Version"
|
|
|
|
}
|