promise refactoring++
[pharext/pharext.org] / app / Github / API / Releases / CreateReleaseAsset.php
index 88b5a493bb8a1a4482b680a3a55b23902d8875ee..ce1ad360085e8b53c0fc833ebe2521fc5b248045 100644 (file)
@@ -5,24 +5,25 @@ namespace app\Github\API\Releases;
 use app\Github\API\Call;
 use app\Github\Exception\RequestException;
 use http\Client\Request;
+use http\Client\Response;
 use http\Message\Body;
 
 class CreateReleaseAsset extends Call
 {
-       function enqueue(callable $callback) {
+       function request() {
                $body = new Body(fopen($this->args["asset"], "rb"));
                $request = new Request("POST", $this->args["url"], [
                        "Authorization" => "token ". $this->api->getToken(),
                        "Accept" => $this->config->api->accept,
                        "Content-Type" => $this->args["type"],
                ], $body);
-               $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];
        }
 }