function request($method, $url, $body = NULL, $header = array()) { if (is_array($body)) { if (!empty($body)) { $body = json_encode($body); array_push($header, "Content-Type: application/json"); } else { $body = NULL; } } $request = curl_init(); curl_setopt_array($request, $this->options); $url = strtolower(substr($url, 0, 6)) == "https:" ? $url : self::API_ENDPOINT . $url; curl_setopt($request, CURLOPT_URL, $url); curl_setopt($request, CURLOPT_CUSTOMREQUEST, strtoupper($method)); if (count($header) > 0) { curl_setopt($request, CURLOPT_HTTPHEADER, $header); } if ($body) { curl_setopt($request, CURLOPT_POSTFIELDS, $body); } $response = curl_exec($request); if (is_string($response)) { $status = curl_getinfo($request, CURLINFO_HTTP_CODE); $headerSize = curl_getinfo($request, CURLINFO_HEADER_SIZE); curl_close($request); $headers = self::parseHeaders(substr($response, 0, $headerSize)); $body = substr($response, $headerSize); if (isset($headers["compression-count"])) { Tinify::setCompressionCount(intval($headers["compression-count"])); } $isJson = false; if (isset($headers["content-type"])) { /* Parse JSON response bodies. */ list($contentType) = explode(";", $headers["content-type"], 2); if (strtolower(trim($contentType)) == "application/json") { $isJson = true; } } /* 1xx and 3xx are unexpected and will be treated as error. */ $isError = $status <= 199 || $status >= 300; if ($isJson || $isError) { /* Parse JSON bodies, always interpret errors as JSON. */ $body = json_decode($body); if (!$body) { $message = sprintf("Error while parsing response: %s (#%d)", PHP_VERSION_ID >= 50500 ? json_last_error_msg() : "Error", json_last_error()); throw Exception::create($message, "ParseError", $status); } } if ($isError) { throw Exception::create($body->message, $body->error, $status); } return (object) array("body" => $body, "headers" => $headers); } else { $message = sprintf("%s (#%d)", curl_error($request), curl_errno($request)); curl_close($request); throw new ConnectionException("Error while connecting: " . $message); } }
function validate() { try { Tinify::getClient()->request("post", "/shrink"); } catch (ClientException $e) { return true; } }
function request($method, $url, $body = NULL, $header = array()) { if (is_array($body)) { if (!empty($body)) { $body = json_encode($body); array_push($header, "Content-Type: application/json"); } else { $body = NULL; } } $request = curl_init(); curl_setopt_array($request, $this->options); $url = strtolower(substr($url, 0, 6)) == "https:" ? $url : Client::API_ENDPOINT . $url; curl_setopt($request, CURLOPT_URL, $url); curl_setopt($request, CURLOPT_HTTPHEADER, $header); curl_setopt($request, CURLOPT_CUSTOMREQUEST, strtoupper($method)); if ($body) { curl_setopt($request, CURLOPT_POSTFIELDS, $body); } $response = curl_exec($request); if (is_string($response)) { $status = curl_getinfo($request, CURLINFO_HTTP_CODE); $headerSize = curl_getinfo($request, CURLINFO_HEADER_SIZE); curl_close($request); $headers = self::parseHeaders(substr($response, 0, $headerSize)); $body = substr($response, $headerSize); if (isset($headers["compression-count"])) { Tinify::setCompressionCount(intval($headers["compression-count"])); } if ($status >= 200 && $status <= 299) { return array("body" => $body, "headers" => $headers); } $details = json_decode($body); if (!$details) { $message = sprintf("Error while parsing response: %s (#%d)", PHP_VERSION_ID >= 50500 ? json_last_error_msg() : "Error", json_last_error()); $details = (object) array("message" => $message, "error" => "ParseError"); } throw Exception::create($details->message, $details->error, $status); } else { $message = sprintf("%s (#%d)", curl_error($request), curl_errno($request)); curl_close($request); throw new ConnectionException("Error while connecting: " . $message); } }
public function result() { $response = Tinify::getClient()->request("get", $this->url, $this->commands); return new Result($response["headers"], $response["body"]); }
function validate() { try { Tinify::getClient()->request("post", "/shrink"); } catch (AccountException $err) { if ($err->status == 429) { return true; } throw $err; } catch (ClientException $err) { return true; } }