-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtbot.rb
38 lines (31 loc) · 1.17 KB
/
tbot.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
puts "Loading system"
require "rubygems"
require File.expand_path(File.join(File.dirname(__FILE__), 'config'))
require "bundler/setup"
require "twitter"
require "tweetstream"
require "yajl"
puts "System loaded, configuring tbot"
TweetStream.configure do |config|
config.consumer_key = Config::TWITTER_CONSUMER_KEY
config.consumer_secret = Config::TWITTER_CONSUMER_SECRET
config.oauth_token = Config::TWITTER_OAUTH_TOKEN
config.oauth_token_secret = Config::TWITTER_OAUTH_TOKEN_SECRET
config.auth_method = :oauth
config.parser = :yajl
end
Twitter.configure do |config|
config.consumer_key = Config::TWITTER_CONSUMER_KEY
config.consumer_secret = Config::TWITTER_CONSUMER_SECRET
config.oauth_token = Config::TWITTER_OAUTH_TOKEN
config.oauth_token_secret = Config::TWITTER_OAUTH_TOKEN_SECRET
end
puts "And here we go"
TweetStream::Client.new.track(Config::BOT_TRACK_WORDS) do |status, client|
begin
puts "Replying to \"#{status.text}\" by @#{status.user.screen_name} (#{status.id})"
Twitter.update(Config::BOT_REPLY_MSG.gsub("!USERNAME", "@#{status.user.screen_name}"), {:in_reply_to_status_id => status.id.to_i})
rescue => ex
puts "Error: #{ex}"
end
end