-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGithubOrgTeams.php
151 lines (133 loc) · 3.46 KB
/
GithubOrgTeams.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
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
<?php
require_once('Github.php');
class GithubOrgTeams extends Github {
const PERMISSION_PULL = 'pull';
const PERMISSION_PUSH = 'push';
const PERMISSION_ADMIN = 'admin';
/**
* List teams
*
* @param string $organization
*/
public function listOrg($organization) {
return $this->request('/orgs/'.$organization.'/teams');
}
/**
* Get team
*
* @param int $id Team ID
*/
public function get($id) {
return $this->request('/teams/'.$id);
}
/**
* Create team
*
* @param string $organization
* @param string $name
* @param array $repo_names
* @param string $permission GithubOrgTeams::PERMISSION_PULL, GithubOrgTeams::PERMISSION_PUSH or GithubOrgTeams::PERMISSION_ADMIN
*/
public function create($organization, $name, $repo_names = false, $permission = false) {
return $this->request('/orgs/'.$organization.'/teams', 'POST', array(
'name' => $name,
'repo_names' => $repo_names,
'permission' => $permission,
));
}
/**
* Edit team
*
* @param int $id Team ID
* @param string $name
* @param string $permission GithubOrgTeams::PERMISSION_PULL, GithubOrgTeams::PERMISSION_PUSH or GithubOrgTeams::PERMISSION_ADMIN
*/
public function edit($id, $name, $permission = false) {
return $this->request('/teams/'.$id, 'PATCH', array(
'name' => $name,
'permission' => $permission,
));
}
/**
* Delete team
*
* @param int $id Team ID
*/
public function delete($id) {
return ($this->request('/teams/'.$id, 'DELETE', array(), true) == 204) ? true : false;
}
/**
* List team members
*
* @param int $id Team ID
*/
public function members($id) {
return $this->request('/teams/'.$id.'/members');
}
/**
* Check if the user is a team member
*
* @param int $id Team ID
* @param string $username
*/
public function isMember($id, $username) {
return ($this->request('/teams/'.$id.'/members/'.$username, 'GET', array(), true) == 204) ? true : false;
}
/**
* Add team member
*
* @param int $id Team ID
* @param string $username
*/
public function addMember($id, $username) {
return ($this->request('/teams/'.$id.'/members/'.$username, 'PUT', array(), true) == 204) ? true : false;
}
/**
* Remove team member
*
* @param int $id Team ID
* @param string $username
*/
public function removeMember($id, $username) {
return ($this->request('/teams/'.$id.'/members/'.$username, 'DELETE', array(), true) == 204) ? true : false;
}
/**
* List team repos
*
* @param int $id Team ID
*/
public function listRepositories($id) {
return $this->request('/teams/'.$id.'/repos');
}
/**
* Is team repo
*
* @param int $id Team ID
* @param string $username
* @param string $repository
*/
public function isRepository($id, $username, $repository) {
return ($this->request('/teams/'.$id.'/repos/'.$username.'/'.$repository, 'GET', array(), true) == 204) ? true : false;
}
/**
* Add team repo
*
* @param int $id Team ID
* @param string $username
* @param string $repository
*/
public function addRepository($id, $username, $repository) {
return ($this->request('/teams/'.$id.'/repos/'.$username.'/'.$repository, 'PUT', array(), true) == 204) ? true : false;
}
/**
* Remove team repo
*
* @param int $id Team ID
* @param string $username
* @param string $repository
*/
public function removeRepository($id, $username, $repository) {
return ($this->request('/teams/'.$id.'/repos/'.$username.'/'.$repository, 'DELETE', array(), true) == 204) ? true : false;
}
}
?>