catbase/plugins/your/your.go

78 lines
2.1 KiB
Go
Raw Normal View History

2016-01-17 18:00:44 +00:00
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
package your
2013-03-18 21:21:37 +00:00
import (
"math/rand"
"strconv"
2013-03-18 21:21:37 +00:00
"strings"
2016-01-17 18:00:44 +00:00
"github.com/velour/catbase/bot"
"github.com/velour/catbase/bot/msg"
"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
config *config.Config
2013-03-18 21:21:37 +00:00
}
// NewYourPlugin creates a new YourPlugin with the Plugin interface
func New(bot bot.Bot) *YourPlugin {
2013-03-18 21:21:37 +00:00
return &YourPlugin{
2018-05-02 11:02:04 +00:00
bot: bot,
config: bot.Config(),
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.
func (p *YourPlugin) Message(message msg.Message) bool {
maxLen := p.config.GetInt("your.maxlength")
if maxLen == 0 {
maxLen = 140
p.config.Set("your.maxlength", strconv.Itoa(maxLen))
}
if len(message.Body) > maxLen {
2016-03-24 17:49:44 +00:00
return false
}
msg := message.Body
for _, replacement := range p.config.GetArray("Your.Replacements") {
freq := p.config.GetFloat64("your.replacements." + replacement + ".freq")
this := p.config.Get("your.replacements." + replacement + ".this")
that := p.config.Get("your.replacements." + replacement + ".that")
if rand.Float64() < freq {
r := strings.NewReplacer(this, that)
msg = r.Replace(msg)
2017-03-13 16:41:17 +00:00
}
}
if msg != message.Body {
p.bot.SendMessage(message.Channel, msg)
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.
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
func (p *YourPlugin) Event(kind string, message msg.Message) bool {
2013-03-18 21:21:37 +00:00
return false
}
// Handler for bot's own messages
func (p *YourPlugin) BotMessage(message msg.Message) bool {
return false
}
2013-06-01 17:10:15 +00:00
// Register any web URLs desired
func (p *YourPlugin) RegisterWeb() *string {
return nil
}
func (p *YourPlugin) ReplyMessage(message msg.Message, identifier string) bool { return false }