prepare url
[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
19 if (!empty($this->args["conf"]["tag"])) {
20 $events[] = "create";
21 }
22 if (!empty($this->args["conf"]["release"])) {
23 $events[] = "release";
24 }
25
26 $request->getBody()->append(json_encode([
27 "name" => "web",
28 "events" => $events,
29 "config" => [
30 "url" => $this->config->hook->url,
31 "content_type" => $this->config->hook->content_type,
32 "insecure_ssl" => $this->config->hook->insecure_ssl,
33 "secret" => $this->config->client->secret, // FIXME: bad idea?
34 ]
35 ]));
36 return $request;
37 }
38
39 function getException($message, $code, $previous = null) {
40 return new WebhookCreateFailed($message, $code, $previous);
41 }
42 }