-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.power
More file actions
185 lines (168 loc) · 4.32 KB
/
code.power
File metadata and controls
185 lines (168 loc) · 4.32 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
/**
* List the hooks in a repository.
*
* @param string $owner The owner name.
* @param string $repo The repository name.
* @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 list(
string $owner,
string $repo,
int $page = 1,
int $limit = 10
): ?array
{
// Build the request path.
$path = "/repos/{$owner}/{$repo}/hooks";
// Set up 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)
);
}
/**
* Create a hook in a repository.
*
* @param string $owner The owner name.
* @param string $repo The repository name.
* @param string $type The hook type.
* @param array $config The hook configuration.
* @param bool $active The hook's active status (optional, default: false).
* @param array|null $events The events for the hook (optional).
* @param string $branchFilter The branch filter (optional).
*
* @return object|null
* @since 3.2.0
**/
public function create(
string $owner,
string $repo,
string $type,
array $config,
bool $active = false,
?array $events = null,
string $branchFilter = ''
): ?object
{
// Build the request path.
$path = "/repos/{$owner}/{$repo}/hooks";
// Set the hook data.
$data = new \stdClass();
$data->type = $type;
$data->config = (object) $config;
$data->active = $active;
if ($events !== null)
{
$data->events = $events;
}
if (!empty($branchFilter))
{
$data->branch_filter = $branchFilter;
}
// Send the request.
return $this->response->get(
$this->http->post(
$this->uri->get($path), json_encode($data)
), 201
);
}
/**
* Get a hook.
*
* @param string $owner The owner name.
* @param string $repo The repository name.
* @param int $hookId The hook ID.
*
* @return object|null
* @since 3.2.0
**/
public function get(
string $owner,
string $repo,
int $hookId
): ?object
{
// Build the request path.
$path = "/repos/{$owner}/{$repo}/hooks/{$hookId}";
// Get the URI for the request path.
$uri = $this->uri->get($path);
// Send the get request.
return $this->response->get(
$this->http->get($uri)
);
}
/**
* Edit a hook in a repository.
*
* @param string $owner The owner name.
* @param string $repo The repository name.
* @param int $id The hook ID.
* @param array $config The hook configuration.
* @param array $events The events to trigger the hook.
* @param bool $active Whether the hook is active.
*
* @return object|null
* @since 3.2.0
**/
public function edit(
string $owner,
string $repo,
int $id,
array $config,
array $events,
bool $active
): ?object
{
// Build the request path.
$path = "/repos/{$owner}/{$repo}/hooks/{$id}";
// Set the hook data.
$data = new \stdClass();
$data->config = $config;
$data->events = $events;
$data->active = $active;
// Send the PATCH request.
return $this->response->get(
$this->http->patch(
$this->uri->get($path),
json_encode($data)
)
);
}
/**
* Test a push webhook.
*
* @param string $owner The owner name.
* @param string $repo The repository name.
* @param int $hookId The hook ID.
* @param string $ref The name of the commit/branch/tag (optional).
*
* @return string
* @since 3.2.0
**/
public function test(
string $owner,
string $repo,
int $hookId,
string $ref = ''
): string
{
// Build the request path.
$path = "/repos/{$owner}/{$repo}/hooks/{$hookId}/tests";
// Get the URI for the request path.
$uri = $this->uri->get($path);
if (!empty($ref))
{
$uri->setVar('ref', $ref);
}
// Send the POST request.
return $this->response->get(
$this->http->post($uri), 204, 'success'
);
}