mcchunkie/plugins/openbsd_man.go

67 lines
1.3 KiB
Go
Raw Normal View History

2020-02-03 16:19:04 -07:00
package plugins
import (
"fmt"
"regexp"
"github.com/matrix-org/gomatrix"
)
// OpenBSDMan responds to beer requests
type OpenBSDMan struct {
}
// Descr describes this plugin
func (h *OpenBSDMan) Descr() string {
return "Produces a link to man.openbsd.org."
}
// Re matches our man format
func (h *OpenBSDMan) Re() string {
return `(?i)^man: ([1-9][p]?)?\s?(.+)$`
2020-02-05 17:34:41 -07:00
}
2020-02-03 16:19:04 -07:00
func (h *OpenBSDMan) fix(msg string) string {
re := regexp.MustCompile(h.Re())
resp := ""
section := re.ReplaceAllString(msg, "$1")
2020-02-05 17:34:41 -07:00
if section == msg {
return ""
}
if section != "" {
resp = re.ReplaceAllString(msg, "$2.$1")
if matched, _ := regexp.MatchString(`3p`, resp); matched {
resp = fmt.Sprintf("man3p/%s", resp)
}
} else {
resp = re.ReplaceAllString(msg, "$2")
}
return resp
2020-02-03 16:19:04 -07:00
}
2020-02-10 17:10:57 -07:00
// Match checks for our man page re
func (h *OpenBSDMan) Match(user, msg string) bool {
re := regexp.MustCompile(h.Re())
2020-02-03 16:19:04 -07:00
return re.MatchString(msg)
}
2020-02-05 22:04:04 -07:00
// SetStore does nothing in OpenBSDMan
2020-02-10 16:08:33 -07:00
func (h *OpenBSDMan) SetStore(s PluginStore) {}
2020-02-05 22:04:04 -07:00
2020-02-03 16:19:04 -07:00
// RespondText sends back a man page.
2020-05-13 16:53:31 -06:00
func (h *OpenBSDMan) RespondText(c *gomatrix.Client, ev *gomatrix.Event, user, post string) error {
2020-02-10 17:10:57 -07:00
page := h.fix(post)
if page != "" {
2020-05-13 16:53:31 -06:00
return SendText(c, ev.RoomID, fmt.Sprintf("https://man.openbsd.org/%s", page))
2020-02-03 16:19:04 -07:00
}
2020-05-13 16:53:31 -06:00
return nil
2020-02-03 16:19:04 -07:00
}
// Name OpenBSDMan!
func (h *OpenBSDMan) Name() string {
return "OpenBSDMan"
}