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
|
|
|
|
2016-03-24 17:32:40 +00:00
|
|
|
package your
|
2013-03-18 21:21:37 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2016-01-17 18:00:44 +00:00
|
|
|
"github.com/velour/catbase/bot"
|
2016-04-01 14:20:03 +00:00
|
|
|
"github.com/velour/catbase/bot/msg"
|
2013-03-18 21:21:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type YourPlugin struct {
|
2016-03-30 14:00:20 +00:00
|
|
|
bot bot.Bot
|
2013-03-18 21:21:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewYourPlugin creates a new YourPlugin with the Plugin interface
|
2016-03-30 14:00:20 +00:00
|
|
|
func New(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{
|
2016-03-24 17:49:44 +00:00
|
|
|
bot: bot,
|
2013-03-18 21:21:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
2016-04-01 14:20:03 +00:00
|
|
|
func (p *YourPlugin) Message(message msg.Message) bool {
|
2013-03-18 21:21:37 +00:00
|
|
|
lower := strings.ToLower(message.Body)
|
2016-03-30 14:00:20 +00:00
|
|
|
config := p.bot.Config().Your
|
2016-03-24 17:49:44 +00:00
|
|
|
if len(message.Body) > config.MaxLength {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
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")
|
2016-03-24 17:49:44 +00:00
|
|
|
if rand.Float64() < config.FuckingChance {
|
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)
|
2016-08-30 19:40:55 +00:00
|
|
|
p.bot.SendMessage(message.Channel, msg)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if strings.Contains(message.Body, "ducking") || strings.Contains(message.Body, "fucking") { // let's not mess with case
|
|
|
|
log.Println("Found a fucking|ducking")
|
|
|
|
if rand.Float64() < config.DuckingChance {
|
|
|
|
log.Println("Replacing a ducking")
|
|
|
|
r := strings.NewReplacer("fucking", "ducking", "ducking", "fucking")
|
|
|
|
msg := r.Replace(message.Body)
|
2016-03-24 17:49:44 +00:00
|
|
|
p.bot.SendMessage(message.Channel, msg)
|
2013-09-14 03:27:11 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if strings.Contains(lower, "your") || strings.Contains(lower, "you're") {
|
2016-03-24 17:49:44 +00:00
|
|
|
if rand.Float64() < config.YourChance {
|
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)
|
2016-03-24 17:49:44 +00:00
|
|
|
p.bot.SendMessage(message.Channel, msg)
|
2013-03-18 21:21:37 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
2017-03-13 16:41:17 +00:00
|
|
|
if strings.Contains(message.Body, " is ") {
|
|
|
|
log.Println("Found an is")
|
|
|
|
if rand.Float64() < config.NegativeChance {
|
|
|
|
log.Println("Replacing an is")
|
|
|
|
r := strings.NewReplacer(" is ", " is not ")
|
|
|
|
msg := r.Replace(message.Body)
|
|
|
|
p.bot.SendMessage(message.Channel, msg)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if strings.Contains(message.Body, " are ") {
|
|
|
|
log.Println("Found an are")
|
|
|
|
if rand.Float64() < config.NegativeChance {
|
|
|
|
log.Println("Replacing an are")
|
|
|
|
r := strings.NewReplacer(" are ", " are not ")
|
|
|
|
msg := r.Replace(message.Body)
|
|
|
|
p.bot.SendMessage(message.Channel, msg)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
2013-03-18 21:21:37 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Help responds to help requests. Every plugin must implement a help function.
|
|
|
|
func (p *YourPlugin) Help(channel string, parts []string) {
|
2016-03-24 17:49:44 +00:00
|
|
|
p.bot.SendMessage(channel, "Your corrects people's grammar.")
|
2013-03-18 21:21:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Empty event handler because this plugin does not do anything on event recv
|
2016-04-01 14:20:03 +00:00
|
|
|
func (p *YourPlugin) Event(kind string, message msg.Message) bool {
|
2013-03-18 21:21:37 +00:00
|
|
|
return false
|
|
|
|
}
|
2013-05-08 00:08:18 +00:00
|
|
|
|
|
|
|
// Handler for bot's own messages
|
2016-04-01 14:20:03 +00:00
|
|
|
func (p *YourPlugin) BotMessage(message msg.Message) bool {
|
2013-05-08 00:08:18 +00:00
|
|
|
return false
|
|
|
|
}
|
2013-06-01 17:10:15 +00:00
|
|
|
|
|
|
|
// Register any web URLs desired
|
|
|
|
func (p *YourPlugin) RegisterWeb() *string {
|
|
|
|
return nil
|
|
|
|
}
|