1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-04 20:21:42 +00:00
catbase/bot/interfaces.go

94 lines
2.3 KiB
Go
Raw Normal View History

2016-03-19 15:32:51 -04:00
// © 2016 the CatBase Authors under the WTFPL license. See AUTHORS for the list of authors.
2016-03-10 13:37:07 -05:00
package bot
import (
"github.com/jmoiron/sqlx"
"github.com/velour/catbase/bot/msg"
"github.com/velour/catbase/bot/user"
"github.com/velour/catbase/config"
)
const (
_ = iota
// Message any standard chat
Message
// Reply something containing a message reference
Reply
// Action any /me action
Action
// Reaction Icon reaction if service supports it
Reaction
// Edit message ref'd new message to replace
Edit
// Not sure what event is
Event
// Help is used when the bot help system is triggered
Help
// SelfMessage triggers when the bot is sending a message
SelfMessage
)
type ImageAttachment struct {
URL string
AltTxt string
}
2019-02-05 12:25:31 -05:00
type Kind int
2019-05-27 19:21:53 -04:00
type Callback func(Connector, Kind, msg.Message, ...interface{}) bool
type CallbackMap map[string]map[Kind][]Callback
2020-05-25 14:42:56 -04:00
// b interface serves to allow mocking of the actual bot
type Bot interface {
// Config allows access to the bot's configuration system
Config() *config.Config
// DB gives access to the current database
DB() *sqlx.DB
// Who lists users in a particular channel
Who(string) []user.User
2019-05-27 19:21:53 -04:00
// WhoAmI gives a nick for the bot
WhoAmI() string
// AddPlugin registers a new plugin handler
AddPlugin(Plugin)
// First arg should be one of bot.Message/Reply/Action/etc
2019-05-27 19:21:53 -04:00
Send(Connector, Kind, ...interface{}) (string, error)
// First arg should be one of bot.Message/Reply/Action/etc
2019-05-27 19:21:53 -04:00
Receive(Connector, Kind, msg.Message, ...interface{}) bool
// Register a callback
Register(Plugin, Kind, Callback)
Filter(msg.Message, string) string
LastMessage(string) (msg.Message, error)
CheckAdmin(string) bool
GetEmojiList() map[string]string
2017-09-29 00:58:21 -04:00
RegisterFilter(string, func(string) string)
2019-02-07 11:30:42 -05:00
RegisterWeb(string, string)
2019-05-27 19:21:53 -04:00
DefaultConnector() Connector
GetWebNavigation() []EndPoint
GetPassword() string
2020-04-29 17:45:53 -04:00
SetQuiet(bool)
GetPluginNames() []string
RefreshPluginBlacklist() error
}
// Connector represents a server connection to a chat service
2016-03-10 13:37:07 -05:00
type Connector interface {
RegisterEvent(Callback)
2016-03-10 13:37:07 -05:00
Send(Kind, ...interface{}) (string, error)
GetEmojiList() map[string]string
Serve() error
2016-04-21 11:19:38 -04:00
Who(string) []string
Profile(string) (user.User, error)
2016-03-10 13:37:07 -05:00
}
// Plugin interface used for compatibility with the Plugin interface
2019-02-07 11:30:42 -05:00
// Uhh it turned empty, but we're still using it to ID plugins
type Plugin interface {
2016-03-10 13:37:07 -05:00
}