Sha256: 2e7b18b455730d38fc83343876fdbd74d6339e9a088f3e5b7e274c3e0b7b9d38

Contents?: true

Size: 1.71 KB

Versions: 7

Compression:

Stored size: 1.71 KB

Contents

module Chatterbot

  #
  # a bunch of helper routines for bots
  module Helpers

    #
    # Set the username of the bot. This is used when generating
    # config/skeleton file during registration
    #
    def botname=(b)
      @botname = b
    end

    #
    # The name of the currently running bot
    def botname
      if !@botname.nil?
        @botname
      elsif self.class < Bot
        self.class.to_s.downcase
      else
        File.basename($0,".rb")
      end
    end

    #
    # Pull the username from a tweet hash -- this is different depending on
    # if we're doing a search, or parsing through replies/mentions.
    def from_user(s)
      case s
      when Twitter::Tweet
        s.user.screen_name
      when Twitter::User
        s.name
      when String
        s
      end
    end

    
    #
    # Take the incoming tweet/user name, and turn it into something suitable for replying 
    # to a user. Basically, get their handle and add a '@' to it.
    def tweet_user(tweet)     
      base = from_user(tweet)
      base =~ /^@/ ? base : "@#{base}"
    end


    #
    # do some simple variable substitution.  for now, it only handles
    # replacing #USER# with the screen of the incoming tweet, but it
    # could do more if needed
    #
    def replace_variables(txt, original = nil)
      if ! original.nil? && txt.include?("#USER#")
        username = tweet_user(original)
        txt.gsub("#USER#", username)
      else
        txt
      end
    end

    #
    # find the user of the current tweet/object we are dealing with
    #
    def current_user
      return nil if @current_tweet.nil?
      return @current_tweet.sender if @current_tweet.respond_to?(:sender)
      return @current_tweet.user
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
chatterbot-2.2.0 lib/chatterbot/helpers.rb
chatterbot-2.1.0 lib/chatterbot/helpers.rb
chatterbot-2.0.5 lib/chatterbot/helpers.rb
chatterbot-2.0.4 lib/chatterbot/helpers.rb
chatterbot-2.0.3 lib/chatterbot/helpers.rb
chatterbot-2.0.2 lib/chatterbot/helpers.rb
chatterbot-2.0.0.pre lib/chatterbot/helpers.rb