This repository was archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathquandora.coffee
72 lines (64 loc) · 2.56 KB
/
quandora.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Description:
# Query and interact with your Quandora Q&A knowledge base.
#
# Dependencies:
# None
#
# Configuration:
# HUBOT_QUANDORA_DOMAIN
# HUBOT_QUANDORA_USER
# HUBOT_QUANDORA_PASSWD
#
# Commands:
# hubot (q|ask|quandora query) <text> - search text in Quandora
# hubot qs <n> - display question <n> after a search
# hubot (qd|quandora domain) - display configured quandora domain
#
# Author:
# b6
quandora_domain = process.env.HUBOT_QUANDORA_DOMAIN or ""
console.error("Quandora: no domain defined, you need to set HUBOT_QUANDORA_DOMAIN") if quandora_domain == ""
api_url = "https://#{process.env.HUBOT_QUANDORA_DOMAIN}.quandora.com/m/json"
api_user = process.env.HUBOT_QUANDORA_USER or ""
api_passwd = process.env.HUBOT_QUANDORA_PASSWD or ""
if (api_user && api_passwd)
api_auth = "Basic " + new Buffer(api_user + ':' + api_passwd).toString('base64')
console.log("Quandora: Got Auth Data, going as " + api_user)
else
console.log("No auth data: going anonymous")
api_auth = ""
module.exports = (robot) ->
robot.respond /(ask|qs|quandora query) (.+)/i, (msg) ->
question = msg.match[2]
msg.http(api_url + "/search")
.headers("Authorization": api_auth)
.query({q: question})
.get() (err, res, body) ->
console.log(err)
console.log(body)
response = JSON.parse(body)
if response.type == "question-search-result"
robot.brain.data.quandora_latests = response.data.result
text = ["Top Matching questions in Quandora:"]
i = 0
response.data.result.forEach (q) ->
i++
qurl = make_qurl(q.uid)
text.push "#{i}. #{q.title} [re: #{q.answers}] <#{qurl}>"
msg.send(text.join "\n")
else if response.type == "error"
msg.send("Quandora lookup error: #{response.data.message}")
robot.respond /(q|quandora) ([0-9])/i, (msg) ->
i = msg.match[2] - 1
q = robot.brain.data.quandora_latests[i] or null
if q
qcontent = [q.title, q.summary, "#{q.votes} votes / #{q.answers} answers",
make_qurl(q.uid)]
msg.send(qcontent.join("\n"))
else
msg.send("Can't find question #{i + 1}")
robot.respond /(quandora domain|qd)/i, (msg) ->
msg.send("Quandora Domain: #{quandora_domain}")
make_qurl = (uid) ->
app_url = "https://app.quandora.com/"
app_url + "object/" + uid