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 pathzendesk.coffee
136 lines (114 loc) · 5.4 KB
/
zendesk.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# Description:
# Queries Zendesk for information about support tickets
#
# Configuration:
# HUBOT_ZENDESK_USER
# HUBOT_ZENDESK_PASSWORD
# HUBOT_ZENDESK_SUBDOMAIN
#
# Commands:
# hubot (all) tickets - returns the total count of all unsolved tickets. The 'all' keyword is optional.
# hubot new tickets - returns the count of all new (unassigned) tickets
# hubot open tickets - returns the count of all open tickets
# hubot on hold tickets - returns the count of all on hold tickets
# hubot escalated tickets - returns a count of tickets with escalated tag that are open or pending
# hubot pending tickets - returns a count of tickets that are pending
# hubot list (all) tickets - returns a list of all unsolved tickets. The 'all' keyword is optional.
# hubot list new tickets - returns a list of all new tickets
# hubot list open tickets - returns a list of all open tickets
# hubot list pending tickets - returns a list of pending tickets
# hubot list escalated tickets - returns a list of escalated tickets
# hubot ticket <ID> - returns information about the specified ticket
sys = require 'sys' # Used for debugging
tickets_url = "https://#{process.env.HUBOT_ZENDESK_SUBDOMAIN}.zendesk.com/tickets"
queries =
unsolved: "search.json?query=status<solved+type:ticket"
open: "search.json?query=status:open+type:ticket"
hold: "search.json?query=status:hold+type:ticket"
new: "search.json?query=status:new+type:ticket"
escalated: "search.json?query=tags:escalated+status:open+status:pending+type:ticket"
pending: "search.json?query=status:pending+type:ticket"
tickets: "tickets"
users: "users"
zendesk_request = (msg, url, handler) ->
zendesk_user = "#{process.env.HUBOT_ZENDESK_USER}"
zendesk_password = "#{process.env.HUBOT_ZENDESK_PASSWORD}"
auth = new Buffer("#{zendesk_user}:#{zendesk_password}").toString('base64')
zendesk_url = "https://#{process.env.HUBOT_ZENDESK_SUBDOMAIN}.zendesk.com/api/v2"
msg.http("#{zendesk_url}/#{url}")
.headers(Authorization: "Basic #{auth}", Accept: "application/json")
.get() (err, res, body) ->
if err
msg.send "Zendesk says: #{err}"
return
content = JSON.parse(body)
if content.error?
if content.error?.title
msg.send "Zendesk says: #{content.error.title}"
else
msg.send "Zendesk says: #{content.error}"
return
handler content
# FIXME this works about as well as a brick floats
zendesk_user = (msg, user_id) ->
zendesk_request msg, "#{queries.users}/#{user_id}.json", (result) ->
if result.error
msg.send result.description
return
result.user
module.exports = (robot) ->
robot.respond /(all )?tickets$/i, (msg) ->
zendesk_request msg, queries.unsolved, (results) ->
ticket_count = results.count
msg.send "#{ticket_count} unsolved tickets"
robot.respond /pending tickets$/i, (msg) ->
zendesk_request msg, queries.pending, (results) ->
ticket_count = results.count
msg.send "#{ticket_count} unsolved tickets"
robot.respond /new tickets$/i, (msg) ->
zendesk_request msg, queries.new, (results) ->
ticket_count = results.count
msg.send "#{ticket_count} new tickets"
robot.respond /escalated tickets$/i, (msg) ->
zendesk_request msg, queries.escalated, (results) ->
ticket_count = results.count
msg.send "#{ticket_count} escalated tickets"
robot.respond /open tickets$/i, (msg) ->
zendesk_request msg, queries.open, (results) ->
ticket_count = results.count
msg.send "#{ticket_count} open tickets"
robot.hear /on hold tickets$/i, (msg) ->
zendesk_request msg, queries.hold, (results) ->
ticket_count = results.count
msg.send "#{ticket_count} on hold tickets"
robot.respond /list (all )?tickets$/i, (msg) ->
zendesk_request msg, queries.unsolved, (results) ->
for result in results.results
msg.send "Ticket #{result.id} is #{result.status}: #{tickets_url}/#{result.id}"
robot.respond /list new tickets$/i, (msg) ->
zendesk_request msg, queries.new, (results) ->
for result in results.results
msg.send "Ticket #{result.id} is #{result.status}: #{tickets_url}/#{result.id}"
robot.respond /list pending tickets$/i, (msg) ->
zendesk_request msg, queries.pending, (results) ->
for result in results.results
msg.send "Ticket #{result.id} is #{result.status}: #{tickets_url}/#{result.id}"
robot.respond /list escalated tickets$/i, (msg) ->
zendesk_request msg, queries.escalated, (results) ->
for result in results.results
msg.send "Ticket #{result.id} is escalated and #{result.status}: #{tickets_url}/#{result.id}"
robot.respond /list open tickets$/i, (msg) ->
zendesk_request msg, queries.open, (results) ->
for result in results.results
msg.send "Ticket #{result.id} is #{result.status}: #{tickets_url}/#{result.id}"
robot.respond /ticket ([\d]+)$/i, (msg) ->
ticket_id = msg.match[1]
zendesk_request msg, "#{queries.tickets}/#{ticket_id}.json", (result) ->
if result.error
msg.send result.description
return
message = "#{tickets_url}/#{result.ticket.id} ##{result.ticket.id} (#{result.ticket.status.toUpperCase()})"
message += "\nUpdated: #{result.ticket.updated_at}"
message += "\nAdded: #{result.ticket.created_at}"
message += "\nDescription:\n-------\n#{result.ticket.description}\n--------"
msg.send message