forked from octokit/octokit.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.js
309 lines (268 loc) · 8.27 KB
/
github.js
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
/**
* Copyright 2010 Ajax.org B.V.
*
* This product includes software developed by
* Ajax.org B.V. (http://www.ajax.org/).
*
* Author: Fabian Jaokbs <[email protected]>
*/
// warning that this version will is deprecated:
console.log("*******************************************************************");
console.log("\033[31mWarning: Github will terminate API v1 and API v2 in 1 month on \033[1mMay\033[39m");
console.log("\033[31m\033[1m1st, 2012.\033[22m\033[39m");
console.log("Read all about it at https://github.com/blog/1090-github-api-moving-on.");
console.log("To make sure that your program keeps working beyond this date, you \nshould upgrade to a newer version of 'github' that uses the v3 API.")
console.log("Check it out at https://github.com/ajaxorg/node-github.");
console.log("*******************************************************************\n\n");
"use strict";
var Request = require("./github/Request").Request;
/**
* Simple JavaScript GitHub API
*
* Based on the PHP GitHub API project http://github.com/ornicar/php-github-api
*/
var GitHubApi = exports.GitHubApi = function(debug, proxy, http) {
/**
* Use debug mode (prints debug messages)
*/
this.$debug = debug;
/**
* Define HTTP proxy in format localhost:3128
*/
if (proxy) {
this.$proxy_host = proxy.split(':')[0];
this.$proxy_port = proxy.split(':')[1];
}
if (http) {
this.$use_http = true;
}
/**
* The list of loaded API instances
*/
this.$apis = [];
};
(function() {
/**
* The request instance used to communicate with GitHub
*/
this.$request = null;
/**
* Authenticate a user for all next requests
*
* @param {String} login GitHub username
* @param {String} token GitHub private token
* @return {GitHubApi} fluent interface
*/
this.authenticate = function(login, token) {
console.log("Deprecated: use 'authenticateToken' instead!");
return this.authenticateToken(login, token);
};
/**
* Authenticate a user for all next requests using an API token
*
* @param {String} login GitHub username
* @param {String} token GitHub API token
* @return {GitHubApi} fluent interface
*/
this.authenticateToken = function(login, token)
{
this.getRequest()
.setOption("login_type", "token")
.setOption('username', login)
.setOption('api_token', token);
return this;
};
/**
* Authenticate a user for all next requests using an API token
*
* @param {String} login GitHub username
* @param {String} password GitHub password
* @return {GitHubApi} fluent interface
*/
this.authenticatePassword = function(login, password)
{
this.getRequest()
.setOption("login_type", "basic")
.setOption('username', login)
.setOption('password', password);
return this;
};
/**
* Authenticate a user for all next requests using an API token
*
* @param {String} login GitHub username
* @param {String} password GitHub password
* @return {GitHubApi} fluent interface
*/
this.authenticateOAuth = function(accessToken)
{
this.getRequest()
.setOption("login_type", "oauth")
.setOption('oauth_access_token', accessToken);
return this;
};
/**
* Deauthenticate a user for all next requests
*
* @return {GitHubApi} fluent interface
*/
this.deAuthenticate = function() {
this.getRequest()
.setOption("login_type", "none");
return this;
};
/**
* Call any route, GET method
* Ex: api.get('repos/show/my-username/my-repo')
*
* @param {String} route the GitHub route
* @param {Object} parameters GET parameters
* @param {Object} requestOptions reconfigure the request
* @return {Array} data returned
*/
this.get = function(route, parameters, requestOptions, callback) {
return this.getRequest().get(route, parameters || {}, requestOptions, callback);
};
/**
* Call any route, DELETE method
*
* @param {String} route
* @param {Object} parameters
* @param {Object} requestOptions
* @return {Array}
*/
this.delete = function(route, parameters, requestOptions, callback) {
return this.getRequest().delete(route, parameters || {}, requestOptions, callback);
};
/**
* Call any route, POST method
* Ex: api.post('repos/show/my-username', {'email': '[email protected]'})
*
* @param {String} route the GitHub route
* @param {Object} parameters POST parameters
* @param {Object} requestOptions reconfigure the request
* @return {Array} data returned
*/
this.post = function(route, parameters, requestOptions, callback) {
return this.getRequest().post(route, parameters || {}, requestOptions, callback);
};
/**
* Call any route, PUT method
*
* @param {String} route
* @param {Object} parameters
* @param {Object} requestOptions
* @return {Array}
*/
this.put = function(route, parameters, requestOptions, callback) {
return this.getRequest().put(route, parameters || {}, requestOptions, callback);
};
/**
* Get the request
*
* @return {Request} a request instance
*/
this.getRequest = function()
{
if(!this.request) {
this.request = new Request({debug: this.$debug, "proxy_host": this.$proxy_host, "proxy_port": this.$proxy_port, "protocol" : this.$use_http? "http": "https"});
}
return this.request;
};
/**
* Get the user API
*
* @return {UserApi} the user API
*/
this.getUserApi = function()
{
if(!this.$apis['user']) {
this.$apis['user'] = new (require("./github/UserApi").UserApi)(this);
}
return this.$apis['user'];
};
/**
* Get the organization API
*
* @return {OrganizationApi} the organization API
*/
this.getOrganizationApi = function()
{
if(!this.$apis['organization']) {
this.$apis['organization'] = new (require("./github/OrganizationApi").OrganizationApi)(this);
}
return this.$apis['organization'];
};
/**
* Get the repo API
*
* @return {RepoApi} the repo API
*/
this.getRepoApi = function()
{
if(!this.$apis['repo']) {
this.$apis['repo'] = new (require("./github/RepoApi").RepoApi)(this);
}
return this.$apis['repo'];
};
/**
* Get the issue API
*
* @return {IssueApi} the issue API
*/
this.getIssueApi = function()
{
if(!this.$apis['issue']) {
this.$apis['issue'] = new (require("./github/IssueApi").IssueApi)(this);
}
return this.$apis['issue'];
};
/**
* Get the pull API
*
* @return {PullApi} the pull API
*/
this.getPullApi = function()
{
if(!this.$apis['pull']) {
this.$apis['pull'] = new (require("./github/PullApi").PullApi)(this);
}
return this.$apis['pull'];
};
/**
* Get the object API
*
* @return {ObjectApi} the object API
*/
this.getObjectApi = function()
{
if(!this.$apis['object']) {
this.$apis['object'] = new (require("./github/ObjectApi").ObjectApi)(this);
}
return this.$apis['object'];
};
/**
* Get the commit API
*
* @return {CommitTest} the commit API
*/
this.getCommitApi = function()
{
if(!this.$apis['commit']) {
this.$apis['commit'] = new (require("./github/CommitApi").CommitApi)(this);
}
return this.$apis['commit'];
};
/**
* Get the Gist API
*
* @return {GistApi} the gist API
*/
this.getGistApi = function()
{
if(!this.$apis['gist']) {
this.$apis['gist'] = new (require('./github/GistApi').GistApi)(this);
}
return this.$apis['gist'];
};
}).call(GitHubApi.prototype);