catbase/bot/interfaces.go

75 lines
1.7 KiB
Go
Raw Normal View History

2016-03-19 19:32:51 +00:00
// © 2016 the CatBase Authors under the WTFPL license. See AUTHORS for the list of authors.
2016-03-10 18:37:07 +00: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 kind int
type Callback func(int, msg.Message, ...interface{}) bool
type Bot interface {
Config() *config.Config
DB() *sqlx.DB
Who(string) []user.User
AddPlugin(string, Plugin)
// First arg should be one of bot.Message/Reply/Action/etc
Send(int, ...interface{}) (error, string)
// First arg should be one of bot.Message/Reply/Action/etc
Receive(int, msg.Message, ...interface{})
// Register a callback
Register(int, Callback)
Filter(msg.Message, string) string
LastMessage(string) (msg.Message, error)
CheckAdmin(string) bool
GetEmojiList() map[string]string
2017-09-29 04:58:21 +00:00
RegisterFilter(string, func(string) string)
}
2016-03-10 18:37:07 +00:00
type Connector interface {
RegisterEventReceived(func(message msg.Message))
RegisterMessageReceived(func(message msg.Message))
RegisterReplyMessageReceived(func(msg.Message, string))
2016-03-10 18:37:07 +00:00
Send(int, ...interface{}) (error, string)
GetEmojiList() map[string]string
Serve() error
2016-04-21 15:19:38 +00:00
Who(string) []string
2016-03-10 18:37:07 +00:00
}
// Interface used for compatibility with the Plugin interface
type Plugin interface {
2016-03-10 18:37:07 +00:00
RegisterWeb() *string
}