X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=app%2FGithub%2FAPI%2FTags%2FListTags.php;h=a39b6ba320f6158085f9ea0d7a9f7572229da4f2;hb=2198c781a021d85ee845f2f4b2f5c322f73e6bd5;hp=fd60a6708aa94d50079c3cd87b48bfe5ddc0b778;hpb=c05a8f703d5a097355b5813154c264c87e3f71fe;p=pharext%2Fpharext.org diff --git a/app/Github/API/Tags/ListTags.php b/app/Github/API/Tags/ListTags.php index fd60a67..a39b6ba 100644 --- a/app/Github/API/Tags/ListTags.php +++ b/app/Github/API/Tags/ListTags.php @@ -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 ListTags extends Call { - function enqueue(callable $callback) { + function request() { $url = $this->url->mod(uri_template("./repos/{+repo}/tags{?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; } }