]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - data/rbot/plugins/twitter.rb
twitter plugin: display time elapsed instead of date in status
[user/henk/code/ruby/rbot.git] / data / rbot / plugins / twitter.rb
1 #-- vim:sw=2:et
2 #++
3 #
4 # :title: Twitter Status Update for rbot
5 #
6 # Author:: Carter Parks (carterparks) <carter@carterparks.com>
7 # Author:: Giuseppe "Oblomov" Bilotta <giuseppe.bilotta@gmail.com>
8 #
9 # Copyright:: (C) 2007 Carter Parks
10 #
11 # Users can setup their twitter username and password and then begin updating
12 # twitter whenever
13
14 require 'rexml/rexml'
15
16 class TwitterPlugin < Plugin
17   def initialize
18     super
19     
20     class << @registry
21       def store(val)
22         val
23       end
24       def restore(val)
25         val
26       end
27     end
28   end
29   
30   # return a help string when the bot is asked for help on this plugin
31   def help(plugin, topic="")
32     return "twitter status [status] => updates your status on twitter | twitter identify [username] [password] => ties your nick to your twitter username and password"
33   end
34   
35   # update the status on twitter
36   def get_status(m, params)
37   
38     nick = params[:nick] || @registry[m.sourcenick + "_username"]
39
40     if not nick
41       m.reply "you should specify the username of the twitter touse, or identify using 'twitter identify [username] [password]'"
42       return false
43     end
44       
45     # TODO configurable count
46     uri = "http://twitter.com/statuses/user_timeline/#{URI.escape(nick)}.xml?count=3"
47     
48     response = @bot.httputil.get(uri)
49     debug response
50
51     texts = []
52     
53     if response
54       begin
55         rex = REXML::Document.new(response)
56         rex.root.elements.each("status") { |st|
57           month, day, hour, min, sec, year = st.elements['created_at'].text.match(/\w+ (\w+) (\d+) (\d+):(\d+):(\d+) \S+ (\d+)/)[1..6]
58           debug [year, month, day, hour, min, sec].inspect
59           time = Time.local(year.to_i, month, day.to_i, hour.to_i, min.to_i, sec.to_i)
60           now = Time.now
61           delta = now - time
62           msg = st.elements['text'].to_s + " (#{Utils.secs_to_string(delta.to_i)} ago via #{st.elements['source'].to_s})"
63           texts << Utils.decode_html_entities(msg).ircify_html
64         }
65       rescue
66         error $!
67         m.reply "could not parse status for #{nick}"
68         return false
69       end
70       m.reply texts.reverse.join("\n")
71       return true
72     else
73       m.reply "could not get status for #{nick}"
74       return false
75     end
76   end
77   
78   # update the status on twitter
79   def update_status(m, params)
80   
81
82     unless @registry.has_key?(m.sourcenick + "_password") && @registry.has_key?(m.sourcenick + "_username")
83       m.reply "you must identify using 'twitter identify [username] [password]'"
84       return false
85     end
86       
87     uri = "http://#{URI.escape(@registry[m.sourcenick + "_username"])}:#{URI.escape(@registry[m.sourcenick + "_password"])}@twitter.com/statuses/update.xml"
88     
89     response = @bot.httputil.post(uri, "status=#{URI.escape(params[:status].to_s)}")
90     debug response
91     
92     if response.class == Net::HTTPOK
93       m.reply "status updated"
94     else
95       m.reply "could not update status"
96     end
97   end
98   
99   # ties a nickname to a twitter username and password
100   def identify(m, params)
101     @registry[m.sourcenick + "_username"] = params[:username].to_s
102     @registry[m.sourcenick + "_password"] = params[:password].to_s
103     m.reply "you're all setup!"
104   end
105 end
106
107 # create an instance of our plugin class and register for the "length" command
108 plugin = TwitterPlugin.new
109 plugin.map 'twitter identify :username :password', :action => "identify", :public => false
110 plugin.map 'twitter update *status', :action => "update_status", :threaded => true
111 plugin.map 'twitter status [:nick]', :action => "get_status", :threaded => true
112