hubot-scripts
Version:
Allows you to opt in to a variety of scripts
26 lines (23 loc) • 629 B
text/coffeescript
# Description:
# Returns the URL of the first google hit for a query
#
# Dependencies:
# None
#
# Configuration:
# None
#
# Commands:
# hubot google me <query> - Googles <query> & returns 1st result's URL
#
# Author:
# searls
module.exports = (robot) ->
robot.respond /(google)( me)? (.*)/i, (msg) ->
googleMe msg, msg.match[3], (url) ->
msg.send url
googleMe = (msg, query, cb) ->
msg.http('http://www.google.com/search')
.query(q: query)
.get() (err, res, body) ->
cb body.match(/class="r"><a href="\/url\?q=([^"]*)(&sa.*)">/)?[1] || "Sorry, Google had zero results for '#{query}'"