From 676dd61e6b0bea5f506d064039a685944aefd6fb Mon Sep 17 00:00:00 2001 From: Tom Gilbert Date: Fri, 29 Jul 2005 13:44:33 +0000 Subject: Fri Jul 29 13:07:56 BST 2005 Tom Gilbert * Moved some stuff out of util.rb into the plugins that actually need them. Those methods didn't belong in util as they were plugin-specific. * moved a few more plugins to use map() where appropriate * made the url plugin only store unique urls --- data/rbot/plugins/tube.rb | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) (limited to 'data/rbot/plugins/tube.rb') diff --git a/data/rbot/plugins/tube.rb b/data/rbot/plugins/tube.rb index 77ca5227..85316718 100644 --- a/data/rbot/plugins/tube.rb +++ b/data/rbot/plugins/tube.rb @@ -9,16 +9,9 @@ class TubePlugin < Plugin def help(plugin, topic="") "tube [district|circle|metropolitan|central|jubilee|bakerloo|waterloo_city|hammersmith_city|victoria|eastlondon|northern|piccadilly] => display tube service status for the specified line(Docklands Light Railway is not currently supported), tube stations => list tube stations (not lines) with problems" end - def privmsg(m) - if m.params && m.params =~ /^stations$/ - check_stations m - elsif m.params && m.params =~ /^(.*)$/ - line = $1.downcase.capitalize - check_tube m, line - end - end - def check_tube(m, line) + def tube(m, params) + line = params[:line] begin tube_page = @bot.httputil.get(URI.parse("http://www.tfl.gov.uk/tfl/service_rt_tube.shtml"), 1, 1) rescue URI::InvalidURIError, URI::BadURIError => e @@ -47,7 +40,7 @@ class TubePlugin < Plugin m.reply "No Problems on the #{line} line." end - def check_stations(m) + def check_stations(m, params) begin tube_page = @bot.httputil.get(URI.parse("http://www.tfl.gov.uk/tfl/service_rt_tube.shtml")) rescue URI::InvalidURIError, URI::BadURIError => e @@ -74,4 +67,5 @@ class TubePlugin < Plugin end end plugin = TubePlugin.new -plugin.register("tube") +plugin.map 'tube stations', :action => 'check_stations' +plugin.map 'tube :line' -- cgit v1.2.3