Example #1
0
    def respond(context):
        f = Fact(context['author'], context['msg'], context['recipient'], context['knowers'])
        tup = f.to_list()

        db = Database()
        db.add_row(tup)
        db.close_conn()
Example #2
0
   def forget(self):
      for timer in self.idle.values():
         timer.cancel()

      self.idle = {}
      self.resumeState = {}
      State.forget()

      db = Database()
      db.drop_tables()
      db.close_conn()

      self.on_join()
Example #3
0
    def respond(context):
        subject = None

        if context['isAffirmative'] == True:
           #if it's a targeted query, get the subject of the gossip
           if context['specific'] == True:
               subject = context['subject']
        
           query = '''SELECT * FROM facts'''
           db = Database()
           temp_results = db.query(query)

           results = [] 
           #remove results where asker is knower
           for result in temp_results:
               knowers = result[3].split("; ")
               if context['_nick'] not in knowers:
                   results.append(result)
                   
           #if there is no gossip the user doesn't know
           if len(results) == 0:
               db.close_conn()
               responses = ["You already know everything I know!",

                            "I can not believe you enjoy gossip as" \
                            + " much as me, but I do not have any more gossip" \
                            + " to tell you now.",
                            "I think you should go talk to others in this room," \
                            +   " because I am all out of gossip.", 
                            "Hmmm... well, I don't really know anything right now...."]

               rand_ndx = random.randint(0, len(responses) - 1)

               return responses[rand_ndx]

           #choices for leading off gossip
           prefix = ["Did you know that ",
                     "I heard that ", 
                     "A little birdy told me that ", 
                     "Someone told me that ", 
                     "You didn't hear it from me, but I heard that ", 
                     "Don't tell anyone that "]
        
           gossip = []

           #if it's a speicifc query
           if subject != None:
               #checks if user is in the room
               if State.users != None and subject in State.users:
                   db.close_conn()
                   return "Oh, " + subject + " is just so nice... nothing to say about them!"
               else:
                   specific_results = []
                   #generate list of speciifc queries metioning the subject
                   for result in results:
                       if subject in result:
                           specific_results.append(result)
                       #check the message for occurances of the user
                       else: 
                           tokens = result[1].split(" ")
                           for token in tokens:
                               if subject.lower() == token.lower():
                                   specific_results.append(result)
                   #if you can't find any results
                   if len(specific_results) == 0:
                       db.close_conn()
                       return "You already know everything I know about " + subject + "!"
                   #randomly select a specific fact
                   rand_ndx = random.randint(0, len(specific_results)-1)            
                   gossip = specific_results[rand_ndx]                
           else: #randomly grab facts
               rand_ndx = random.randint(0, len(results)-1)            
               gossip = results[rand_ndx]            


           #select prefix
           rand_ndx2 = random.randint(0, len(prefix)-1)        

           response = ""
           #generate response
           
           if len(gossip[2]) == 0 or gossip[2] == None:
               response = prefix[rand_ndx2] + gossip[0] + " " + gossip[1] + "!"  
           else: 
               response = prefix[rand_ndx2] + gossip[2] + " told "  + \
                   gossip[0] + ", \"" + gossip[1] + "\"!"
           #if you didn't find any random facts
           if len(gossip) == 0:
               db.close_conn()
               return "Hmmm... well, I don't really know anything right now...."
           else:
               #update the knowers to include the user asking for gossip
               knowers = gossip[3].split("; ") 
               knowers.append(context['_nick'])
               print knowers
               
               #add all users in the room to the knowers
               if State.users != None:
                   for user in State.users:
                       knowers.append( user)

               knowers = set(knowers)
               print knowers
               knowers = "; ".join(knowers)
               update_statement = "UPDATE facts SET knowers = \'" + knowers + \
                                  "\' WHERE author= \'" + gossip[0] + \
                                  "\' AND msg= \'" + gossip[1] + \
                                  "\' AND recipient= \'" + gossip[2] + "\';" 
                                  
               db.update(update_statement)
               
               db.close_conn()
               return response
        else:
            responses = ["Too bad... I had something really juicy!",
                         "No gossip? Guess I'll have to go tell someone else this big secret.",
                         "Do not worry, I will not tell anyone that you do not like to gossip..."]

            rand_ndx = random.randint(0, len(responses) - 1)
            return responses[rand_ndx]
Example #4
0
    def recognize(msg):
        tell_me_gossip = ["gossip", "secret"]
        keywords = ["tell", "me" , "about",  "know"]
        count = 0
        isGossip = False

        #determine if specific query
        isSpecific = False
        subject = None

        #LIST OF USERS
        users = []

        #get all possible facts 
        query = '''SELECT * FROM facts'''
        db = Database()
        results = db.query(query)
        db.close_conn()

        #generate a list of users mentioned in the db
        for result in results:
            users.append(result[0])
            knowers = result[2].split("; ")
            for knower in knowers:
                users.append(knower)

        #turn users into set
        users = set(users)
        contains_about = False

        #for each word in the message, determine if is keyword
        for (ndx, m) in enumerate(msg):
            if contains_about == True:
                isSpecific = True
                subject = m[0]                
                contains_about = False
            else:
                if m[0].lower() in keywords:
                    count+=1
                elif m[0].lower() in tell_me_gossip:
                    isGossip = True
                elif (State.users != None and  m[0] in State.users) or m[0] in users:
                    if m[0] == "about":
                        contains_about = True
                    else:
                        isSpecific = True
                        subject = m[0]                
                
            
        confidence = 0.0
        #confidence is high that it's gossip
        if isGossip:
            confidence = 1
        #if we know the query is targeted, we have high confidence
        elif isSpecific: 
            confidence = 1
        #we're a little less confident it's gossip
        else:
            confidence = count/len(keywords) 
            
        return (confidence, {'specific': isSpecific, 
                             'subject': subject, 
                             'isAffirmative' : True})