catbase/plugins/admin/admin.go

382 lines
13 KiB
Go

// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
package admin
import (
"fmt"
bh "github.com/timshannon/bolthold"
"os"
"regexp"
"strings"
"time"
"github.com/rs/zerolog/log"
"github.com/velour/catbase/bot"
"github.com/velour/catbase/bot/msg"
"github.com/velour/catbase/config"
)
// This is a admin plugin to serve as an example and quick copy/paste for new plugins.
type AdminPlugin struct {
bot bot.Bot
store *bh.Store
cfg *config.Config
quiet bool
}
// New creates a new AdminPlugin with the Plugin interface
func New(b bot.Bot) *AdminPlugin {
p := &AdminPlugin{
bot: b,
store: b.Store(),
cfg: b.Config(),
}
b.RegisterRegex(p, bot.Message, comeBackRegex, p.comeBackCmd)
b.RegisterRegexCmd(p, bot.Message, shutupRegex, p.shutupCmd)
b.RegisterRegexCmd(p, bot.Message, addBlacklistRegex, p.isAdmin(p.addBlacklistCmd))
b.RegisterRegexCmd(p, bot.Message, rmBlacklistRegex, p.isAdmin(p.rmBlacklistCmd))
b.RegisterRegexCmd(p, bot.Message, addWhitelistRegex, p.isAdmin(p.addWhitelistCmd))
b.RegisterRegexCmd(p, bot.Message, rmWhitelistRegex, p.isAdmin(p.rmWhitelistCmd))
b.RegisterRegexCmd(p, bot.Message, allWhitelistRegex, p.isAdmin(p.allWhitelistCmd))
b.RegisterRegexCmd(p, bot.Message, allUnWhitelistRegex, p.isAdmin(p.allUnWhitelistCmd))
b.RegisterRegexCmd(p, bot.Message, getWhitelistRegex, p.isAdmin(p.getWhitelistCmd))
b.RegisterRegexCmd(p, bot.Message, getPluginsRegex, p.isAdmin(p.getPluginsCmd))
b.RegisterRegexCmd(p, bot.Message, rebootRegex, p.isAdmin(p.rebootCmd))
b.RegisterRegexCmd(p, bot.Message, passwordRegex, p.passwordCmd)
b.RegisterRegex(p, bot.Message, variableSetRegex, p.variableSetCmd)
b.RegisterRegex(p, bot.Message, variableUnSetRegex, p.variableUnSetCmd)
b.RegisterRegexCmd(p, bot.Message, unsetConfigRegex, p.isAdmin(p.unsetConfigCmd))
b.RegisterRegexCmd(p, bot.Message, setConfigRegex, p.isAdmin(p.setConfigCmd))
b.RegisterRegexCmd(p, bot.Message, pushConfigRegex, p.isAdmin(p.pushConfigCmd))
b.RegisterRegexCmd(p, bot.Message, setKeyConfigRegex, p.isAdmin(p.setKeyConfigCmd))
b.RegisterRegexCmd(p, bot.Message, getConfigRegex, p.isAdmin(p.getConfigCmd))
b.Register(p, bot.Help, p.help)
p.registerWeb()
return p
}
var forbiddenKeys = map[string]bool{
"twitch.authorization": true,
"twitch.clientid": true,
"untappd.token": true,
"slack.token": true,
"meme.memes": true,
}
var shutupRegex = regexp.MustCompile(`(?i)^shut up$`)
var comeBackRegex = regexp.MustCompile(`(?i)^come back$`)
var addBlacklistRegex = regexp.MustCompile(`(?i)disable plugin (?P<plugin>.*)$`)
var rmBlacklistRegex = regexp.MustCompile(`(?i)enable plugin (?P<plugin>.*)$`)
var addWhitelistRegex = regexp.MustCompile(`(?i)^whitelist plugin (?P<plugin>.*)$`)
var rmWhitelistRegex = regexp.MustCompile(`(?i)^unwhitelist plugin (?P<plugin>.*)$`)
var allWhitelistRegex = regexp.MustCompile(`(?i)^whitelist all$`)
var allUnWhitelistRegex = regexp.MustCompile(`(?i)^unwhitelist all$`)
var getWhitelistRegex = regexp.MustCompile(`(?i)^list whitelist$`)
var getPluginsRegex = regexp.MustCompile(`(?i)^list plugins$`)
var rebootRegex = regexp.MustCompile(`^reboot$`)
var passwordRegex = regexp.MustCompile(`(?i)^password$`)
var variableSetRegex = regexp.MustCompile(`(?i)^\$(?P<var>\S+)\s?=\s?(?P<value>\S+)$`)
var variableUnSetRegex = regexp.MustCompile(`(?i)^\$(?P<var>\S+)\s?!=\s?(?P<value>\S+)$`)
var unsetConfigRegex = regexp.MustCompile(`(?i)^unset (?P<key>\S+)$`)
var setConfigRegex = regexp.MustCompile(`(?i)^set (?P<key>\S+) (?P<value>.*)$`)
var pushConfigRegex = regexp.MustCompile(`(?i)^push (?P<key>\S+) (?P<value>.*)$`)
var setKeyConfigRegex = regexp.MustCompile(`(?i)^setkey (?P<key>\S+) (?P<name>\S+) (?P<value>.*)$`)
var getConfigRegex = regexp.MustCompile(`(?i)^get (?P<key>\S+)$`)
func (p *AdminPlugin) isAdmin(rh bot.ResponseHandler) bot.ResponseHandler {
return func(r bot.Request) bool {
if !p.bot.CheckAdmin(r.Msg.User.Name) {
log.Debug().Msgf("User %s is not an admin", r.Msg.User.Name)
return false
}
return rh(r)
}
}
func (p *AdminPlugin) shutupCmd(r bot.Request) bool {
dur := time.Duration(p.cfg.GetInt("quietDuration", 5)) * time.Minute
log.Info().Msgf("Going to sleep for %v, %v", dur, time.Now().Add(dur))
leaveMsg := p.bot.Config().Get("admin.shutup", "Okay. I'll be back later.")
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, leaveMsg)
p.quiet = true
p.bot.SetQuiet(true)
go func() {
select {
case <-time.After(dur):
p.quiet = false
p.bot.SetQuiet(false)
log.Info().Msg("Waking up from nap.")
backMsg := p.bot.Config().Get("admin.backmsg", "I'm back, bitches.")
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, backMsg)
}
}()
return true
}
func (p *AdminPlugin) comeBackCmd(r bot.Request) bool {
p.quiet = false
p.bot.SetQuiet(false)
backMsg := p.bot.Config().Get("admin.comeback", "Okay, I'm back.")
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, backMsg)
return true
}
func (p *AdminPlugin) addBlacklistCmd(r bot.Request) bool {
plugin := r.Values["plugin"]
if err := p.addBlacklist(r.Msg.Channel, plugin); err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("I couldn't add that item: %s", err))
log.Error().Err(err).Msgf("error adding blacklist item")
return true
}
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("%s disabled. Use `!enable plugin %s` to re-enable it.", plugin, plugin))
return true
}
func (p *AdminPlugin) rmBlacklistCmd(r bot.Request) bool {
plugin := r.Values["plugin"]
if err := p.rmBlacklist(r.Msg.Channel, plugin); err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("I couldn't remove that item: %s", err))
log.Error().Err(err).Msgf("error removing blacklist item")
return true
}
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("%s enabled. Use `!disable plugin %s` to disable it.", plugin, plugin))
return true
}
func (p *AdminPlugin) addWhitelistCmd(r bot.Request) bool {
plugin := r.Values["plugin"]
if err := p.addWhitelist(plugin); err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("I couldn't whitelist that item: %s", err))
log.Error().Err(err).Msgf("error adding whitelist item")
return true
}
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("%s enabled. Use `!unwhitelist plugin %s` to disable it.", plugin, plugin))
return true
}
func (p *AdminPlugin) rmWhitelistCmd(r bot.Request) bool {
plugin := r.Values["plugin"]
if err := p.rmWhitelist(plugin); err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("I couldn't unwhitelist that item: %s", err))
log.Error().Err(err).Msgf("error removing whitelist item")
return true
}
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("%s disabled. Use `!whitelist plugin %s` to enable it.", plugin, plugin))
return true
}
func (p *AdminPlugin) allWhitelistCmd(r bot.Request) bool {
plugins := p.bot.GetPluginNames()
for _, plugin := range plugins {
if err := p.addWhitelist(plugin); err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("I couldn't whitelist that item: %s", err))
log.Error().Err(err).Msgf("error adding whitelist item")
return true
}
}
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "Enabled all plugins")
return true
}
func (p *AdminPlugin) allUnWhitelistCmd(r bot.Request) bool {
plugins := p.bot.GetPluginNames()
for _, plugin := range plugins {
if plugin == "admin" {
continue
}
if err := p.rmWhitelist(plugin); err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("I couldn't unwhitelist that item: %s", err))
log.Error().Err(err).Msgf("error removing whitelist item")
return true
}
}
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "Disabled all plugins")
return true
}
func (p *AdminPlugin) getWhitelistCmd(r bot.Request) bool {
list := p.bot.GetWhitelist()
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("Whitelist: %v", list))
return true
}
func (p *AdminPlugin) getPluginsCmd(r bot.Request) bool {
plugins := p.bot.GetPluginNames()
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("Plugins: %v", plugins))
return true
}
func (p *AdminPlugin) rebootCmd(r bot.Request) bool {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "brb")
log.Info().Msgf("Got reboot command")
os.Exit(0)
return true
}
func (p *AdminPlugin) passwordCmd(r bot.Request) bool {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, p.bot.GetPassword())
return true
}
func (p *AdminPlugin) variableSetCmd(r bot.Request) bool {
key := strings.ToLower(r.Values["var"])
value := r.Values["value"]
variable := bot.Variable{key, value}
count, err := p.store.Count(bot.Variable{}, bh.Where("value").Eq(value))
if err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "I'm broke and need attention in my variable creation code.")
log.Error().Err(err)
return true
}
if count > 0 {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "I've already got that one.")
} else {
err := p.store.Insert(bh.NextSequence(), variable)
if err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "I'm broke and need attention in my variable creation code.")
log.Error().Err(err)
return true
}
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "Added.")
}
return true
}
func (p *AdminPlugin) variableUnSetCmd(r bot.Request) bool {
variable := strings.ToLower(r.Values["var"])
value := r.Values["value"]
err := p.store.Delete(variable, bot.Variable{})
p.store.DeleteMatching(bot.Variable{}, bh.Where("name").Eq(variable).And("value").Eq(value))
if err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "I'm broke and need attention in my variable creation code.")
log.Error().Err(err)
} else {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "Removed.")
}
return true
}
func (p *AdminPlugin) unsetConfigCmd(r bot.Request) bool {
key := r.Values["key"]
if forbiddenKeys[key] {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "You cannot access that key")
return true
}
if err := p.cfg.Unset(key); err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("Unset error: %s", err))
return true
}
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("Unset %s", key))
return true
}
func (p *AdminPlugin) setConfigCmd(r bot.Request) bool {
key, value := r.Values["key"], r.Values["value"]
if forbiddenKeys[key] {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "You cannot access that key")
return true
}
if err := p.cfg.Set(key, value); err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("Set error: %s", err))
return true
}
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("Set %s", key))
return true
}
func (p *AdminPlugin) pushConfigCmd(r bot.Request) bool {
key, value := r.Values["key"], r.Values["value"]
if forbiddenKeys[key] {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "You cannot access that key")
return true
}
items := p.cfg.GetArray(key, []string{})
items = append(items, value)
if err := p.cfg.Set(key, strings.Join(items, ";;")); err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("Set error: %s", err))
return true
}
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("Set %s", key))
return true
}
func (p *AdminPlugin) setKeyConfigCmd(r bot.Request) bool {
key, name, value := r.Values["key"], r.Values["name"], r.Values["value"]
if forbiddenKeys[key] {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "You cannot access that key")
return true
}
items := p.cfg.GetMap(key, map[string]string{})
items[name] = value
if err := p.cfg.SetMap(key, items); err != nil {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("Set error: %s", err))
return true
}
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("Set %s", key))
return true
}
func (p *AdminPlugin) getConfigCmd(r bot.Request) bool {
key := r.Values["key"]
if forbiddenKeys[key] {
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, "You cannot access that key")
return true
}
v := p.cfg.Get(key, "<unknown>")
p.bot.Send(r.Conn, bot.Message, r.Msg.Channel, fmt.Sprintf("%s: %s", key, v))
return true
}
// Help responds to help requests. Every plugin must implement a help function.
func (p *AdminPlugin) help(conn bot.Connector, kind bot.Kind, m msg.Message, args ...interface{}) bool {
p.bot.Send(conn, bot.Message, m.Channel, "This does super secret things that you're not allowed to know about.")
return true
}
func (p *AdminPlugin) addWhitelist(plugin string) error {
defer p.bot.RefreshPluginWhitelist()
return p.store.Upsert(plugin, bot.WhitelistItem{plugin})
}
func (p *AdminPlugin) rmWhitelist(plugin string) error {
if plugin == "admin" {
return fmt.Errorf("you cannot disable the admin plugin")
}
defer p.bot.RefreshPluginWhitelist()
return p.store.Delete(plugin, bot.WhitelistItem{})
}
func (p *AdminPlugin) addBlacklist(channel, plugin string) error {
if plugin == "admin" {
return fmt.Errorf("you cannot disable the admin plugin")
}
defer p.bot.RefreshPluginBlacklist()
return p.store.Upsert(channel+plugin, bot.BlacklistItem{
Channel: channel,
Name: plugin,
})
}
func (p *AdminPlugin) rmBlacklist(channel, plugin string) error {
defer p.bot.RefreshPluginBlacklist()
return p.store.Delete(channel+plugin, bot.BlacklistItem{
Channel: channel,
Name: plugin,
})
}