summaryrefslogtreecommitdiff
path: root/data/rbot/plugins/bash.rb
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2008-03-17 01:48:47 +0100
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2008-03-17 01:48:47 +0100
commit9f0d842ed98fd6fceb4ccb505d42441231528827 (patch)
treec12fbf1e8eaecdb6dce9bcd7a0a7eaad001394a4 /data/rbot/plugins/bash.rb
parenta087e163d26dc11f7dd2bc66fecbc858db94ba18 (diff)
bash plugin: provide htmlinfo filter
Diffstat (limited to 'data/rbot/plugins/bash.rb')
-rw-r--r--data/rbot/plugins/bash.rb55
1 files changed, 43 insertions, 12 deletions
diff --git a/data/rbot/plugins/bash.rb b/data/rbot/plugins/bash.rb
index 6c12ce5e..2d52a5ec 100644
--- a/data/rbot/plugins/bash.rb
+++ b/data/rbot/plugins/bash.rb
@@ -32,6 +32,10 @@ class ::BashQuote
"http://www.bash.org/?#{@num}"
end
+ def to_s
+ "#%d (%d): %s" % [self.num, self.vote, self.irc_text]
+ end
+
private
def mk_irc_text
cur_nick = nil
@@ -66,6 +70,28 @@ class BashPlugin < Plugin
"bash => print a random quote from bash.org, bash quote_id => print that quote id from bash.org, bash latest => print the latest quote from bash.org (currently broken, need to get josh@bash.org to fix the xml)"
end
+ def bash_filter(s)
+ # check if we like the location of the page
+ loc = Utils.check_location(s, %r{http://(?:www\.)?bash\.org/\?})
+ return unless loc
+ # check if there are any quotes
+ quotes = get_html_quotes(s[:text])
+ return if quotes.empty?
+ title = s[:text].ircify_html_title
+ # return the first quote
+ return {
+ :title => title,
+ :content => quotes.first.to_s,
+ :bash_quotes => quotes
+ }
+ end
+
+ def initialize
+ super
+
+ @bot.register_filter(:bash, :htmlinfo) { |s| bash_filter(s) }
+ end
+
def bash(m, params)
id = params[:id]
case @bot.config['bash.access'].intern
@@ -82,9 +108,23 @@ class BashPlugin < Plugin
html_bash(m, :html => html)
end
- def html_bash(m, opts={})
+ def get_html_quotes(html)
quotes = []
+ html_quotes = html.split(/<p class="quote">/)
+ html_quotes.each { |htqt|
+ # debug htqt.inspect
+ if htqt.match(/<a href="\?(\d+)"[^>]*>.*?\((-?\d+)\).*?<p class="qt">(.*)<\/p>\s+(?:<\/td>.*)?\z/m)
+ num = $1
+ vote = $2
+ text = $3
+ quotes << BashQuote.new(num, text, vote)
+ end
+ }
+ return quotes
+ end
+
+ def html_bash(m, opts={})
html = opts[:html]
if not html
id = opts[:id]
@@ -103,16 +143,7 @@ class BashPlugin < Plugin
return
end
- html_quotes = html.split(/<p class="quote">/)
- html_quotes.each { |htqt|
- # debug htqt.inspect
- if htqt.match(/<a href="\?(\d+)"[^>]*>.*?\((-?\d+)\).*?<p class="qt">(.*)<\/p>\s+(?:<\/td>.*)?\z/m)
- num = $1
- vote = $2
- text = $3
- quotes << BashQuote.new(num, text, vote)
- end
- }
+ quotes = get_html_quotes(html)
case quotes.length
when 0
@@ -125,7 +156,7 @@ class BashPlugin < Plugin
# may want to echo more than one for latest/random
quote = quotes.first
end
- m.reply "#%d (%d): %s" % [quote.num, quote.vote, quote.irc_text]
+ m.reply quote.to_s
end
def xml_bash(m, id=nil)