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
|
|
|
|
|
2016-03-30 10:00:20 -04:00
|
|
|
import (
|
|
|
|
"github.com/jmoiron/sqlx"
|
2016-04-01 10:20:03 -04:00
|
|
|
"github.com/velour/catbase/bot/msg"
|
|
|
|
"github.com/velour/catbase/bot/user"
|
2016-03-30 10:00:20 -04:00
|
|
|
"github.com/velour/catbase/config"
|
|
|
|
)
|
|
|
|
|
2019-02-05 10:54:13 -05:00
|
|
|
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
|
|
|
|
)
|
|
|
|
|
2019-03-09 22:40:03 -05:00
|
|
|
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
|
2019-02-15 13:22:54 -05:00
|
|
|
type CallbackMap map[string]map[Kind][]Callback
|
2019-02-05 10:54:13 -05:00
|
|
|
|
2020-05-25 14:42:56 -04:00
|
|
|
// b interface serves to allow mocking of the actual bot
|
2016-03-30 10:00:20 -04:00
|
|
|
type Bot interface {
|
2019-02-05 11:20:43 -05:00
|
|
|
// Config allows access to the bot's configuration system
|
2016-03-30 10:00:20 -04:00
|
|
|
Config() *config.Config
|
2019-02-05 11:20:43 -05:00
|
|
|
// DB gives access to the current database
|
2016-03-30 10:00:20 -04:00
|
|
|
DB() *sqlx.DB
|
2019-02-05 11:20:43 -05:00
|
|
|
// Who lists users in a particular channel
|
2016-04-01 10:20:03 -04:00
|
|
|
Who(string) []user.User
|
2019-05-27 19:21:53 -04:00
|
|
|
// WhoAmI gives a nick for the bot
|
|
|
|
WhoAmI() string
|
2019-02-05 11:20:43 -05:00
|
|
|
// AddPlugin registers a new plugin handler
|
2019-02-05 16:10:36 -05:00
|
|
|
AddPlugin(Plugin)
|
2019-02-05 10:54:13 -05:00
|
|
|
// 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)
|
2019-02-05 10:54:13 -05:00
|
|
|
// 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
|
2019-02-05 10:54:13 -05:00
|
|
|
// Register a callback
|
2019-02-05 13:58:12 -05:00
|
|
|
Register(Plugin, Kind, Callback)
|
2019-02-05 10:54:13 -05:00
|
|
|
|
2016-04-01 10:20:03 -04:00
|
|
|
Filter(msg.Message, string) string
|
|
|
|
LastMessage(string) (msg.Message, error)
|
2019-02-05 10:54:13 -05:00
|
|
|
|
2016-04-01 10:20:03 -04:00
|
|
|
CheckAdmin(string) bool
|
2017-07-24 15:09:27 -04:00
|
|
|
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
|
2019-06-09 00:15:06 -04:00
|
|
|
GetWebNavigation() []EndPoint
|
2019-06-13 10:04:06 -04:00
|
|
|
GetPassword() string
|
2020-04-29 17:45:53 -04:00
|
|
|
SetQuiet(bool)
|
2016-03-30 10:00:20 -04:00
|
|
|
}
|
|
|
|
|
2019-02-05 11:20:43 -05:00
|
|
|
// Connector represents a server connection to a chat service
|
2016-03-10 13:37:07 -05:00
|
|
|
type Connector interface {
|
2019-02-05 22:52:49 -05:00
|
|
|
RegisterEvent(Callback)
|
2016-03-10 13:37:07 -05:00
|
|
|
|
2019-02-05 13:33:18 -05:00
|
|
|
Send(Kind, ...interface{}) (string, error)
|
2019-02-05 10:54:13 -05:00
|
|
|
|
2017-07-24 15:09:27 -04:00
|
|
|
GetEmojiList() map[string]string
|
2017-09-07 00:32:53 -04:00
|
|
|
Serve() error
|
2016-04-21 11:19:38 -04:00
|
|
|
|
|
|
|
Who(string) []string
|
2020-05-08 10:31:27 -04:00
|
|
|
Profile(string) (user.User, error)
|
2016-03-10 13:37:07 -05:00
|
|
|
}
|
|
|
|
|
2019-02-05 11:20:43 -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
|
2019-02-05 10:54:13 -05:00
|
|
|
type Plugin interface {
|
2016-03-10 13:37:07 -05:00
|
|
|
}
|