-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathgithubot.coffee
More file actions
145 lines (123 loc) · 3.97 KB
/
githubot.coffee
File metadata and controls
145 lines (123 loc) · 3.97 KB
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
137
138
139
140
141
142
143
144
145
http = require "scoped-http-client"
async = require "async"
querystring = require "querystring"
version = require("../package.json")["version"]
class Github
constructor: (@logger, @options) ->
@requestQueue = async.queue (task, cb) =>
task.run cb
, @_opt "concurrentRequests"
withOptions: (specialOptions) ->
newOpts = {}
newOpts[k] = v for k,v of @options
newOpts[k] = v for k,v of specialOptions
g = new @constructor @logger, newOpts
g.requestQueue = @requestQueue
g
qualified_repo: (repo) ->
unless repo?
unless (repo = @_opt "defaultRepo")?
@logger.error "Default Github repo not specified"
return null
repo = repo.toLowerCase()
return repo unless repo.indexOf("/") is -1
unless (user = @_opt "defaultUser")?
@logger.error "Default Github user not specified"
return repo
"#{user}/#{repo}"
request: (verb, url, data, cb) ->
unless cb?
[cb, data] = [data, null]
url_api_base = @_opt("apiRoot")
if url[0..3] isnt "http"
url = "/#{url}" unless url[0] is "/"
url = "#{url_api_base}#{url}"
req = http.create(url).header("Accept", "application/vnd.github.#{@_opt "apiVersion"}+json")
req = req.header("User-Agent", "GitHubot/#{version}")
oauth_token = @_opt "token"
req = req.header("Authorization", "token #{oauth_token}") if oauth_token?
args = []
args.push JSON.stringify data if data?
args.push "" if verb is "DELETE" and not data?
task = run: (cb) -> req[verb.toLowerCase()](args...) cb
@requestQueue.push task, (err, res, body) =>
if err?
return @_errorHandler
statusCode: res?.statusCode
body: res?.body
error: err
try
responseData = JSON.parse body if body
catch e
return @_errorHandler
statusCode: res.statusCode
body: body
error: "Could not parse response: #{body}"
if (200 <= res.statusCode < 300)
cb responseData
else
@_errorHandler
statusCode: res.statusCode
body: body
error: responseData.message
get: (url, data, cb) ->
unless cb?
[cb, data] = [data, null]
if data?
url += "?" + querystring.stringify data
@request "GET", url, cb
post: (url, data, cb) ->
@request "POST", url, data, cb
delete: (url, cb) ->
@request "DELETE", url, null, cb
put: (url, data, cb) ->
@request "PUT", url, data, cb
patch: (url, data, cb) ->
@request "PATCH", url, data, cb
handleErrors: (callback) ->
@_errorHandler = (response) =>
callback response
@_loggerErrorHandler response
_loggerErrorHandler: (response) ->
message = response.error
message = "#{response.statusCode} #{message}" if response.statusCode?
@logger.error message
_errorHandler: (response) ->
@_loggerErrorHandler response
branches: require './branches'
commits: require './commits'
deployments: require './deployments'
_opt: (optName) ->
@options ?= {}
@options[optName] ? @_optFromEnv(optName)
_optFromEnv: (optName) ->
switch optName
when "token"
process.env.HUBOT_GITHUB_TOKEN
when "concurrentRequests"
process.env.HUBOT_CONCURRENT_REQUESTS ? 20
when "defaultRepo"
process.env.HUBOT_GITHUB_REPO
when "defaultUser"
process.env.HUBOT_GITHUB_USER
when "apiRoot"
process.env.HUBOT_GITHUB_API ? "https://api.github.com"
when "apiVersion"
process.env.HUBOT_GITHUB_API_VERSION ? "v3"
when "gitio"
process.env.HUBOT_GITIO
when "oneline"
process.env.HUBOT_COMMIT_ONELINE
else null
module.exports = github = (robot, options = {}) ->
new Github robot.logger, options
github[method] = func for method,func of Github.prototype
github.logger = {
error: (msg) ->
util = require "util"
util.error "ERROR: #{msg}"
debug: ->
}
github.requestQueue = async.queue (task, cb) =>
task.run cb
, process.env.HUBOT_CONCURRENT_REQUESTS ? 20