mirror of https://github.com/velour/catbase.git
Add config values for your
This commit is contained in:
parent
762ec13780
commit
a829c94349
|
@ -52,6 +52,11 @@ type Config struct {
|
||||||
Nicks []string
|
Nicks []string
|
||||||
Hosts []string
|
Hosts []string
|
||||||
}
|
}
|
||||||
|
Your struct {
|
||||||
|
YourChance float64
|
||||||
|
FuckingChance float64
|
||||||
|
MaxLength int
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Readconfig loads the config data out of a JSON file located in cfile
|
// Readconfig loads the config data out of a JSON file located in cfile
|
||||||
|
|
|
@ -47,5 +47,10 @@
|
||||||
"Msgs": [],
|
"Msgs": [],
|
||||||
"Nicks": [],
|
"Nicks": [],
|
||||||
"Hosts": []
|
"Hosts": []
|
||||||
|
},
|
||||||
|
"Your": {
|
||||||
|
"YourChance": 0.4,
|
||||||
|
"FuckingChance": 0.15,
|
||||||
|
"MaxLength": 140
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,14 +12,14 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type YourPlugin struct {
|
type YourPlugin struct {
|
||||||
Bot *bot.Bot
|
bot *bot.Bot
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewYourPlugin creates a new YourPlugin with the Plugin interface
|
// NewYourPlugin creates a new YourPlugin with the Plugin interface
|
||||||
func NewYourPlugin(bot *bot.Bot) *YourPlugin {
|
func NewYourPlugin(bot *bot.Bot) *YourPlugin {
|
||||||
rand.Seed(time.Now().Unix())
|
rand.Seed(time.Now().Unix())
|
||||||
return &YourPlugin{
|
return &YourPlugin{
|
||||||
Bot: bot,
|
bot: bot,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,22 +28,27 @@ func NewYourPlugin(bot *bot.Bot) *YourPlugin {
|
||||||
// Otherwise, the function returns false and the bot continues execution of other plugins.
|
// Otherwise, the function returns false and the bot continues execution of other plugins.
|
||||||
func (p *YourPlugin) Message(message bot.Message) bool {
|
func (p *YourPlugin) Message(message bot.Message) bool {
|
||||||
lower := strings.ToLower(message.Body)
|
lower := strings.ToLower(message.Body)
|
||||||
|
config := p.bot.Config.Your
|
||||||
|
if len(message.Body) > config.MaxLength {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
if strings.Contains(message.Body, "the fucking") { // let's not mess with case
|
if strings.Contains(message.Body, "the fucking") { // let's not mess with case
|
||||||
log.Println("Found a fucking")
|
log.Println("Found a fucking")
|
||||||
if rand.Float64() < 0.2 {
|
if rand.Float64() < config.FuckingChance {
|
||||||
log.Println("Replacing a fucking")
|
log.Println("Replacing a fucking")
|
||||||
r := strings.NewReplacer("the fucking", "fucking the")
|
r := strings.NewReplacer("the fucking", "fucking the")
|
||||||
msg := r.Replace(message.Body)
|
msg := r.Replace(message.Body)
|
||||||
p.Bot.SendMessage(message.Channel, msg)
|
p.bot.SendMessage(message.Channel, msg)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if strings.Contains(lower, "your") || strings.Contains(lower, "you're") {
|
if strings.Contains(lower, "your") || strings.Contains(lower, "you're") {
|
||||||
if rand.Float64() < 0.15 {
|
if rand.Float64() < config.YourChance {
|
||||||
r := strings.NewReplacer("Your", "You're", "your", "you're", "You're",
|
r := strings.NewReplacer("Your", "You're", "your", "you're", "You're",
|
||||||
"Your", "you're", "your", "Youre", "Your", "youre", "your")
|
"Your", "you're", "your", "Youre", "Your", "youre", "your")
|
||||||
msg := r.Replace(message.Body)
|
msg := r.Replace(message.Body)
|
||||||
p.Bot.SendMessage(message.Channel, msg)
|
p.bot.SendMessage(message.Channel, msg)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -52,7 +57,7 @@ func (p *YourPlugin) Message(message bot.Message) bool {
|
||||||
|
|
||||||
// Help responds to help requests. Every plugin must implement a help function.
|
// Help responds to help requests. Every plugin must implement a help function.
|
||||||
func (p *YourPlugin) Help(channel string, parts []string) {
|
func (p *YourPlugin) Help(channel string, parts []string) {
|
||||||
p.Bot.SendMessage(channel, "Your corrects people's grammar.")
|
p.bot.SendMessage(channel, "Your corrects people's grammar.")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Empty event handler because this plugin does not do anything on event recv
|
// Empty event handler because this plugin does not do anything on event recv
|
||||||
|
|
Loading…
Reference in New Issue