promise refactoring++
[pharext/pharext.org] / app / Github / API / Hooks / UpdateHook.php
index 2d994b592ec88703feebc4b3b16aa5ff2c9d4afe..f03010770be115da3358b1d8e6ce0212b9ece5a7 100644 (file)
@@ -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];
        }
 }