forked from github/hubot-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clojure.coffee
39 lines (35 loc) · 1.05 KB
/
clojure.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Description:
# Evaluate one line of Clojure script
#
# Dependencies:
# None
#
# Configuration:
# None
#
# Commands:
# hubot clojure|clj <script> - Evaluate one line of Clojure script
#
# Author:
# jingweno
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}"