X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Ftwitter.rb;h=a5ca23f87a16ae1d6e1b8ba0fdc1b93d0c578ec7;hb=22e6cefa54de681b131ecb97fc9383ff5e990dfe;hp=14b0c2d65f0c01d3e67de1e401bd07a07101d3fa;hpb=d1105edb72568beae81b2d15f61585fe4cb0d48d;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/twitter.rb b/data/rbot/plugins/twitter.rb index 14b0c2d6..a5ca23f8 100644 --- a/data/rbot/plugins/twitter.rb +++ b/data/rbot/plugins/twitter.rb @@ -42,7 +42,7 @@ class TwitterPlugin < Plugin # return a help string when the bot is asked for help on this plugin def help(plugin, topic="") - return "twitter status [nick] => show nick's (or your) status, use 'twitter friends status [nick]' to also show the friends' timeline | twitter update [status] => updates your status on twitter | twitter identify [username] [password] => ties your nick to your twitter username and password" + return "twitter status [nick] => show nick's (or your) status, use 'twitter friends status [nick]' to also show the friends' timeline | twitter update [status] => updates your status on twitter | twitter identify [username] [password] => ties your nick to your twitter username and password | twitter actions [on|off] => enable/disable twitting of actions (/me does ...)" end # update the status on twitter @@ -136,10 +136,11 @@ class TwitterPlugin < Plugin response = @bot.httputil.post(uri, body, :headers => @header) debug response + reply_method = params[:notify] ? :notify : :reply if response.class == Net::HTTPOK - m.reply "status updated" + m.__send__(reply_method, "status updated") else - m.reply "could not update status" + m.__send__(reply_method, "could not update status") end end @@ -149,6 +150,31 @@ class TwitterPlugin < Plugin @registry[m.sourcenick + "_password"] = params[:password].to_s m.reply "you're all setup!" end + + # update on ACTION if the user has enabled the option + def ctcp_listen(m) + return unless m.action? + return unless @registry[m.sourcenick + "_actions"] + update_status(m, :status => m.message, :notify => true) + end + + # show or toggle action twitting + def actions(m, params) + case params[:toggle] + when 'on' + @registry[m.sourcenick + "_actions"] = true + m.okay + when 'off' + @registry.delete(m.sourcenick + "_actions") + m.okay + else + if @registry[m.sourcenick + "_actions"] + m.reply _("actions will be twitted") + else + m.reply _("actions will not be twitted") + end + end + end end # create an instance of our plugin class and register for the "length" command @@ -156,5 +182,6 @@ plugin = TwitterPlugin.new plugin.map 'twitter identify :username :password', :action => "identify", :public => false plugin.map 'twitter update *status', :action => "update_status", :threaded => true plugin.map 'twitter status [:nick]', :action => "get_status", :threaded => true +plugin.map 'twitter actions [:toggle]', :action => "actions", :requirements => { :toggle => /^on|off$/ } plugin.map 'twitter :friends [status] [:nick]', :action => "get_status", :requirements => { :friends => /^friends?$/ }, :threaded => true