2016-01-17 18:00:44 +00:00
|
|
|
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
|
2013-12-10 23:37:07 +00:00
|
|
|
|
2012-08-17 20:38:15 +00:00
|
|
|
package bot
|
|
|
|
|
2012-10-11 20:28:00 +00:00
|
|
|
import (
|
2013-06-01 17:39:17 +00:00
|
|
|
"html/template"
|
2013-06-01 17:10:15 +00:00
|
|
|
"net/http"
|
2019-02-05 20:13:32 +00:00
|
|
|
"reflect"
|
2012-10-11 20:28:00 +00:00
|
|
|
"strings"
|
2014-04-20 19:08:24 +00:00
|
|
|
|
2016-03-19 18:02:46 +00:00
|
|
|
"github.com/jmoiron/sqlx"
|
2019-03-07 16:35:42 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2016-04-01 14:20:03 +00:00
|
|
|
"github.com/velour/catbase/bot/msg"
|
|
|
|
"github.com/velour/catbase/bot/msglog"
|
|
|
|
"github.com/velour/catbase/bot/user"
|
2016-01-17 18:00:44 +00:00
|
|
|
"github.com/velour/catbase/config"
|
2012-10-11 20:28:00 +00:00
|
|
|
)
|
2012-08-17 20:38:15 +00:00
|
|
|
|
2016-03-30 14:00:20 +00:00
|
|
|
// bot type provides storage for bot-wide information, configs, and database connections
|
|
|
|
type bot struct {
|
2012-08-17 22:09:29 +00:00
|
|
|
// Each plugin must be registered in our plugins handler. To come: a map so that this
|
|
|
|
// will allow plugins to respond to specific kinds of events
|
2019-02-05 15:54:13 +00:00
|
|
|
plugins map[string]Plugin
|
2016-03-30 14:00:20 +00:00
|
|
|
pluginOrdering []string
|
2012-08-17 22:09:29 +00:00
|
|
|
|
|
|
|
// Users holds information about all of our friends
|
2016-04-01 14:20:03 +00:00
|
|
|
users []user.User
|
2013-05-08 00:08:18 +00:00
|
|
|
// Represents the bot
|
2016-04-01 14:20:03 +00:00
|
|
|
me user.User
|
2012-08-17 22:09:29 +00:00
|
|
|
|
2016-03-30 14:00:20 +00:00
|
|
|
config *config.Config
|
2012-08-17 22:09:29 +00:00
|
|
|
|
2016-03-30 14:00:20 +00:00
|
|
|
conn Connector
|
2016-03-10 18:37:07 +00:00
|
|
|
|
2016-04-01 14:20:03 +00:00
|
|
|
logIn chan msg.Message
|
|
|
|
logOut chan msg.Messages
|
2012-10-11 20:28:00 +00:00
|
|
|
|
2016-03-30 14:00:20 +00:00
|
|
|
version string
|
2013-06-01 17:10:15 +00:00
|
|
|
|
|
|
|
// The entries to the bot's HTTP interface
|
2013-06-01 17:39:17 +00:00
|
|
|
httpEndPoints map[string]string
|
2017-09-29 04:58:21 +00:00
|
|
|
|
|
|
|
// filters registered by plugins
|
|
|
|
filters map[string]func(string) string
|
2019-02-05 15:54:13 +00:00
|
|
|
|
2019-02-05 17:25:31 +00:00
|
|
|
callbacks CallbackMap
|
2012-08-17 20:38:15 +00:00
|
|
|
}
|
|
|
|
|
2019-02-05 15:54:13 +00:00
|
|
|
// Variable represents a $var replacement
|
2012-08-26 23:23:51 +00:00
|
|
|
type Variable struct {
|
|
|
|
Variable, Value string
|
|
|
|
}
|
|
|
|
|
2019-02-05 15:54:13 +00:00
|
|
|
// New creates a bot for a given connection and set of handlers.
|
2016-03-30 14:00:20 +00:00
|
|
|
func New(config *config.Config, connector Connector) Bot {
|
2016-04-01 14:20:03 +00:00
|
|
|
logIn := make(chan msg.Message)
|
|
|
|
logOut := make(chan msg.Messages)
|
2012-10-11 20:28:00 +00:00
|
|
|
|
2016-04-01 14:20:03 +00:00
|
|
|
msglog.RunNew(logIn, logOut)
|
2012-10-11 20:28:00 +00:00
|
|
|
|
2016-04-01 14:20:03 +00:00
|
|
|
users := []user.User{
|
|
|
|
user.User{
|
2019-01-22 00:16:57 +00:00
|
|
|
Name: config.Get("Nick", "bot"),
|
2013-05-07 23:05:40 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-03-30 14:00:20 +00:00
|
|
|
bot := &bot{
|
|
|
|
config: config,
|
2019-02-05 15:54:13 +00:00
|
|
|
plugins: make(map[string]Plugin),
|
2016-03-30 14:00:20 +00:00
|
|
|
pluginOrdering: make([]string, 0),
|
|
|
|
conn: connector,
|
|
|
|
users: users,
|
|
|
|
me: users[0],
|
2012-10-11 20:28:00 +00:00
|
|
|
logIn: logIn,
|
|
|
|
logOut: logOut,
|
2013-06-01 17:39:17 +00:00
|
|
|
httpEndPoints: make(map[string]string),
|
2017-09-29 04:58:21 +00:00
|
|
|
filters: make(map[string]func(string) string),
|
2019-02-05 17:25:31 +00:00
|
|
|
callbacks: make(CallbackMap),
|
2012-08-17 20:38:15 +00:00
|
|
|
}
|
2013-06-01 17:10:15 +00:00
|
|
|
|
2016-01-15 06:12:26 +00:00
|
|
|
bot.migrateDB()
|
|
|
|
|
2013-06-01 17:10:15 +00:00
|
|
|
http.HandleFunc("/", bot.serveRoot)
|
|
|
|
|
2019-02-05 18:33:18 +00:00
|
|
|
connector.RegisterEvent(bot.Receive)
|
2016-03-10 18:37:07 +00:00
|
|
|
|
2013-06-01 17:10:15 +00:00
|
|
|
return bot
|
2012-08-17 20:38:15 +00:00
|
|
|
}
|
|
|
|
|
2016-03-30 14:00:20 +00:00
|
|
|
// Config gets the configuration that the bot is using
|
|
|
|
func (b *bot) Config() *config.Config {
|
|
|
|
return b.config
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bot) DB() *sqlx.DB {
|
2019-01-20 20:21:26 +00:00
|
|
|
return b.config.DB
|
2016-03-30 14:00:20 +00:00
|
|
|
}
|
|
|
|
|
2016-01-15 06:12:26 +00:00
|
|
|
// Create any tables if necessary based on version of DB
|
|
|
|
// Plugins should create their own tables, these are only for official bot stuff
|
|
|
|
// Note: This does not return an error. Database issues are all fatal at this stage.
|
2016-03-30 14:00:20 +00:00
|
|
|
func (b *bot) migrateDB() {
|
2019-01-20 20:21:26 +00:00
|
|
|
if _, err := b.DB().Exec(`create table if not exists variables (
|
2016-01-15 06:12:26 +00:00
|
|
|
id integer primary key,
|
|
|
|
name string,
|
|
|
|
value string
|
|
|
|
);`); err != nil {
|
2019-03-07 16:35:42 +00:00
|
|
|
log.Fatal().Err(err).Msgf("Initial DB migration create variables table")
|
2016-01-15 06:12:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-17 20:38:15 +00:00
|
|
|
// Adds a constructed handler to the bots handlers list
|
2019-02-05 21:10:36 +00:00
|
|
|
func (b *bot) AddPlugin(h Plugin) {
|
|
|
|
name := reflect.TypeOf(h).String()
|
2017-10-31 10:22:36 +00:00
|
|
|
b.plugins[name] = h
|
2016-03-30 14:00:20 +00:00
|
|
|
b.pluginOrdering = append(b.pluginOrdering, name)
|
2012-08-17 21:37:49 +00:00
|
|
|
}
|
2012-08-26 20:15:50 +00:00
|
|
|
|
2016-04-01 14:20:03 +00:00
|
|
|
func (b *bot) Who(channel string) []user.User {
|
2016-04-21 15:19:38 +00:00
|
|
|
names := b.conn.Who(channel)
|
|
|
|
users := []user.User{}
|
|
|
|
for _, n := range names {
|
|
|
|
users = append(users, user.New(n))
|
2014-04-21 01:06:42 +00:00
|
|
|
}
|
2016-04-21 15:19:38 +00:00
|
|
|
return users
|
2013-06-02 01:59:55 +00:00
|
|
|
}
|
|
|
|
|
2019-02-05 15:54:13 +00:00
|
|
|
var rootIndex = `
|
2013-06-01 17:39:17 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Factoids</title>
|
|
|
|
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.1.0/pure-min.css">
|
2014-04-21 01:12:02 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2013-06-01 17:39:17 +00:00
|
|
|
</head>
|
|
|
|
{{if .EndPoints}}
|
|
|
|
<div style="padding-top: 1em;">
|
|
|
|
<table class="pure-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Plugin</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
{{range $key, $value := .EndPoints}}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{{$value}}">{{$key}}</a></td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</html>
|
|
|
|
`
|
|
|
|
|
2016-03-30 14:00:20 +00:00
|
|
|
func (b *bot) serveRoot(w http.ResponseWriter, r *http.Request) {
|
2013-06-01 17:39:17 +00:00
|
|
|
context := make(map[string]interface{})
|
|
|
|
context["EndPoints"] = b.httpEndPoints
|
|
|
|
t, err := template.New("rootIndex").Parse(rootIndex)
|
|
|
|
if err != nil {
|
2019-03-07 16:35:42 +00:00
|
|
|
log.Error().Err(err)
|
2013-06-01 17:10:15 +00:00
|
|
|
}
|
2013-06-01 17:39:17 +00:00
|
|
|
t.Execute(w, context)
|
2013-06-01 17:10:15 +00:00
|
|
|
}
|
2016-03-11 02:11:52 +00:00
|
|
|
|
2019-02-05 15:54:13 +00:00
|
|
|
// IsCmd checks if message is a command and returns its curtailed version
|
2016-03-11 02:11:52 +00:00
|
|
|
func IsCmd(c *config.Config, message string) (bool, string) {
|
2019-01-22 00:16:57 +00:00
|
|
|
cmdcs := c.GetArray("CommandChar", []string{"!"})
|
|
|
|
botnick := strings.ToLower(c.Get("Nick", "bot"))
|
2019-01-21 19:24:03 +00:00
|
|
|
if botnick == "" {
|
2019-03-07 16:35:42 +00:00
|
|
|
log.Fatal().
|
|
|
|
Msgf(`You must run catbase -set nick -val <your bot nick>`)
|
2019-01-21 19:24:03 +00:00
|
|
|
}
|
2016-03-11 02:11:52 +00:00
|
|
|
iscmd := false
|
|
|
|
lowerMessage := strings.ToLower(message)
|
|
|
|
|
2016-09-27 16:42:00 +00:00
|
|
|
if strings.HasPrefix(lowerMessage, botnick) &&
|
2016-03-11 02:11:52 +00:00
|
|
|
len(lowerMessage) > len(botnick) &&
|
|
|
|
(lowerMessage[len(botnick)] == ',' || lowerMessage[len(botnick)] == ':') {
|
|
|
|
|
|
|
|
iscmd = true
|
|
|
|
message = message[len(botnick):]
|
|
|
|
|
|
|
|
// trim off the customary addressing punctuation
|
|
|
|
if message[0] == ':' || message[0] == ',' {
|
|
|
|
message = message[1:]
|
|
|
|
}
|
2016-09-27 16:42:00 +00:00
|
|
|
} else {
|
|
|
|
for _, cmdc := range cmdcs {
|
|
|
|
if strings.HasPrefix(lowerMessage, cmdc) && len(cmdc) > 0 {
|
|
|
|
iscmd = true
|
|
|
|
message = message[len(cmdc):]
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2016-03-11 02:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// trim off any whitespace left on the message
|
|
|
|
message = strings.TrimSpace(message)
|
|
|
|
|
|
|
|
return iscmd, message
|
|
|
|
}
|
2016-04-01 14:20:03 +00:00
|
|
|
|
|
|
|
func (b *bot) CheckAdmin(nick string) bool {
|
2019-01-22 00:16:57 +00:00
|
|
|
for _, u := range b.Config().GetArray("Admins", []string{}) {
|
2016-04-01 14:20:03 +00:00
|
|
|
if nick == u {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
var users = map[string]*user.User{}
|
|
|
|
|
|
|
|
func (b *bot) GetUser(nick string) *user.User {
|
|
|
|
if _, ok := users[nick]; !ok {
|
|
|
|
users[nick] = &user.User{
|
|
|
|
Name: nick,
|
|
|
|
Admin: b.checkAdmin(nick),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return users[nick]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bot) NewUser(nick string) *user.User {
|
|
|
|
return &user.User{
|
|
|
|
Name: nick,
|
|
|
|
Admin: b.checkAdmin(nick),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *bot) checkAdmin(nick string) bool {
|
2019-01-22 00:16:57 +00:00
|
|
|
for _, u := range b.Config().GetArray("Admins", []string{}) {
|
2016-04-01 14:20:03 +00:00
|
|
|
if nick == u {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2017-09-29 04:58:21 +00:00
|
|
|
|
|
|
|
// Register a text filter which every outgoing message is passed through
|
|
|
|
func (b *bot) RegisterFilter(name string, f func(string) string) {
|
|
|
|
b.filters[name] = f
|
|
|
|
}
|
2019-02-05 15:54:13 +00:00
|
|
|
|
|
|
|
// Register a callback
|
2019-02-05 18:58:12 +00:00
|
|
|
func (b *bot) Register(p Plugin, kind Kind, cb Callback) {
|
2019-02-15 18:22:54 +00:00
|
|
|
t := reflect.TypeOf(p).String()
|
2019-02-05 20:13:32 +00:00
|
|
|
if _, ok := b.callbacks[t]; !ok {
|
|
|
|
b.callbacks[t] = make(map[Kind][]Callback)
|
2019-02-05 18:33:18 +00:00
|
|
|
}
|
2019-02-05 20:13:32 +00:00
|
|
|
if _, ok := b.callbacks[t][kind]; !ok {
|
|
|
|
b.callbacks[t][kind] = []Callback{}
|
2019-02-05 18:33:18 +00:00
|
|
|
}
|
2019-02-05 20:13:32 +00:00
|
|
|
b.callbacks[t][kind] = append(b.callbacks[t][kind], cb)
|
2019-02-05 17:25:31 +00:00
|
|
|
}
|
2019-02-07 16:30:42 +00:00
|
|
|
|
|
|
|
func (b *bot) RegisterWeb(root, name string) {
|
|
|
|
b.httpEndPoints[name] = root
|
|
|
|
}
|