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