-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGithubUserFollowers.php
68 lines (57 loc) · 1.33 KB
/
GithubUserFollowers.php
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
<?php
require_once('Github.php');
class GithubUserFollowers extends Github {
/**
* List followers of a user
*
* @param string $username
*/
public function listAll($username) {
return $this->request('/users/'.$username.'/followers');
}
/**
* List followers of the current user
*/
public function listOwn() {
return $this->request('/user/followers');
}
/**
* List users following another user
*
* @param string $username
*/
public function listFollowing($username) {
return $this->request('/users/'.$username.'/following');
}
/**
* List who the authenticated user is following
*/
public function listOwnFollowing() {
return $this->request('/user/following');
}
/**
* Check if you are following a user
*
* @param string $username
*/
public function isFollowing($username) {
return ($this->request('/user/following/'.$username, 'GET', array(), true) == 204) ? true : false;
}
/**
* Follow a user
*
* @param string $username
*/
public function follow($username) {
return ($this->request('/user/following/'.$username, 'PUT', array(), true) == 204) ? true : false;
}
/**
* Unfollow a user
*
* @param string $username
*/
public function unfollow($username) {
return ($this->request('/user/following/'.$username, 'DELETE', array(), true) == 204) ? true : false;
}
}
?>