hubot-scripts
Version:
Allows you to opt in to a variety of scripts
40 lines (35 loc) • 1.07 kB
text/coffeescript
ringSessionID = ''
module.exports = (robot) ->
robot.respond /(clojure|clj)\s+(.*)/i, (msg)->
script = msg.match[2]
msg.http("http://www.tryclj.com/eval.json")
.query(expr: script)
.headers(Cookie: "ring-session=#{ringSessionID}")
.get() (err, res, body) ->
switch res.statusCode
when 200
if res.headers["set-cookie"]
ringSessionID = res.headers["set-cookie"][0].match(/ring-session=([-a-z0-9]+);/)[1]
result = JSON.parse(body)
if result.error
msg.reply result.message
else
outputs = result.result.split("\n")
for output in outputs
msg.reply output
else
msg.reply "Unable to evaluate script: #{script}. Request returned with the status code: #{res.statusCode}"