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"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Bot interface {
|
|
|
|
Config() *config.Config
|
|
|
|
DBVersion() int64
|
|
|
|
DB() *sqlx.DB
|
2016-04-01 10:20:03 -04:00
|
|
|
Who(string) []user.User
|
2016-03-30 10:00:20 -04:00
|
|
|
AddHandler(string, Handler)
|
2017-10-31 09:40:03 -04:00
|
|
|
SendMessage(string, string) string
|
|
|
|
SendAction(string, string) string
|
2017-10-31 10:16:41 -04:00
|
|
|
ReplyToMessageIdentifier(string, string, string) (string, bool)
|
|
|
|
ReplyToMessage(string, string, msg.Message) (string, bool)
|
2017-10-31 09:40:03 -04:00
|
|
|
React(string, string, msg.Message) bool
|
|
|
|
Edit(string, string, string) bool
|
2016-04-01 10:20:03 -04:00
|
|
|
MsgReceived(msg.Message)
|
2017-10-31 14:14:45 -04:00
|
|
|
ReplyMsgReceived(msg.Message, string)
|
2016-04-01 10:20:03 -04:00
|
|
|
EventReceived(msg.Message)
|
|
|
|
Filter(msg.Message, string) string
|
|
|
|
LastMessage(string) (msg.Message, error)
|
|
|
|
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)
|
2016-03-30 10:00:20 -04:00
|
|
|
}
|
|
|
|
|
2016-03-10 13:37:07 -05:00
|
|
|
type Connector interface {
|
2016-04-01 10:20:03 -04:00
|
|
|
RegisterEventReceived(func(message msg.Message))
|
|
|
|
RegisterMessageReceived(func(message msg.Message))
|
2017-10-31 14:14:45 -04:00
|
|
|
RegisterReplyMessageReceived(func(msg.Message, string))
|
2016-03-10 13:37:07 -05:00
|
|
|
|
2017-10-31 09:40:03 -04:00
|
|
|
SendMessage(channel, message string) string
|
|
|
|
SendAction(channel, message string) string
|
2017-10-31 10:16:41 -04:00
|
|
|
ReplyToMessageIdentifier(string, string, string) (string, bool)
|
|
|
|
ReplyToMessage(string, string, msg.Message) (string, bool)
|
2017-10-31 09:40:03 -04:00
|
|
|
React(string, string, msg.Message) bool
|
|
|
|
Edit(string, string, string) bool
|
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
|
2016-03-10 13:37:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Interface used for compatibility with the Plugin interface
|
|
|
|
type Handler interface {
|
2016-04-01 10:20:03 -04:00
|
|
|
Message(message msg.Message) bool
|
|
|
|
Event(kind string, message msg.Message) bool
|
2017-10-31 14:14:45 -04:00
|
|
|
ReplyMessage(msg.Message, string) bool
|
2016-04-01 10:20:03 -04:00
|
|
|
BotMessage(message msg.Message) bool
|
2016-03-10 13:37:07 -05:00
|
|
|
Help(channel string, parts []string)
|
|
|
|
RegisterWeb() *string
|
|
|
|
}
|