catbase/plugins/admin/admin.go

115 lines
2.9 KiB
Go
Raw Normal View History

2016-01-17 18:00:44 +00:00
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
package admin
2012-08-26 23:24:31 +00:00
import (
"database/sql"
2012-08-26 23:24:31 +00:00
"fmt"
"log"
2012-08-26 23:24:31 +00:00
"math/rand"
"strings"
"time"
2016-03-19 18:02:46 +00:00
"github.com/jmoiron/sqlx"
2016-01-17 18:00:44 +00:00
"github.com/velour/catbase/bot"
"github.com/velour/catbase/bot/msg"
2012-08-26 23:24:31 +00:00
)
// This is a admin plugin to serve as an example and quick copy/paste for new plugins.
type AdminPlugin struct {
Bot bot.Bot
2016-03-19 18:02:46 +00:00
DB *sqlx.DB
2012-08-26 23:24:31 +00:00
}
// NewAdminPlugin creates a new AdminPlugin with the Plugin interface
func New(bot bot.Bot) *AdminPlugin {
2012-08-26 23:24:31 +00:00
p := &AdminPlugin{
Bot: bot,
DB: bot.DB(),
2012-08-26 23:24:31 +00:00
}
p.LoadData()
return p
}
// Message responds to the bot hook on recieving messages.
// This function returns true if the plugin responds in a meaningful way to the users message.
// Otherwise, the function returns false and the bot continues execution of other plugins.
func (p *AdminPlugin) Message(message msg.Message) bool {
2012-08-26 23:24:31 +00:00
// This bot does not reply to anything
2012-08-27 00:30:23 +00:00
2012-08-26 23:24:31 +00:00
if !message.User.Admin {
return false
}
body := message.Body
2016-01-17 15:29:14 +00:00
if len(body) == 0 {
return false
}
2012-08-26 23:24:31 +00:00
if body[0] == '$' {
return p.handleVariables(message)
}
return false
}
func (p *AdminPlugin) handleVariables(message msg.Message) bool {
2012-08-26 23:24:31 +00:00
parts := strings.SplitN(message.Body, "=", 2)
if len(parts) != 2 {
return false
}
variable := strings.TrimSpace(parts[0])
2014-01-17 16:49:41 +00:00
value := parts[1]
2012-08-26 23:24:31 +00:00
var count int64
var varId int64
2016-03-11 02:11:52 +00:00
err := p.DB.QueryRow(`select count(*), varId from variables vs inner join "values" v on vs.id = v.varId where vs.name = ? and v.value = ?`, variable, value).Scan(&count)
switch {
case err == sql.ErrNoRows:
2016-03-11 02:11:52 +00:00
_, err := p.DB.Exec(`insert into "values" (varId, value) values (?, ?)`, varId, value)
if err != nil {
log.Println(err)
}
msg := fmt.Sprintf("Added '%s' to %s.\n", value, variable)
p.Bot.SendMessage(message.Channel, msg)
return true
case err != nil:
p.Bot.SendMessage(message.Channel, "I'm broke and need attention in my variable creation code.")
log.Println("Admin error: ", err)
2012-08-26 23:24:31 +00:00
return true
}
p.Bot.SendMessage(message.Channel, "I've already got that one.")
2012-08-26 23:24:31 +00:00
return true
}
// LoadData imports any configuration data into the plugin. This is not strictly necessary other
// than the fact that the Plugin interface demands it exist. This may be deprecated at a later
// date.
func (p *AdminPlugin) LoadData() {
// This bot has no data to load
rand.Seed(time.Now().Unix())
}
// Help responds to help requests. Every plugin must implement a help function.
func (p *AdminPlugin) Help(channel string, parts []string) {
p.Bot.SendMessage(channel, "This does super secret things that you're not allowed to know about.")
}
// Empty event handler because this plugin does not do anything on event recv
func (p *AdminPlugin) Event(kind string, message msg.Message) bool {
2012-08-26 23:24:31 +00:00
return false
}
// Handler for bot's own messages
func (p *AdminPlugin) BotMessage(message msg.Message) bool {
return false
}
2013-06-01 17:10:15 +00:00
// Register any web URLs desired
func (p *AdminPlugin) RegisterWeb() *string {
return nil
}