Aaron Bieber
d6673169be
Expand sms to run Process for each plugin, add a "homestead" plugin while here! \o/
48 lines
962 B
Go
48 lines
962 B
Go
package plugins
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
|
|
"github.com/matrix-org/gomatrix"
|
|
)
|
|
|
|
// Hi responds to hi messages
|
|
type Hi struct {
|
|
}
|
|
|
|
// Descr describes this plugin
|
|
func (h *Hi) Descr() string {
|
|
return "Friendly bots say hi."
|
|
}
|
|
|
|
// Re is the regex for matching hi messages.
|
|
func (h *Hi) Re() string {
|
|
return `(?i)^hi|hi$`
|
|
}
|
|
|
|
// Match determines if we are highfiving
|
|
func (h *Hi) Match(user, msg string) bool {
|
|
re := regexp.MustCompile(h.Re())
|
|
return re.MatchString(msg) && ToMe(user, msg)
|
|
}
|
|
|
|
// SetStore we don't need a store here
|
|
func (h *Hi) SetStore(_ PluginStore) {}
|
|
|
|
// Process does the lifting
|
|
func (h *Hi) Process(from, post string) string {
|
|
s := NameRE.ReplaceAllString(from, "$1")
|
|
return fmt.Sprintf("hi %s!", s)
|
|
}
|
|
|
|
// RespondText to hi events
|
|
func (h *Hi) RespondText(c *gomatrix.Client, ev *gomatrix.Event, _, post string) error {
|
|
return SendText(c, ev.RoomID, h.Process(ev.Sender, post))
|
|
}
|
|
|
|
// Name hi
|
|
func (h *Hi) Name() string {
|
|
return "Hi"
|
|
}
|