2012-08-17 23:22:37 +00:00
|
|
|
package plugins
|
|
|
|
|
|
|
|
import "bitbucket.org/phlyingpenguin/godeepintir/bot"
|
|
|
|
|
|
|
|
// This is a skeleton plugin to serve as an example and quick copy/paste for new plugins.
|
|
|
|
|
|
|
|
type SkeletonPlugin struct {
|
|
|
|
Bot *bot.Bot
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewSkeletonPlugin creates a new SkeletonPlugin with the Plugin interface
|
|
|
|
func NewSkeletonPlugin(bot *bot.Bot) *SkeletonPlugin {
|
|
|
|
return &SkeletonPlugin{
|
|
|
|
Bot: bot,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 *SkeletonPlugin) Message(message bot.Message) bool {
|
|
|
|
// This bot does not reply to anything
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// LoadData imports any configuration data into the plugin. This is not strictly necessary other
|
|
|
|
// than the fact that the Plugin interface demands it exist. This may be deprecated at a later
|
|
|
|
// date.
|
|
|
|
func (p *SkeletonPlugin) LoadData() {
|
|
|
|
// This bot has no data to load
|
|
|
|
}
|
|
|
|
|
|
|
|
// Help responds to help requests. Every plugin must implement a help function.
|
|
|
|
func (p *SkeletonPlugin) Help(channel string, parts []string) {
|
|
|
|
p.Bot.SendMessage(channel, "Sorry, Skeleton does not do a goddamn thing.")
|
|
|
|
}
|
2012-08-25 04:46:13 +00:00
|
|
|
|
|
|
|
// Empty event handler because this plugin does not do anything on event recv
|
|
|
|
func (p *SkeletonPlugin) Event(kind string, message bot.Message) bool {
|
|
|
|
return false
|
|
|
|
}
|