-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.power
More file actions
308 lines (277 loc) · 7.22 KB
/
code.power
File metadata and controls
308 lines (277 loc) · 7.22 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
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
/**
* Get the authenticated user.
*
* @return object|null
* @since 3.2.0
**/
public function authenticate(): ?object
{
// Build the request path.
$path = '/user';
// Send the get request.
return $this->response->get(
$this->http->get(
$this->uri->get($path)
)
);
}
/**
* Search for users.
*
* @param string $keyword The search keyword.
* @param int|null $uid Optional. ID of the user to search for.
* @param int $page Page number of results to return (1-based).
* @param int $limit Page size of results.
*
* @return object|null
* @since 3.2.0
**/
public function search(
string $keyword,
?int $uid = null,
int $page = 1,
int $limit = 10
): ?object
{
// Build the request path.
$path = '/users/search';
// Build the URI with query parameters.
$uri = $this->uri->get($path);
$uri->setVar('q', $keyword);
if ($uid !== null)
{
$uri->setVar('uid', $uid);
}
$uri->setVar('page', $page);
$uri->setVar('limit', $limit);
// Send the get request.
return $this->response->get(
$this->http->get($uri)
);
}
/**
* Get a user by their username.
*
* @param string $username The username of the user to retrieve.
*
* @return object|null
* @since 3.2.0
**/
public function get(string $username): ?object
{
// Build the request path.
$path = "/users/{$username}";
// Send the get request.
return $this->response->get(
$this->http->get(
$this->uri->get($path)
)
);
}
/**
* List the given user's followers.
*
* @param string $userName The username of the user to retrieve followers for.
* @param int $page Page number of results to return (1-based).
* @param int $limit Page size of results.
*
* @return array|null
* @since 3.2.0
**/
public function followers(
string $userName,
int $page = 1,
int $limit = 10
): ?array
{
// Build the request path.
$path = "/users/{$userName}/followers";
// Build the URI with query parameters.
$uri = $this->uri->get($path);
$uri->setVar('page', $page);
$uri->setVar('limit', $limit);
// Send the get request.
return $this->response->get(
$this->http->get($uri)
);
}
/**
* List the users that the given user is following.
*
* @param string $userName The username of the user to retrieve the following users for.
* @param int $page Page number of results to return (1-based).
* @param int $limit Page size of results.
*
* @return array|null
* @since 3.2.0
**/
public function following(
string $userName,
int $page = 1,
int $limit = 10
): ?array
{
// Build the request path.
$path = "/users/{$userName}/following";
// Build the URI with query parameters.
$uri = $this->uri->get($path);
$uri->setVar('page', $page);
$uri->setVar('limit', $limit);
// Send the get request.
return $this->response->get(
$this->http->get($uri)
);
}
/**
* Check if one user is following another user.
*
* @param string $username The username of the user to check.
* @param string $target The username of the target user.
*
* @return string
* @since 3.2.0
**/
public function check(string $username, string $target): string
{
// Build the request path.
$path = "/users/{$username}/following/{$target}";
// Send the get request.
return $this->response->get(
$this->http->get(
$this->uri->get($path)
), 204, 'success'
);
}
/**
* List the given user's GPG keys.
*
* @param string $userName The username of the user to retrieve GPG keys for.
* @param int $page The page number of results to return (1-based).
* @param int $limit The page size of results.
*
* @return array|null
* @since 3.2.0
**/
public function gpg(
string $userName,
int $page = 1,
int $limit = 10
): ?array
{
// Build the request path.
$path = "/users/{$userName}/gpg_keys";
// Build the URI with query parameters.
$uri = $this->uri->get($path);
$uri->setVar('page', $page);
$uri->setVar('limit', $limit);
// Send the get request.
return $this->response->get(
$this->http->get($uri)
);
}
/**
* Get a user's heatmap.
*
* @param string $username The username of the user to retrieve heatmap for.
*
* @return array|null
* @since 3.2.0
**/
public function heatmap(string $username): ?array
{
// Build the request path.
$path = "/users/{$username}/heatmap";
// Send the get request.
return $this->response->get(
$this->http->get(
$this->uri->get($path)
)
);
}
/**
* List the given user's public keys.
*
* @param string $userName The username of the user to retrieve public keys for.
* @param string|null $fingerprint Optional. The fingerprint of the key.
* @param int $page The page number of results to return (1-based).
* @param int $limit The page size of results.
*
* @return array|null
* @since 3.2.0
**/
public function keys(
string $userName,
?string $fingerprint = null,
int $page = 1,
int $limit = 10
): ?array
{
// Build the request path.
$path = "/users/{$userName}/keys";
// Build the URI with query parameters.
$uri = $this->uri->get($path);
$uri->setVar('page', $page);
$uri->setVar('limit', $limit);
if ($fingerprint !== null)
{
$uri->setVar('fingerprint', $fingerprint);
}
// Send the get request.
return $this->response->get(
$this->http->get($uri)
);
}
/**
* List the repos that the given user has starred.
*
* @param string $userName The username of the user to retrieve starred repos for.
* @param int $page The page number of results to return (1-based).
* @param int $limit The page size of results.
*
* @return array|null
* @since 3.2.0
**/
public function repos(
string $userName,
int $page = 1,
int $limit = 10
): ?array
{
// Build the request path.
$path = "/users/{$userName}/starred";
// Build the URI with query parameters.
$uri = $this->uri->get($path);
$uri->setVar('page', $page);
$uri->setVar('limit', $limit);
// Send the get request.
return $this->response->get(
$this->http->get($uri)
);
}
/**
* List the repositories watched by a user.
*
* @param string $userName The username of the user to retrieve watched repositories for.
* @param int $page The page number of results to return (1-based).
* @param int $limit The page size of results.
*
* @return array|null
* @since 3.2.0
**/
public function watched(
string $userName,
int $page = 1,
int $limit = 10
): ?array
{
// Build the request path.
$path = "/users/{$userName}/subscriptions";
// Build the URI with query parameters.
$uri = $this->uri->get($path);
$uri->setVar('page', $page);
$uri->setVar('limit', $limit);
// Send the get request.
return $this->response->get(
$this->http->get($uri)
);
}