catbase/plugins/your.go

72 lines
2.0 KiB
Go
Raw Normal View History

// © 2013 the AlePale Authors under the WTFPL. See AUTHORS for the list of authors.
2013-03-18 21:21:37 +00:00
package plugins
import (
2013-09-14 03:27:11 +00:00
"log"
2013-03-18 21:21:37 +00:00
"math/rand"
"strings"
2013-03-18 21:29:19 +00:00
"time"
2013-03-18 21:21:37 +00:00
"github.com/chrissexton/alepale/bot"
2013-03-18 21:21:37 +00:00
)
type YourPlugin struct {
Bot *bot.Bot
}
// NewYourPlugin creates a new YourPlugin with the Plugin interface
func NewYourPlugin(bot *bot.Bot) *YourPlugin {
2013-09-14 03:27:11 +00:00
rand.Seed(time.Now().Unix())
2013-03-18 21:21:37 +00:00
return &YourPlugin{
Bot: bot,
}
}
// 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 *YourPlugin) Message(message bot.Message) bool {
lower := strings.ToLower(message.Body)
2013-09-14 03:27:11 +00:00
if strings.Contains(message.Body, "the fucking") { // let's not mess with case
log.Println("Found a fucking")
2013-03-18 21:21:37 +00:00
if rand.Float64() < 0.2 {
2013-09-14 03:27:11 +00:00
log.Println("Replacing a fucking")
r := strings.NewReplacer("the fucking", "fucking the")
msg := r.Replace(message.Body)
p.Bot.SendMessage(message.Channel, msg)
return true
}
}
if strings.Contains(lower, "your") || strings.Contains(lower, "you're") {
if rand.Float64() < 0.15 {
2013-03-18 21:21:37 +00:00
r := strings.NewReplacer("Your", "You're", "your", "you're", "You're",
"Your", "you're", "your", "Youre", "Your", "youre", "your")
msg := r.Replace(message.Body)
p.Bot.SendMessage(message.Channel, msg)
return true
}
}
return false
}
// Help responds to help requests. Every plugin must implement a help function.
func (p *YourPlugin) Help(channel string, parts []string) {
p.Bot.SendMessage(channel, "Your corrects people's grammar.")
}
// Empty event handler because this plugin does not do anything on event recv
func (p *YourPlugin) Event(kind string, message bot.Message) bool {
return false
}
// Handler for bot's own messages
func (p *YourPlugin) BotMessage(message bot.Message) bool {
return false
}
2013-06-01 17:10:15 +00:00
// Register any web URLs desired
func (p *YourPlugin) RegisterWeb() *string {
return nil
}