2013-12-10 23:37:07 +00:00
|
|
|
// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors.
|
|
|
|
|
2012-08-17 22:09:29 +00:00
|
|
|
package plugins
|
|
|
|
|
|
|
|
import (
|
2012-08-25 04:46:13 +00:00
|
|
|
"fmt"
|
2012-08-25 04:54:03 +00:00
|
|
|
"math/rand"
|
2012-08-25 04:49:48 +00:00
|
|
|
"strings"
|
2012-08-25 04:54:03 +00:00
|
|
|
"time"
|
2016-01-15 14:43:31 +00:00
|
|
|
|
|
|
|
"github.com/chrissexton/alepale/bot"
|
2012-08-17 22:09:29 +00:00
|
|
|
)
|
|
|
|
|
2013-02-05 19:52:11 +00:00
|
|
|
var goatse []string = []string{
|
|
|
|
"* g o a t s e x * g o a t s e x * g o a t s e x *",
|
|
|
|
"g g",
|
|
|
|
"o / \\ \\ / \\ o",
|
|
|
|
"a| | \\ | | a",
|
|
|
|
"t| `. | | : t",
|
|
|
|
"s` | | \\| | s",
|
|
|
|
"e \\ | / / \\\\\\ --__ \\\\ : e",
|
|
|
|
"x \\ \\/ _--~~ ~--__| \\ | x",
|
|
|
|
"* \\ \\_-~ ~-_\\ | *",
|
|
|
|
"g \\_ \\ _.--------.______\\| | g",
|
2013-02-05 20:11:03 +00:00
|
|
|
"o \\ \\______// _ ___ _ \\_\\__> \\ | o",
|
|
|
|
"a \\ . C ___) ______ \\_\\____> | / a",
|
|
|
|
"t /\\ | C ____)/ \\ \\_____> |_/ t",
|
|
|
|
"s / /\\| C_____) | \\___> / \\ s",
|
|
|
|
"e | \\ _C_____)\\______/ // _/ / \\ e",
|
|
|
|
"x | \\ |__ \\\\_________// \\__/ | x",
|
2013-02-05 19:52:11 +00:00
|
|
|
"* | \\ \\____) `---- --' | *",
|
|
|
|
"g | \\_ ___\\ /_ _/ | g",
|
|
|
|
"o | / | | \\ | o",
|
|
|
|
"a | | / \\ \\ | a",
|
2013-02-05 20:11:03 +00:00
|
|
|
"t | / / |{nick}| \\ |t",
|
2013-02-05 19:52:11 +00:00
|
|
|
"s | / / \\__/\\___/ | |s",
|
|
|
|
"e | / | | | |e",
|
|
|
|
"x | | | | | |x",
|
|
|
|
"* g o a t s e x * g o a t s e x * g o a t s e x *",
|
|
|
|
}
|
|
|
|
|
2012-08-17 22:09:29 +00:00
|
|
|
type TalkerPlugin struct {
|
2016-01-15 14:43:31 +00:00
|
|
|
Bot *bot.Bot
|
|
|
|
enforceNicks bool
|
2012-08-17 22:09:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewTalkerPlugin(bot *bot.Bot) *TalkerPlugin {
|
|
|
|
return &TalkerPlugin{
|
2016-01-15 14:43:31 +00:00
|
|
|
Bot: bot,
|
|
|
|
enforceNicks: bot.Config.EnforceNicks,
|
2012-08-17 22:09:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *TalkerPlugin) Message(message bot.Message) bool {
|
|
|
|
channel := message.Channel
|
|
|
|
body := message.Body
|
2013-03-04 15:43:23 +00:00
|
|
|
lowermessage := strings.ToLower(body)
|
2012-08-17 22:09:29 +00:00
|
|
|
|
2016-01-15 14:43:31 +00:00
|
|
|
// TODO: This ought to be space split afterwards to remove any punctuation
|
2013-03-04 15:43:23 +00:00
|
|
|
if strings.HasPrefix(lowermessage, "say") {
|
|
|
|
msg := strings.TrimSpace(body[3:])
|
|
|
|
p.Bot.SendMessage(channel, msg)
|
2013-03-04 15:50:39 +00:00
|
|
|
return true
|
2013-03-04 15:43:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(lowermessage, "goatse") {
|
2013-02-05 20:11:03 +00:00
|
|
|
nick := message.User.Name
|
|
|
|
if parts := strings.Split(message.Body, " "); len(parts) > 1 {
|
|
|
|
nick = parts[1]
|
|
|
|
}
|
|
|
|
|
2013-02-05 19:52:11 +00:00
|
|
|
for _, line := range goatse {
|
2013-02-05 20:11:03 +00:00
|
|
|
nick = fmt.Sprintf("%9.9s", nick)
|
|
|
|
line = strings.Replace(line, "{nick}", nick, 1)
|
2013-02-05 19:52:11 +00:00
|
|
|
p.Bot.SendMessage(channel, line)
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2016-01-15 14:43:31 +00:00
|
|
|
if p.enforceNicks && len(message.User.Name) != 9 {
|
2012-08-25 04:58:36 +00:00
|
|
|
msg := fmt.Sprintf("Hey %s, we really like to have 9 character nicks because we're crazy OCD and stuff.",
|
|
|
|
message.User.Name)
|
|
|
|
p.Bot.SendMessage(message.Channel, msg)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2012-08-17 22:09:29 +00:00
|
|
|
if strings.Contains(lowermessage, "felps") || strings.Contains(lowermessage, "fredfelps") {
|
|
|
|
outmsg := p.Bot.Filter(message, "GOD HATES $NICK")
|
|
|
|
p.Bot.SendMessage(channel, outmsg)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *TalkerPlugin) LoadData() {
|
2012-08-25 04:54:03 +00:00
|
|
|
rand.Seed(time.Now().Unix())
|
2012-08-17 22:09:29 +00:00
|
|
|
}
|
2012-08-17 22:56:44 +00:00
|
|
|
|
|
|
|
func (p *TalkerPlugin) Help(channel string, parts []string) {
|
|
|
|
p.Bot.SendMessage(channel, "Hi, this is talker. I like to talk about FredFelps!")
|
|
|
|
}
|
2012-08-25 04:46:13 +00:00
|
|
|
|
|
|
|
// Empty event handler because this plugin does not do anything on event recv
|
2012-08-25 04:49:48 +00:00
|
|
|
func (p *TalkerPlugin) Event(kind string, message bot.Message) bool {
|
2013-01-22 21:14:04 +00:00
|
|
|
if kind == "JOIN" && strings.ToLower(message.User.Name) != strings.ToLower(p.Bot.Config.Nick) {
|
2013-01-12 16:32:42 +00:00
|
|
|
sayings := p.Bot.Config.WelcomeMsgs
|
2012-08-25 04:54:03 +00:00
|
|
|
msg := fmt.Sprintf(sayings[rand.Intn(len(sayings))], message.User.Name)
|
2012-08-25 04:46:13 +00:00
|
|
|
p.Bot.SendMessage(message.Channel, msg)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2013-05-08 00:08:18 +00:00
|
|
|
|
|
|
|
// Handler for bot's own messages
|
|
|
|
func (p *TalkerPlugin) BotMessage(message bot.Message) bool {
|
|
|
|
return false
|
|
|
|
}
|
2013-06-01 17:10:15 +00:00
|
|
|
|
|
|
|
// Register any web URLs desired
|
|
|
|
func (p *TalkerPlugin) RegisterWeb() *string {
|
|
|
|
return nil
|
|
|
|
}
|