refactored 80%
[pharext/pharext.org] / app / Github / API / Hooks / ListHooks.php
index 3d8237e992d87b9d110211221428f3ba0015acdf..a44734f12da807d0298d36e1941f7e39090371a2 100644 (file)
@@ -6,24 +6,26 @@ use app\Github\API\Call;
 use app\Github\Exception\RequestException;
 use app\Github\Links;
 use http\Client\Request;
+use http\Client\Response;
 
 class ListHooks extends Call
 {
-       function enqueue(callable $callback) {
+       function request() {
                $url = $this->url->mod(uri_template("./repos/{+repo}/hooks{?page,per_page}", $this->args));
                $request = new Request("GET", $url, [
                        "Authorization" => "token ". $this->api->getToken(),
                        "Accept" => $this->config->api->accept,
                ]);
-               $this->api->getClient()->enqueue($request, function($response) use($callback) {
-                       if ($response->getResponseCode() >= 400 || null === ($json = json_decode($response->getBody()))) {
-                               throw new RequestException($response);
-                       }
-                       $links = new Links($response->getHeader("Link"));
-                       $this->result = [$json, $links];
-                       $this->saveToCache($this->result);
-                       $callback($json, $links);
-                       return true;
-               });
+               return $request;
+       }
+       
+       function response(Response $response) {
+               if ($response->getResponseCode() >= 400 || null === ($json = json_decode($response->getBody()))) {
+                       throw new RequestException($response);
+               }
+               $links = new Links($response->getHeader("Link"));
+               $result = [$json, $links];
+               $this->saveToCache($result);
+               return $result;
        }
 }