forked from octokit/octokit.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserApi.js
241 lines (220 loc) · 6.36 KB
/
UserApi.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
/**
* 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]>
*/
"use strict";
var util = require("util");
var AbstractApi = require("./AbstractApi").AbstractApi;
var UserApi = exports.UserApi = function(api) {
this.$api = api;
};
util.inherits(UserApi, AbstractApi);
(function() {
/**
* Search users by username
* http://develop.github.com/p/users.html#searching_for_users
*
* @param {String} username the username to search
*/
this.search = function(username, callback)
{
this.$api.get(
'user/search/' + encodeURI(username),
null, null,
this.$createListener(callback, "users")
);
};
/**
* Get extended information about a user by its username
* http://develop.github.com/p/users.html#getting_user_information
*
* @param {String} username the username to show
*/
this.show = function(username, callback)
{
if (!callback) {
callback = username;
this.$api.get(
'user/show/',
null, null,
this.$createListener(callback, "user")
);
}
else {
this.$api.get(
'user/show/' + encodeURI(username),
null, null,
this.$createListener(callback, "user")
);
}
};
/**
* Request the users that a specific user is following
* http://develop.github.com/p/users.html#following_network
*
* @param {String} username the username
*/
this.getFollowing = function(username, callback)
{
this.$api.get(
'user/show/' + encodeURI(username) + "/following",
null, null,
this.$createListener(callback, "users")
);
};
/**
* Request the users following a specific user
* http://develop.github.com/p/users.html#following_network
*
* @param {String} username the username
*/
this.getFollowers = function(username, callback)
{
this.$api.get(
'user/show/' + encodeURI(username) + '/followers',
null, null,
this.$createListener(callback, "users")
);
},
/**
* Update user informations. Requires authentication.
* http://develop.github.com/p/users.html#authenticated_user_management
*
* @param {String} username the username to update
* @param {Object} data key, value user attributes to update.
* key can be name, email, blog, company or location
*/
this.update = function(username, data, callback)
{
var parameters = {};
for (var key in data) {
parameters["values[" + key + "]"] = data[key];
}
this.$api.post(
'user/show/' + encodeURI(username),
parameters, null,
this.$createListener(callback)
);
};
/**
* Make the authenticated user follow the specified user. Requires authentication.
* http://develop.github.com/p/users.html#following_network
*
* @param {String} username the username to follow
*/
this.follow = function(username, callback)
{
this.$api.post(
'user/follow/' + encodeURI(username),
null, null,
this.$createListener(callback)
);
},
/**
* Make the authenticated user unfollow the specified user. Requires authentication.
* http://develop.github.com/p/users.html#following_network
*
* @param {String} username the username to unfollow
*/
this.unFollow = function(username, callback)
{
this.$api.post(
'user/unfollow/' + encodeURI(username),
null, null,
this.$createListener(callback)
);
},
/**
* Request the repos that a specific user is watching
* http://develop.github.com/p/users.html#watched_repos
*
* @param {String} username the username
*/
this.getWatchedRepos = function(username, callback)
{
this.$api.get(
'repos/watched/' + encodeURI(username),
null, null,
this.$createListener(callback, "repositories")
);
},
/**
* Get the authenticated user emails. Requires authentication.
*/
this.getEmails = function(callback)
{
this.$api.get(
"user/emails",
null, null,
this.$createListener(callback, "emails")
);
},
/**
* Add an email to the authenticated user. Requires authentication.
*/
this.addEmail = function(email, callback)
{
this.$api.post(
'user/email/add',
{email: email}, null,
this.$createListener(callback, "emails")
);
},
/**
* Remove an email from the authenticated user. Requires authentication.
*/
this.removeEmail = function(email, callback)
{
this.$api.post(
'user/email/remove',
{email: email}, null,
this.$createListener(callback, "emails")
);
},
/**
* Get a list with deploy keys that are set for the authenticated user. Requires authentication.
*/
this.getKeys = function(callback)
{
this.$api.get(
'user/keys',
null, null,
this.$createListener(callback, "public_keys")
);
},
/**
* Add a public key for the authenticated user. Requires authentication.
*
* @param {String} title title of the key
* @param {String} key public key data
*/
this.addKey = function(title, key, callback)
{
var parameters = {
title: title,
key: key
};
this.$api.post(
'user/key/add',
parameters, null,
this.$createListener(callback, "public_keys")
);
},
/**
* Remove a public key from the authenticated user. Requires authentication.
*
* @param {String} id id of the key to remove
*/
this.removeKey = function(id, callback)
{
this.$api.post(
'user/key/remove',
{id: id}, null,
this.$createListener(callback, "public_keys")
);
};
}).call(UserApi.prototype);