X-Git-Url: https://git.cweiske.de/shpub.git/blobdiff_plain/9f81b10b061382886a9c7e21ca941c11a6e4bee1..b2351eea120bb8f6293aae113e77a3e3edd46687:/src/shpub/Request.php diff --git a/src/shpub/Request.php b/src/shpub/Request.php index 68db98d..3d7221d 100644 --- a/src/shpub/Request.php +++ b/src/shpub/Request.php @@ -56,7 +56,7 @@ class Request $data['url'] = $this->url; } if ($this->type !== null) { - $data['type'] = 'h-' . $this->type; + $data['type'] = array('h-' . $this->type); } if (count($this->properties)) { $data['properties'] = $this->properties; @@ -96,15 +96,37 @@ class Request $res = $this->req->send(); if (intval($res->getStatus() / 100) != 2) { - Log::err( - 'Server returned an error status code ' . $res->getStatus() - ); - Log::err($res->getBody()); - exit(11); + $this->displayErrorResponse($res); } return $res; } + protected function displayErrorResponse($res) + { + Log::err( + 'Server returned an error status code ' . $res->getStatus() + ); + + $shown = false; + if ($res->getHeader('content-type') == 'application/json') { + $errData = json_decode($res->getBody()); + if (!isset($errData->error)) { + Log::err('Error response does not contain "error" property'); + } else if (isset($errData->error_description)) { + Log::err($errData->error . ': ' . $errData->error_description); + $shown = true; + } else { + Log::err($errData->error); + $shown = true; + } + } + + if (!$shown) { + Log::err($res->getBody()); + } + exit(11); + } + public function setAction($action) { $this->action = $action; @@ -121,11 +143,21 @@ class Request } /** + * Add file upload + * * @param string $fieldName name of file-upload field * @param array $fileNames list of local file paths + * + * @return void */ public function addUpload($fieldName, $fileNames) { + if ($this->directUpload && $this->sendAsJson) { + throw new \Exception( + 'Cannot do direct upload with JSON requests' + ); + } + if ($this->host->endpoints->media === null || $this->directUpload ) { @@ -152,6 +184,10 @@ class Request } /** + * Execute the file upload + * + * @param string $fileName File path + * * @return string URL at media endpoint */ public function uploadToMediaEndpoint($fileName) @@ -189,7 +225,7 @@ class Request { if ($isHtml) { $this->addProperty( - 'content', ['html' => $text] + 'content', [['html' => $text]] ); } else { $this->addProperty('content', $text); @@ -202,6 +238,8 @@ class Request * * @param string $key Parameter name * @param string|array $values One or multiple values + * + * @return void */ public function addProperty($key, $values) {