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 (
|
|
|
|
"math/rand"
|
2021-03-23 17:40:18 +00:00
|
|
|
"regexp"
|
2013-03-18 21:21:37 +00:00
|
|
|
"strings"
|
|
|
|
|
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"
|
2017-03-13 17:44:44 +00:00
|
|
|
"github.com/velour/catbase/config"
|
2013-03-18 21:21:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type YourPlugin struct {
|
2018-05-02 11:02:04 +00:00
|
|
|
bot bot.Bot
|
2017-03-13 17:44:44 +00:00
|
|
|
config *config.Config
|
2013-03-18 21:21:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewYourPlugin creates a new YourPlugin with the Plugin interface
|
2019-02-05 19:41:38 +00:00
|
|
|
func New(b bot.Bot) *YourPlugin {
|
|
|
|
yp := &YourPlugin{
|
|
|
|
bot: b,
|
|
|
|
config: b.Config(),
|
2013-03-18 21:21:37 +00:00
|
|
|
}
|
2021-03-23 17:40:18 +00:00
|
|
|
b.RegisterRegex(yp, bot.Message, regexp.MustCompile(`.*`), yp.message)
|
2019-02-05 19:41:38 +00:00
|
|
|
b.Register(yp, bot.Help, yp.help)
|
|
|
|
return yp
|
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.
|
2021-03-23 17:40:18 +00:00
|
|
|
func (p *YourPlugin) message(r bot.Request) bool {
|
|
|
|
message := r.Msg
|
2019-01-22 00:16:57 +00:00
|
|
|
maxLen := p.config.GetInt("your.maxlength", 140)
|
2019-01-21 19:24:03 +00:00
|
|
|
if len(message.Body) > maxLen {
|
2016-03-24 17:49:44 +00:00
|
|
|
return false
|
|
|
|
}
|
2017-03-13 17:44:44 +00:00
|
|
|
msg := message.Body
|
2019-01-22 00:16:57 +00:00
|
|
|
for _, replacement := range p.config.GetArray("Your.Replacements", []string{}) {
|
|
|
|
freq := p.config.GetFloat64("your.replacements."+replacement+".freq", 0.0)
|
|
|
|
this := p.config.Get("your.replacements."+replacement+".this", "")
|
|
|
|
that := p.config.Get("your.replacements."+replacement+".that", "")
|
2019-01-20 20:21:26 +00:00
|
|
|
if rand.Float64() < freq {
|
|
|
|
r := strings.NewReplacer(this, that)
|
2017-03-13 17:44:44 +00:00
|
|
|
msg = r.Replace(msg)
|
2017-03-13 16:41:17 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-13 17:44:44 +00:00
|
|
|
if msg != message.Body {
|
2021-03-23 17:40:18 +00:00
|
|
|
p.bot.Send(r.Conn, bot.Message, message.Channel, msg)
|
2017-03-13 17:44:44 +00:00
|
|
|
return true
|
2017-03-13 16:41:17 +00:00
|
|
|
}
|
2013-03-18 21:21:37 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Help responds to help requests. Every plugin must implement a help function.
|
2022-03-22 01:32:44 +00:00
|
|
|
func (p *YourPlugin) help(c bot.Connector, kind bot.Kind, message msg.Message, args ...any) bool {
|
2019-05-27 23:21:53 +00:00
|
|
|
p.bot.Send(c, bot.Message, message.Channel, "Your corrects people's grammar.")
|
2019-02-05 19:41:38 +00:00
|
|
|
return true
|
2013-05-08 00:08:18 +00:00
|
|
|
}
|