2012-08-26 19:15:04 +00:00
package plugins
import (
"bitbucket.org/phlyingpenguin/godeepintir/bot"
"fmt"
"labix.org/v2/mgo"
"labix.org/v2/mgo/bson"
"math/rand"
"regexp"
"strings"
"time"
)
2012-08-29 16:50:52 +00:00
// The factoid plugin provides a learning system to the bot so that it can
// respond to queries in a way that is unpredictable and fun
2012-08-26 19:15:04 +00:00
// factoid stores info about our factoid for lookup and later interaction
2012-08-27 15:34:21 +00:00
type Factoid struct {
2012-08-29 21:06:15 +00:00
Id bson . ObjectId ` bson:"_id" `
Idx int
2012-08-27 15:34:21 +00:00
Trigger string
Operator string
FullText string
Action string
CreatedBy string
DateCreated time . Time
LastAccessed time . Time
2012-08-29 21:06:15 +00:00
Updated time . Time
2012-08-27 15:34:21 +00:00
AccessCount int
2012-08-26 19:15:04 +00:00
}
2012-08-29 16:50:52 +00:00
// FactoidPlugin provides the necessary plugin-wide needs
2012-08-26 19:15:04 +00:00
type FactoidPlugin struct {
2012-08-26 20:15:50 +00:00
Bot * bot . Bot
Coll * mgo . Collection
NotFound [ ] string
2012-08-29 16:50:52 +00:00
LastFact * Factoid
2012-08-26 19:15:04 +00:00
}
// NewFactoidPlugin creates a new FactoidPlugin with the Plugin interface
func NewFactoidPlugin ( bot * bot . Bot ) * FactoidPlugin {
p := & FactoidPlugin {
Bot : bot ,
Coll : nil ,
2012-08-26 20:15:50 +00:00
NotFound : [ ] string {
"I don't know." ,
"NONONONO" ,
"((" ,
"*pukes*" ,
"NOPE! NOPE! NOPE!" ,
"One time, I learned how to jump rope." ,
} ,
2012-08-26 19:15:04 +00:00
}
p . LoadData ( )
2012-08-27 15:34:21 +00:00
for _ , channel := range bot . Config . Channels {
go p . factTimer ( channel )
}
2012-08-26 19:15:04 +00:00
return p
}
2012-08-29 16:50:52 +00:00
// findAction simply regexes a string for the action verb
func findAction ( message string ) string {
2012-11-11 16:08:37 +00:00
r , err := regexp . Compile ( "<.+?>" )
2012-08-26 19:15:04 +00:00
if err != nil {
panic ( err )
}
action := r . FindString ( message )
return action
}
2012-08-29 16:50:52 +00:00
// learnFact assumes we have a learning situation and inserts a new fact
// into the database
2012-08-26 20:15:50 +00:00
func ( p * FactoidPlugin ) learnFact ( message bot . Message , trigger , operator , fact string ) bool {
2012-08-26 19:15:04 +00:00
// if it's an action, we only want the fact part of it in the fulltext
full := fact
if operator != "action" && operator != "reply" {
full = fmt . Sprintf ( "%s %s %s" , trigger , operator , fact )
}
2012-08-26 19:52:38 +00:00
trigger = strings . ToLower ( trigger )
2012-08-26 20:15:50 +00:00
2012-08-29 21:06:15 +00:00
q := p . Coll . Find ( bson . M { "trigger" : trigger , "operator" : operator , "fulltext" : full } )
2012-08-26 20:15:50 +00:00
if n , _ := q . Count ( ) ; n != 0 {
return false
}
2012-08-27 15:34:21 +00:00
var funcres bson . M
err := p . Bot . Db . Run ( bson . M { "eval" : "return counter(\"factoid\");" } , & funcres )
if err != nil {
panic ( err )
}
id := int ( funcres [ "retval" ] . ( float64 ) )
newfact := Factoid {
2012-08-29 21:06:15 +00:00
Id : bson . NewObjectId ( ) ,
Idx : id ,
2012-08-26 19:15:04 +00:00
Trigger : trigger ,
Operator : operator ,
FullText : full ,
2012-08-27 15:34:21 +00:00
Action : fact ,
2012-08-26 19:15:04 +00:00
CreatedBy : message . User . Name ,
}
p . Coll . Insert ( newfact )
2012-08-29 21:06:15 +00:00
p . LastFact = & newfact
2012-08-26 20:15:50 +00:00
return true
2012-08-26 19:15:04 +00:00
}
2012-08-29 16:50:52 +00:00
// findTrigger checks to see if a given string is a trigger or not
2012-08-27 15:34:21 +00:00
func ( p * FactoidPlugin ) findTrigger ( message string ) ( bool , * Factoid ) {
var results [ ] Factoid
2012-08-26 19:21:21 +00:00
iter := p . Coll . Find ( bson . M { "trigger" : strings . ToLower ( message ) } ) . Iter ( )
2012-08-26 19:15:04 +00:00
err := iter . All ( & results )
if err != nil {
panic ( err )
}
nfacts := len ( results )
if nfacts == 0 {
2012-08-26 20:15:50 +00:00
return false , nil
2012-08-26 19:15:04 +00:00
}
fact := results [ rand . Intn ( nfacts ) ]
2012-08-26 20:15:50 +00:00
return true , & fact
}
2012-08-29 16:50:52 +00:00
// sayFact spits out a fact to the channel and updates the fact in the database
// with new time and count information
2012-08-27 15:34:21 +00:00
func ( p * FactoidPlugin ) sayFact ( message bot . Message , fact Factoid ) {
msg := p . Bot . Filter ( message , fact . FullText )
for i , m := 0 , strings . Split ( msg , "$and" ) ; i < len ( m ) && i < 4 ; i ++ {
msg := strings . TrimSpace ( m [ i ] )
if len ( msg ) == 0 {
continue
}
if fact . Operator == "action" {
p . Bot . SendAction ( message . Channel , msg )
} else {
p . Bot . SendMessage ( message . Channel , msg )
}
}
2012-08-29 14:24:34 +00:00
// update fact tracking
fact . LastAccessed = time . Now ( )
fact . AccessCount += 1
err := p . Coll . UpdateId ( fact . Id , fact )
if err != nil {
fmt . Printf ( "Could not update fact.\n" )
fmt . Printf ( "%#v\n" , fact )
}
2012-08-29 16:50:52 +00:00
p . LastFact = & fact
2012-08-27 15:34:21 +00:00
}
2012-08-29 16:50:52 +00:00
// trigger checks the message for its fitness to be a factoid and then hauls
// the message off to sayFact for processing if it is in fact a trigger
2012-08-26 20:15:50 +00:00
func ( p * FactoidPlugin ) trigger ( message bot . Message ) bool {
2012-08-27 15:34:21 +00:00
if len ( message . Body ) > 4 || message . Command || message . Body == "..." {
2012-08-26 20:15:50 +00:00
if ok , fact := p . findTrigger ( message . Body ) ; ok {
2012-08-27 15:34:21 +00:00
p . sayFact ( message , * fact )
2012-08-26 20:15:50 +00:00
return true
}
2012-12-30 16:26:26 +00:00
r := strings . NewReplacer ( "'" , "" , "\"" , "" , "," , "" , "." , "" , ":" , "" ,
"?" , "" )
2012-11-11 16:14:40 +00:00
if ok , fact := p . findTrigger ( r . Replace ( message . Body ) ) ; ok {
p . sayFact ( message , * fact )
return true
}
2012-08-26 20:15:50 +00:00
}
return false
2012-08-26 19:15:04 +00:00
}
2012-08-29 16:50:52 +00:00
// tellThemWhatThatWas is a hilarious name for a function.
func ( p * FactoidPlugin ) tellThemWhatThatWas ( message bot . Message ) bool {
2012-08-29 21:06:15 +00:00
fact := p . LastFact
var msg string
if fact == nil {
msg = "Nope."
} else {
msg = fmt . Sprintf ( "That was (#%d) '%s <%s> %s'" ,
fact . Idx , fact . Trigger , fact . Operator , fact . Action )
}
p . Bot . SendMessage ( message . Channel , msg )
return true
2012-08-29 16:50:52 +00:00
}
2012-08-29 21:06:15 +00:00
func ( p * FactoidPlugin ) learnAction ( message bot . Message , action string ) bool {
2012-08-29 16:50:52 +00:00
body := message . Body
parts := strings . SplitN ( body , action , 2 )
// This could fail if is were the last word or it weren't in the sentence (like no spaces)
if len ( parts ) != 2 {
return false
2012-08-27 15:34:21 +00:00
}
2012-08-29 16:50:52 +00:00
trigger := strings . TrimSpace ( parts [ 0 ] )
fact := strings . TrimSpace ( parts [ 1 ] )
action = strings . TrimSpace ( action )
if len ( trigger ) == 0 || len ( fact ) == 0 || len ( action ) == 0 {
p . Bot . SendMessage ( message . Channel , "I don't want to learn that." )
return true
2012-08-26 19:15:04 +00:00
}
2012-08-29 16:50:52 +00:00
if len ( strings . Split ( fact , "$and" ) ) > 4 {
p . Bot . SendMessage ( message . Channel , "You can't use more than 4 $and operators." )
return true
}
2012-08-26 19:15:04 +00:00
2012-08-29 16:50:52 +00:00
strippedaction := strings . Replace ( strings . Replace ( action , "<" , "" , 1 ) , ">" , "" , 1 )
2012-08-26 19:15:04 +00:00
2012-08-29 16:50:52 +00:00
if p . learnFact ( message , trigger , strippedaction , fact ) {
p . Bot . SendMessage ( message . Channel , fmt . Sprintf ( "Okay, %s." , message . User . Name ) )
} else {
p . Bot . SendMessage ( message . Channel , "I already know that." )
}
2012-08-26 20:35:13 +00:00
2012-08-29 16:50:52 +00:00
return true
}
2012-08-26 19:40:57 +00:00
2012-08-29 16:50:52 +00:00
// Checks body for the ~= operator
func changeOperator ( body string ) bool {
2012-08-29 21:06:15 +00:00
return strings . Contains ( body , "=~" )
2012-08-29 16:50:52 +00:00
}
2012-08-26 19:15:04 +00:00
2012-08-29 16:50:52 +00:00
// If the user requesting forget is either the owner of the last learned fact or
// an admin, it may be deleted
func ( p * FactoidPlugin ) forgetLastFact ( message bot . Message ) bool {
if p . LastFact == nil {
2012-08-29 21:06:15 +00:00
p . Bot . SendMessage ( message . Channel , "I refuse." )
2012-08-29 16:50:52 +00:00
return true
}
if message . User . Admin || message . User . Name == p . LastFact . CreatedBy {
err := p . Coll . Remove ( bson . M { "_id" : p . LastFact . Id } )
if err != nil {
panic ( err )
2012-08-26 20:15:50 +00:00
}
2012-08-29 21:06:15 +00:00
fmt . Printf ( "Forgot #%d: %s %s %s\n" , p . LastFact . Idx , p . LastFact . Trigger ,
p . LastFact . Operator , p . LastFact . Action )
p . Bot . SendAction ( message . Channel , "hits himself over the head with a skillet" )
2012-08-29 16:50:52 +00:00
p . LastFact = nil
} else {
p . Bot . SendMessage ( message . Channel , "You don't own that fact." )
}
2012-08-26 19:15:04 +00:00
2012-08-29 16:50:52 +00:00
return true
}
// Allow users to change facts with a simple regexp
func ( p * FactoidPlugin ) changeFact ( message bot . Message ) bool {
2012-08-29 21:06:15 +00:00
parts := strings . SplitN ( message . Body , "=~" , 2 )
userexp := strings . TrimSpace ( parts [ 1 ] )
trigger := strings . TrimSpace ( parts [ 0 ] )
parts = strings . Split ( userexp , "/" )
if len ( parts ) == 4 {
// replacement
if parts [ 0 ] != "s" {
p . Bot . SendMessage ( message . Channel , "Nah." )
}
find := parts [ 1 ]
replace := parts [ 2 ]
// replacement
var result [ ] Factoid
iter := p . Coll . Find ( bson . M { "trigger" : trigger } )
if message . User . Admin && userexp [ len ( userexp ) - 1 ] == 'g' {
iter . All ( & result )
} else {
result = make ( [ ] Factoid , 1 )
iter . One ( & result [ 0 ] )
2012-08-29 21:17:30 +00:00
if result [ 0 ] . CreatedBy != message . User . Name && ! message . User . Admin {
p . Bot . SendMessage ( message . Channel , "That's not your fact to edit." )
return true
}
2012-08-29 21:06:15 +00:00
}
// make the changes
msg := fmt . Sprintf ( "Changing %d facts." , len ( result ) )
p . Bot . SendMessage ( message . Channel , msg )
reg , err := regexp . Compile ( find )
if err != nil {
p . Bot . SendMessage ( message . Channel , "I don't really want to." )
return false
}
for _ , fact := range result {
fact . FullText = reg . ReplaceAllString ( fact . FullText , replace )
fact . Trigger = reg . ReplaceAllString ( fact . Trigger , replace )
fact . Trigger = strings . ToLower ( fact . Trigger )
fact . Operator = reg . ReplaceAllString ( fact . Operator , replace )
fact . Action = reg . ReplaceAllString ( fact . Action , replace )
fact . AccessCount += 1
fact . LastAccessed = time . Now ( )
fact . Updated = time . Now ( )
p . Coll . UpdateId ( fact . Id , fact )
}
} else if len ( parts ) == 3 {
// search for a factoid and print it
var result [ ] Factoid
iter := p . Coll . Find ( bson . M { "trigger" : trigger ,
"fulltext" : bson . M { "$regex" : parts [ 1 ] } } )
count , _ := iter . Count ( )
if parts [ 2 ] == "g" {
// summarize
iter . Limit ( 4 ) . All ( & result )
} else {
result = make ( [ ] Factoid , 1 )
iter . One ( & result [ 0 ] )
p . sayFact ( message , result [ 0 ] )
return true
}
msg := fmt . Sprintf ( "%s " , trigger )
for i , fact := range result {
if i != 0 {
msg = fmt . Sprintf ( "%s |" , msg )
}
2012-08-29 21:35:44 +00:00
msg = fmt . Sprintf ( "%s <%s> %s" , msg , fact . Operator , fact . Action )
2012-08-29 21:06:15 +00:00
}
if count > 4 {
msg = fmt . Sprintf ( "%s | ...and %d others" , msg , count )
}
p . Bot . SendMessage ( message . Channel , msg )
} else {
p . Bot . SendMessage ( message . Channel , "I don't know what you mean." )
}
2012-08-29 16:50:52 +00:00
return true
}
// 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 * FactoidPlugin ) Message ( message bot . Message ) bool {
if strings . ToLower ( message . Body ) == "what was that?" {
return p . tellThemWhatThatWas ( message )
}
// This plugin has no business with normal messages
if ! message . Command {
// look for any triggers in the db matching this message
return p . trigger ( message )
}
if message . Body == "forget that" {
return p . forgetLastFact ( message )
}
if changeOperator ( message . Body ) {
return p . changeFact ( message )
}
action := findAction ( message . Body )
if action != "" {
return p . learnAction ( message , action )
2012-08-26 19:15:04 +00:00
}
// look for any triggers in the db matching this message
2012-08-26 20:15:50 +00:00
if p . trigger ( message ) {
2012-08-26 19:15:04 +00:00
return true
}
2012-08-29 16:50:52 +00:00
// We didn't find anything, panic!
2012-08-26 20:15:50 +00:00
p . Bot . SendMessage ( message . Channel , p . NotFound [ rand . Intn ( len ( p . NotFound ) ) ] )
2012-08-26 19:15:04 +00:00
return true
}
// 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 * FactoidPlugin ) LoadData ( ) {
p . Coll = p . Bot . Db . C ( "factoid" )
rand . Seed ( time . Now ( ) . Unix ( ) )
}
// Help responds to help requests. Every plugin must implement a help function.
func ( p * FactoidPlugin ) Help ( channel string , parts [ ] string ) {
2012-08-26 19:29:34 +00:00
p . Bot . SendMessage ( channel , "I can learn facts and spit them back out. You can say \"this is that\" or \"he <has> $5\". Later, trigger the factoid by just saying the trigger word, \"this\" or \"he\" in these examples." )
p . Bot . SendMessage ( channel , "I can also figure out some variables including: $nonzero, $digit, $nick, and $someone." )
2012-08-26 19:15:04 +00:00
}
// Empty event handler because this plugin does not do anything on event recv
func ( p * FactoidPlugin ) Event ( kind string , message bot . Message ) bool {
return false
}
2012-08-27 15:34:21 +00:00
2012-08-29 16:50:52 +00:00
// Pull a fact at random from the database
2012-08-27 15:34:21 +00:00
func ( p * FactoidPlugin ) randomFact ( ) * Factoid {
var results [ ] Factoid
iter := p . Coll . Find ( bson . M { } ) . Iter ( )
err := iter . All ( & results )
if err != nil {
panic ( err )
}
nfacts := len ( results )
if nfacts == 0 {
return nil
}
fact := results [ rand . Intn ( nfacts ) ]
return & fact
}
2012-08-29 16:50:52 +00:00
// factTimer spits out a fact at a given interval and with given probability
2012-08-27 15:34:21 +00:00
func ( p * FactoidPlugin ) factTimer ( channel string ) {
2012-10-11 20:28:00 +00:00
duration := time . Duration ( p . Bot . Config . QuoteTime ) * time . Minute
myLastMsg := time . Now ( )
2012-08-27 15:34:21 +00:00
for {
2012-10-11 20:28:00 +00:00
time . Sleep ( time . Duration ( 5 ) * time . Second )
lastmsg , err := p . Bot . LastMessage ( )
if err != nil {
continue
}
tdelta := time . Since ( lastmsg . Time )
earlier := time . Since ( myLastMsg ) > tdelta
chance := rand . Float64 ( )
success := chance < p . Bot . Config . QuoteChance
if success && tdelta > duration && earlier {
2012-08-27 15:34:21 +00:00
fact := p . randomFact ( )
if fact == nil {
continue
}
// we need to fabricate a message so that bot.Filter can operate
message := bot . Message {
User : & p . Bot . Users [ rand . Intn ( len ( p . Bot . Users ) ) ] ,
Channel : channel ,
}
p . sayFact ( message , * fact )
2012-10-11 20:28:00 +00:00
myLastMsg = time . Now ( )
2012-08-27 15:34:21 +00:00
}
}
}