promise refactoring++
[pharext/pharext.org] / app / Github / API / Releases / PublishRelease.php
index 39c5169ed9eebfa5f1b9ba5108e74335b175578e..d4803762a3b891006f6bf34d8f029d4108258b11 100644 (file)
@@ -5,10 +5,11 @@ namespace app\Github\API\Releases;
 use app\Github\API\Call;
 use app\Github\Exception\RequestException;
 use http\Client\Request;
+use http\Client\Response;
 
 class PublishRelease extends Call
 {
-       function enqueue(callable $callback) {
+       function request() {
                $url = $this->url->mod(uri_template("./repos/{+repo}/releases{/id}", $this->args));
                $request = new Request("PATCH", $url, [
                        "Authorization" => "token ". $this->api->getToken(),
@@ -19,13 +20,13 @@ class PublishRelease extends Call
                        "draft" => false,
                        "tag_name" => $this->args["tag"],
                ]));
-               $this->api->getClient()->enqueue($request, function($response) use($callback) {
-                       if ($response->getResponseCode() >= 400 || null === ($json = json_decode($response->getBody()))) {
-                               throw new 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];
        }
 }
\ No newline at end of file