webhook create&delete
[pharext/pharext.org] / app / Github / Create / Webhook.php
1 <?php
2
3 namespace app\Github\Create;
4
5 use app\Github\Create;
6 use app\Github\Exception\WebhookCreateFailed;
7 use http\Client\Request;
8
9 class Webhook extends Create
10 {
11 function getRequest() {
12 $url = $this->url->mod("./repos/". $this->args["repo"] ."/hooks");
13 $request = new Request("POST", $url, [
14 "Accept" => "application/vnd.github.v3+json",
15 "Content-Type" => "application/json",
16 "Authorization" => "token " . $this->api->getToken(),
17 ]);
18 $request->getBody()->append(json_encode([
19 "name" => "web",
20 "config" => [
21 "url" => $this->config->hook->url,
22 "content_type" => $this->config->hook->content_type,
23 "secret" => $this->config->client->secret, // FIXME: bad idea?
24 "insecure_ssl" => false,
25 ]
26 ]));
27 return $request;
28 }
29
30 function getException($message, $code, $previous = null) {
31 return new WebhookCreateFailed($message, $code, $previous);
32 }
33 }