X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=app%2FGithub%2FAPI%2FHooks%2FUpdateHook.php;h=f03010770be115da3358b1d8e6ce0212b9ece5a7;hb=ee3977104c9ea0984c76f75f965c528bc4b3b64e;hp=2d994b592ec88703feebc4b3b16aa5ff2c9d4afe;hpb=2198c781a021d85ee845f2f4b2f5c322f73e6bd5;p=pharext%2Fpharext.org diff --git a/app/Github/API/Hooks/UpdateHook.php b/app/Github/API/Hooks/UpdateHook.php index 2d994b5..f030107 100644 --- a/app/Github/API/Hooks/UpdateHook.php +++ b/app/Github/API/Hooks/UpdateHook.php @@ -2,11 +2,16 @@ namespace app\Github\API\Hooks; -class UpdateHook extends \app\Github\API\Call +use app\Github\API\Call; +use app\Github\Exception\RequestException; +use http\Client\Request; +use http\Client\Response; + +class UpdateHook extends Call { - function enqueue(callable $callback) { + function request() { $url = $this->url->mod(uri_template("./repos/{+repo}/hooks{/id}", $this->args)); - $request = new \http\Client\Request("PATCH", $url, [ + $request = new Request("PATCH", $url, [ "Authorization" => "token ". $this->api->getToken(), "Accept" => $this->config->api->accept, "Content-Type" => "application/json", @@ -29,13 +34,13 @@ class UpdateHook extends \app\Github\API\Call ]; $request->getBody()->append(json_encode(compact("events", "config"))); - $this->api->getClient()->enqueue($request, function($response) use($callback) { - if ($response->getResponseCode() >= 400 || null === ($json = json_decode($response->getBody()))) { - throw new \app\Github\Exception\RequestException($response); - } - $this->result = [$json]; - $callback($json); - return true; - }); + return $request; + } + + function response(Response $response) { + if ($response->getResponseCode() >= 400 || null === ($json = json_decode($response->getBody()))) { + throw new RequestException($response); + } + return [$json]; } }