mirror of https://github.com/velour/catbase.git
206 lines
5.5 KiB
Go
206 lines
5.5 KiB
Go
// © 2016 the CatBase Authors under the WTFPL license. See AUTHORS for the list of authors.
|
|
|
|
package bot
|
|
|
|
import (
|
|
"regexp"
|
|
|
|
"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
|
|
// Send a disappearing message to a user in chat
|
|
Ephemeral
|
|
// 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
|
|
// Delete removes a message by ID
|
|
Delete
|
|
// Startup is triggered after the connector has run the Serve function
|
|
Startup
|
|
)
|
|
|
|
type EphemeralID string
|
|
|
|
type UnfurlLinks bool
|
|
|
|
type ImageAttachment struct {
|
|
URL string
|
|
AltTxt string
|
|
Width int
|
|
Height int
|
|
}
|
|
|
|
type Request struct {
|
|
Conn Connector
|
|
Kind Kind
|
|
Msg msg.Message
|
|
Values RegexValues
|
|
Args []interface{}
|
|
}
|
|
|
|
type Kind int
|
|
type Callback func(Connector, Kind, msg.Message, ...interface{}) bool
|
|
type ResponseHandler func(Request) bool
|
|
type CallbackMap map[string]map[Kind][]HandlerSpec
|
|
|
|
type HandlerSpec struct {
|
|
Kind Kind
|
|
IsCmd bool
|
|
Regex *regexp.Regexp
|
|
HelpText string
|
|
Handler ResponseHandler
|
|
}
|
|
type HandlerTable []HandlerSpec
|
|
|
|
type RegexValues map[string]string
|
|
|
|
// 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
|
|
// The channel should be represented as an ID for slack (check the connector for details)
|
|
Who(string) []user.User
|
|
|
|
// WhoAmI gives a nick for the bot
|
|
WhoAmI() string
|
|
|
|
// AddPlugin registers a new plugin handler
|
|
AddPlugin(Plugin)
|
|
|
|
// Send transmits a message to a Connector.
|
|
// Kind is listed in the bot's enum, one of bot.Message/Reply/Action/etc
|
|
// Usually, the first vararg should be a channel ID, but refer to the Connector for info
|
|
Send(Connector, Kind, ...interface{}) (string, error)
|
|
|
|
// bot receives from a Connector.
|
|
// The Kind arg should be one of bot.Message/Reply/Action/etc
|
|
Receive(Connector, Kind, msg.Message, ...interface{}) bool
|
|
|
|
// Register a set of plugin callbacks
|
|
// Kind will be matched to the event for the callback
|
|
RegisterTable(Plugin, HandlerTable)
|
|
|
|
// Register a plugin callback
|
|
// Kind will be matched to the event for the callback
|
|
RegisterRegex(Plugin, Kind, *regexp.Regexp, ResponseHandler)
|
|
|
|
// Register a plugin callback filtering non-commands out
|
|
// Kind will be matched to the event for the callback
|
|
RegisterRegexCmd(Plugin, Kind, *regexp.Regexp, ResponseHandler)
|
|
|
|
// Register a plugin callback
|
|
// Kind will be matched to the event for the callback
|
|
Register(Plugin, Kind, Callback)
|
|
|
|
// Filter prepares a message to be sent
|
|
// This loads the message with things like $variables
|
|
Filter(msg.Message, string) string
|
|
|
|
// LastMessage returns the last message the bot has seen
|
|
LastMessage(string) (msg.Message, error)
|
|
|
|
// CheckAdmin returns a user's admin status
|
|
CheckAdmin(string) bool
|
|
|
|
// GetEmojiList returns known emoji
|
|
GetEmojiList() map[string]string
|
|
|
|
// RegisterFilter creates a filter function for message processing
|
|
RegisterFilter(string, func(string) string)
|
|
|
|
// RegisterWeb records a web endpoint for the UI
|
|
RegisterWeb(string, string)
|
|
|
|
// DefaultConnector returns the base connector, which may not be the only connector
|
|
DefaultConnector() Connector
|
|
|
|
// GetWebNavigation returns the current known web endpoints
|
|
GetWebNavigation() []EndPoint
|
|
|
|
// GetPassword generates a unique password for modification commands on the public website
|
|
GetPassword() string
|
|
|
|
// SetQuiet toggles the bot's ability to send messages
|
|
SetQuiet(bool)
|
|
|
|
// GetPluginNames returns an ordered list of registered plugins
|
|
GetPluginNames() []string
|
|
|
|
// RefreshPluginBlacklist reloads the list of plugins disabled per room from the DB
|
|
RefreshPluginBlacklist() error
|
|
|
|
// RefreshPluginWhitelist reloads the list of plugins enabled from the DB
|
|
RefreshPluginWhitelist() error
|
|
|
|
// Get the contents of the white list
|
|
GetWhitelist() []string
|
|
|
|
// Check if a particular plugin is blacklisted
|
|
OnBlacklist(string, string) bool
|
|
|
|
// Check valid password
|
|
CheckPassword(secret, password string) bool
|
|
}
|
|
|
|
// Connector represents a server connection to a chat service
|
|
type Connector interface {
|
|
// RegisterEvent creates a callback to watch Connector events
|
|
RegisterEvent(Callback)
|
|
|
|
// Send transmits a message on the connector
|
|
Send(Kind, ...interface{}) (string, error)
|
|
|
|
// GetEmojiList returns a connector's known custom emoji
|
|
GetEmojiList() map[string]string
|
|
|
|
// Serve starts a connector's connection routine
|
|
Serve() error
|
|
|
|
// Who returns a user list for a channel
|
|
Who(string) []string
|
|
|
|
// Profile returns a user's information given an ID
|
|
Profile(string) (user.User, error)
|
|
|
|
// URL Format utility
|
|
URLFormat(title, url string) string
|
|
|
|
// Translate emojy to/from services
|
|
Emojy(string) string
|
|
|
|
// GetChannelName returns the human-friendly name for an ID (if possible)
|
|
GetChannelName(id string) string
|
|
|
|
// GetChannelName returns the channel ID for a human-friendly name (if possible)
|
|
GetChannelID(id string) string
|
|
}
|
|
|
|
// Plugin interface used for compatibility with the Plugin interface
|
|
// Uhh it turned empty, but we're still using it to ID plugins
|
|
type Plugin interface{}
|