-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGithubIssues.php
83 lines (74 loc) · 2.24 KB
/
GithubIssues.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
<?php
require_once('Github.php');
class GithubIssues extends Github {
/**
* List your issues
*/
public function listOwn() {
return $this->request('/issues');
}
/**
*List issues for a repository
*
* @param string $username
* @param string $repository
*/
public function listAll($username, $repository) {
return $this->request('/repos/'.$username.'/'.$repository.'/issues');
}
/**
* Get a single issue
*
* @param string $username
* @param string $repository
* @param int $number Issue Number
*/
public function get($username, $repository, $number) {
return $this->request('/repos/'.$username.'/'.$repository.'/issues/'.$number);
}
/**
* Create an issue
*
* @param string $username
* @param string $repository
* @param string $title Issue title
* @param string $body Issue Body. Default: false
* @param string $assignee Login for the user that this issue should be assigned to. Default: false
* @param int $milestone Milestone ID. Default: false
* @param array $labels String array with labels. Default: false
*
*/
public function create($username, $repository, $title, $body = false, $assignee = false, $milestone = false, $labels = false) {
return $this->request('/repos/'.$username.'/'.$repository.'/issues', 'POST', array(
'title' => $title,
'body' => $body,
'assignee' => $assignee,
'milestone' => $milestone,
'labels' => $labels,
));
}
/**
* Edit an issue
*
* @param string $username
* @param string $repository
* @param int $number Issue number
* @param string $title Issue title
* @param string $body Issue Body. Default: false
* @param string $assignee Login for the user that this issue should be assigned to. Default: false
* @param int $milestone Milestone ID. Default: false
* @param array $labels String array with labels. Default: false
*
*/
public function edit($username, $repository, $number, $title = false, $body = false, $assignee = false, $state = false, $milestone = false, $labels = false) {
return $this->request('/repos/'.$username.'/'.$repository.'/issues/'.$number, 'PATCH', array(
'title' => $title,
'body' => $body,
'assignee' => $assignee,
'state' => $state,
'milestone' => $milestone,
'labels' => $labels,
));
}
}
?>