Module: Chatterbot::Search
- Included in:
- Bot
- Defined in:
- lib/chatterbot/search.rb
Overview
handle Twitter searches
Constant Summary collapse
- MAX_SEARCH_TWEETS =
set a reasonable limit on the maximum number of tweets we will ever return. otherwise it is possible to exceed Twitter’s rate limits
1000
Instance Method Summary collapse
-
#exclude_retweets ⇒ Object
exclude retweets from searches.
-
#include_retweets ⇒ Object
include retweets from searches.
-
#search(queries, opts = {}, &block) ⇒ Object
internal search code.
-
#skippable_retweet?(t) ⇒ Boolean
check if this is a retweet that we want to skip.
- #wrap_search_query(q) ⇒ Object
Instance Method Details
#exclude_retweets ⇒ Object
exclude retweets from searches
16 17 18 |
# File 'lib/chatterbot/search.rb', line 16 def exclude_retweets @skip_retweets = true end |
#include_retweets ⇒ Object
include retweets from searches
23 24 25 |
# File 'lib/chatterbot/search.rb', line 23 def include_retweets @skip_retweets = false end |
#search(queries, opts = {}, &block) ⇒ Object
internal search code
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/chatterbot/search.rb', line 44 def search(queries, opts = {}, &block) debug "check for tweets since #{since_id}" max_tweets = opts.delete(:limit) || MAX_SEARCH_TWEETS exact_match = if opts.key?(:exact) opts.delete(:exact) else true end if queries.is_a?(String) queries = [ queries ] end query = queries.map { |q| if exact_match == true q = wrap_search_query(q) end q }.join(" OR ") # # search twitter # debug "search: #{query} #{default_opts.merge(opts)}" @current_tweet = nil client.search( query, default_opts.merge(opts) ).take(max_tweets).each { |s| update_since_id(s) debug s.text if block_given? && valid_tweet?(s) @current_tweet = s yield s end } @current_tweet = nil end |
#skippable_retweet?(t) ⇒ Boolean
check if this is a retweet that we want to skip
31 32 33 |
# File 'lib/chatterbot/search.rb', line 31 def skippable_retweet?(t) @skip_retweets && t.retweeted_status? end |
#wrap_search_query(q) ⇒ Object
35 36 37 38 39 40 41 |
# File 'lib/chatterbot/search.rb', line 35 def wrap_search_query(q) if q =~ / / ['"', q.gsub(/^"/, '').gsub(/"$/, ''), '"'].join("") else q end end |