From 91827dc7b06314bd4c953159ae61ab86cacb3b8d Mon Sep 17 00:00:00 2001 From: Matthias H Date: Wed, 19 Dec 2012 09:02:29 +0100 Subject: [PATCH] imdb: plugin updates for recent site changes --- data/rbot/plugins/imdb.rb | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/data/rbot/plugins/imdb.rb b/data/rbot/plugins/imdb.rb index 0f4b8c80..0df8e2d4 100644 --- a/data/rbot/plugins/imdb.rb +++ b/data/rbot/plugins/imdb.rb @@ -15,7 +15,7 @@ class Imdb IMDB = "http://www.imdb.com" TITLE_OR_NAME_MATCH = /]*)>([^<]*)<\/a>/ TITLE_MATCH = /]*)>([^<]*)<\/a>/ - NAME_MATCH = /]*)>([^<]*)<\/a>/ + NAME_MATCH = /]*)>([^<]*)<\/a>/ CHAR_MATCH = /]*)>([^<]*)<\/a>/ CREDIT_NAME_MATCH = /#{NAME_MATCH}\s*<\/td>\s*]+>\s*\.\.\.\s*<\/td>\s*]+>\s*(.+?)\s*<\/td>/m FINAL_ARTICLE_MATCH = /, ([A-Z]\S{0,2})$/ @@ -33,8 +33,12 @@ class Imdb end def search(rawstr, rawopts={}) + # allow the user to search directly for (movie) IDs + if rawstr.match /$tt\d+^/ then + return ["/movie/#{rawstr}/"] + end str = CGI.escape(rawstr) - str << ";site=aka" if @bot.config['imdb.aka'] + str << "&site=aka" if @bot.config['imdb.aka'] opts = rawopts.dup opts[:type] = :both unless opts[:type] return do_search(str, opts) @@ -128,6 +132,8 @@ class Imdb def info_title(sr, opts={}) resp = nil begin + # movie urls without tailing / trigger a redirect + sr += '/' if sr[-1] != '/' resp = @bot.httputil.get_response(IMDB + sr, :max_redir => -1) rescue Exception => e error e.message @@ -185,7 +191,7 @@ class Imdb end genre = Array.new - resp.body.scan(/]+>([^<]+)<\/a>/) do |gnr| + resp.body.scan(/([^<]+)<\/a>/) do |gnr| genre << gnr end -- 2.39.2