mcchunkie/plugins/plugins.go

146 lines
3.1 KiB
Go
Raw Normal View History

2020-01-31 19:57:40 -07:00
package plugins
import (
2020-02-19 18:03:29 -07:00
"bytes"
"encoding/json"
"net/http"
2020-01-31 19:57:40 -07:00
"regexp"
"strings"
2020-02-19 18:03:29 -07:00
"time"
2020-01-31 19:57:40 -07:00
"github.com/matrix-org/gomatrix"
)
2020-02-10 17:10:57 -07:00
// PluginStore matches MCStore. This allows the main store to be used by
// plugins.
2020-02-05 22:04:04 -07:00
type PluginStore interface {
Set(key, values string)
Get(key string) (string, error)
}
2020-02-10 17:10:57 -07:00
// Plugin defines the interface a plugin must implement to be used by
// mcchunkie.
2020-01-31 19:57:40 -07:00
type Plugin interface {
// Descr returns a brief description of the plugin.
Descr() string
2020-02-10 17:10:57 -07:00
// Match determines if the plugin's main Respond function should be
// called
Match(user, message string) bool
// Name should return the human readable name of the bot
Name() string
// Re returns the regular expression that a plugin uses to "match"
Re() string
// RespondText responds to a "m.text" event
RespondText(c *gomatrix.Client, ev *gomatrix.Event, user, path string)
2020-02-10 17:10:57 -07:00
// SetStore exposes the top level MCStore to a plugin
2020-02-05 22:04:04 -07:00
SetStore(s PluginStore)
2020-01-31 19:57:40 -07:00
}
// NameRE matches the "friendly" name. This is typically used in tab
// completion.
2020-01-31 19:57:40 -07:00
var NameRE = regexp.MustCompile(`@(.+):.+$`)
// ToMe returns true of the message pertains to the bot
func ToMe(user, message string) bool {
2020-02-10 17:10:57 -07:00
u := NameRE.ReplaceAllString(user, "$1")
return strings.Contains(message, u)
2020-01-31 19:57:40 -07:00
}
2020-02-19 18:03:29 -07:00
// HTTPRequest has the bits for making http requests
type HTTPRequest struct {
Client http.Client
Request *http.Request
Timeout time.Duration
URL string
Method string
ReqBody interface{}
ResBody interface{}
}
// DoJSON is a general purpose http mechanic that can be used to get, post..
// what evs. The response is always expected to be json
func (h *HTTPRequest) DoJSON() (err error) {
h.Client.Timeout = h.Timeout
if h.Method == "" {
h.Method = "GET"
}
if h.ReqBody != nil {
// We have a request to send to the server
buf := new(bytes.Buffer)
err = json.NewEncoder(buf).Encode(h.ReqBody)
if err != nil {
return err
}
h.Request, err = http.NewRequest(h.Method, h.URL, buf)
} else {
// Just gimme dem datas
h.Request, err = http.NewRequest(h.Method, h.URL, nil)
}
if err != nil {
return err
}
h.Request.Header.Set("Content-Type", "application/json")
res, err := h.Client.Do(h.Request)
if res != nil {
defer res.Body.Close()
}
if err != nil {
return err
}
if h.ResBody != nil && res.Body != nil {
return json.NewDecoder(res.Body).Decode(&h.ResBody)
}
return nil
}
// SendText sends a text message to a given room. It pretends to be
// "typing" by calling UserTyping for the caller.
func SendText(c *gomatrix.Client, roomID, message string) error {
2020-01-31 19:57:40 -07:00
_, err := c.UserTyping(roomID, true, 3)
if err != nil {
return err
}
c.SendText(roomID, message)
_, err = c.UserTyping(roomID, false, 0)
if err != nil {
return err
}
return nil
}
// Plugins is a collection of our plugins. An instance of this is iterated
// over for each message the bot receives.
2020-01-31 19:57:40 -07:00
type Plugins []Plugin
// Plugs defines the "enabled" plugins.
2020-01-31 19:57:40 -07:00
var Plugs = Plugins{
2020-02-12 20:12:44 -07:00
&Beat{},
2020-02-01 15:14:46 -07:00
&Beer{},
2020-01-31 20:27:22 -07:00
&BotSnack{},
&Feder{},
2020-01-31 19:57:40 -07:00
&HighFive{},
&Hi{},
2020-02-01 15:15:01 -07:00
&LoveYou{},
2020-02-03 16:19:04 -07:00
&OpenBSDMan{},
2020-02-23 14:35:07 -07:00
&Snap{},
&Source{},
2020-02-12 20:13:05 -07:00
&Thanks{},
2020-02-02 07:23:59 -07:00
&Version{},
2020-02-07 16:06:24 -07:00
&Wb{},
2020-02-05 22:13:23 -07:00
&Weather{},
2020-01-31 19:57:40 -07:00
}