mcchunkie/plugins/source.go

48 lines
1.1 KiB
Go
Raw Normal View History

package plugins
import (
"fmt"
"regexp"
"github.com/matrix-org/gomatrix"
)
// Source responds to source requests
type Source struct {
}
// Descr describes this plugin
func (h *Source) Descr() string {
return "Tell people where they can find more information about myself."
}
// Re matches the source code question
func (h *Source) Re() string {
return `(?i)where is your (source|code)`
}
2020-05-13 17:36:26 -06:00
// Match determines if someone is asking about the source code
2020-02-10 17:10:57 -07:00
func (h *Source) Match(user, msg string) bool {
re := regexp.MustCompile(h.Re())
2020-02-10 17:10:57 -07:00
return re.MatchString(msg) && ToMe(user, msg)
}
2020-02-05 22:04:04 -07:00
// SetStore does nothing in here
2020-05-13 17:05:01 -06:00
func (h *Source) SetStore(_ PluginStore) {}
2020-02-05 22:04:04 -07:00
// Process does the heavy lifting
func (h *Source) Process(from, post string) string {
s := NameRE.ReplaceAllString(from, "$1")
return fmt.Sprintf("%s: %s ;D", s, "https://git.sr.ht/~qbit/mcchunkie")
}
// RespondText to questions about TheSource™©®⑨
2020-05-13 17:05:01 -06:00
func (h *Source) RespondText(c *gomatrix.Client, ev *gomatrix.Event, _, _ string) error {
return SendText(c, ev.RoomID, h.Process(ev.Sender, ""))
}
// Name Source
func (h *Source) Name() string {
return "Source"
}