-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGithubIssueLabels.php
140 lines (124 loc) · 3.44 KB
/
GithubIssueLabels.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
<?php
require_once('Github.php');
class GithubIssueLabels extends Github {
/**
* List all labels for a repository
*
* @param string $username
* @param string $repository
*/
public function listRepository($username, $repository) {
return $this->request('/repos/'.$username.'/'.$repository.'/labels');
}
/**
* List labels on an issue
*
* @param string $username
* @param string $repository
* @param int $issueNr
*/
public function listIssue($username, $repository, $issueNr) {
return $this->request('/repos/'.$username.'/'.$repository.'/issues/'.$issueNr.'/labels');
}
/**
* Get a single label
*
* @param string $username
* @param string $repository
* @param string $name
*/
public function get($username, $repository, $name) {
return $this->request('/repos/'.$username.'/'.$repository.'/labels/'.$name);
}
/**
* Create a label
*
* @param string $username
* @param string $repository
* @param string $name
* @param string $color i.e. 'FFFFFF', 'ABCDEF'
*/
public function create($username, $repository, $name, $color) {
return $this->request('/repos/'.$username.'/'.$repository.'/labels', 'POST', array(
'name' => $name,
'color' => $color,
));
}
/**
* Update a label
*
* @param string $username
* @param string $repository
* @param string $name
* @param string $color i.e. 'FFFFFF', 'ABCDEF'
*/
public function edit($username, $repository, $name, $color) {
return $this->request('/repos/'.$username.'/'.$repository.'/labels', 'POST', array(
'name' => $name,
'color' => $color,
));
}
/**
* Delete a label
*
* @param string $username
* @param string $repository
* @param string $name
*/
public function delete($username, $repository, $name) {
return ($this->request('/repos/'.$username.'/'.$repository.'/labels/'.$name, 'DELETE', array(), true) == 204) ? true : false;
}
/**
* Add labels to an issue
*
* @param string $username
* @param string $repository
* @param int $issueNr
* @param array $labels
*/
public function add($username, $repository, $issueNr, $labels) {
return $this->request('/repos/'.$username.'/'.$repository.'/issues/'.$issueNr.'/labels', 'POST', $labels);
}
/**
* Remove a label from an issue
*
* @param string $username
* @param string $repository
* @param int $issueNr
* @param array $name
*/
public function remove($username, $repository, $issueNr, $name) {
return $this->request('/repos/'.$username.'/'.$repository.'/issues/'.$issueNr.'/labels/'.$name, 'DELETE');
}
/**
* Replace all labels for an issue
*
* @param string $username
* @param string $repository
* @param int $issueNr
* @param array $labels
*/
public function replace($username, $repository, $issueNr, $labels) {
return $this->request('/repos/'.$username.'/'.$repository.'/issues/'.$issueNr.'/labels', 'PUT', $labels);
}
/**
* Remove all labels from an issue
*
* @param string $username
* @param string $repository
* @param int $issueNr
*/
public function removeAll($username, $repository, $issueNr) {
return ($this->request('/repos/'.$username.'/'.$repository.'/issues/'.$issueNr.'/labels', 'DELETE', array(), true) == 204) ? true : false;
}
/**
* List labels on an issue
*
* @param string $username
* @param string $repository
*/
public function listMilestone($username, $repository, $issueNr) {
return $this->request('/repos/'.$username.'/'.$repository.'/milestones/'.$issueNr.'/labels');
}
}
?>