summaryrefslogtreecommitdiffstats
path: root/modules/search.py
diff options
context:
space:
mode:
authorSean B. Palmer <sbp@aldebaran.local>2011-06-17 16:49:37 +0100
committerSean B. Palmer <sbp@aldebaran.local>2011-06-17 16:49:37 +0100
commit12c8cd07f52883299ed628752b580462c31ce9f1 (patch)
treec79b62a988eb18221149fb47f873cadd1979c0fd /modules/search.py
parent78ec2730460e8271e3a9d96056799785e6866f83 (diff)
downloadbot-12c8cd07f52883299ed628752b580462c31ce9f1.tar.gz
bot-12c8cd07f52883299ed628752b580462c31ce9f1.tar.bz2
bot-12c8cd07f52883299ed628752b580462c31ce9f1.zip
Search shim, and an encoding fix.
Diffstat (limited to 'modules/search.py')
-rwxr-xr-xmodules/search.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/search.py b/modules/search.py
index 1067531..f99baf9 100755
--- a/modules/search.py
+++ b/modules/search.py
@@ -10,17 +10,31 @@ http://inamidst.com/phenny/
import re
import web
+class Grab(web.urllib.URLopener):
+ def __init__(self, *args):
+ self.version = 'Mozilla/5.0 (Phenny)'
+ web.urllib.URLopener.__init__(self, *args)
+ self.addheader('Referer', 'https://github.com/sbp/phenny')
+ def http_error_default(self, url, fp, errcode, errmsg, headers):
+ return web.urllib.addinfourl(fp, [headers, errcode], "http:" + url)
+
def search(query):
"""Search using AjaxSearch, and return its JSON."""
uri = 'http://ajax.googleapis.com/ajax/services/search/web'
args = '?v=1.0&safe=off&q=' + web.urllib.quote(query.encode('utf-8'))
+ handler = web.urllib._urlopener
+ web.urllib._urlopener = Grab()
bytes = web.get(uri + args)
+ web.urllib._urlopener = handler
return web.json(bytes)
def result(query):
results = search(query)
try: return results['responseData']['results'][0]['unescapedUrl']
except IndexError: return None
+ except TypeError:
+ print results
+ return False
def count(query):
results = search(query)
@@ -48,6 +62,7 @@ def g(phenny, input):
if not hasattr(phenny.bot, 'last_seen_uri'):
phenny.bot.last_seen_uri = {}
phenny.bot.last_seen_uri[input.sender] = uri
+ elif uri is False: phenny.reply("Problem getting data from Google.")
else: phenny.reply("No results found for '%s'." % query)
g.commands = ['g']
g.priority = 'high'