Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 47 additions & 18 deletions src/CodeClimate/Bundle/TestReporterBundle/ApiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ class ApiClient
{
protected $apiHost;

/**
* Init the API client and set the hostname
*/
public function __construct()
{
$this->apiHost = "https://codeclimate.com";
Expand All @@ -15,41 +18,67 @@ public function __construct()

}

/**
* Send the given JSON as a request to the CodeClimate Server
*
* @param object $json JSON data
* @return \stdClass Response object with (code, message, headers & body properties)
*/
public function send($json)
{
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_URL => $this->apiHost.'/test_reports',
CURLOPT_USERAGENT => 'Code Climate (PHP Test Reporter v'.Version::VERSION.')',
CURLOPT_HTTPHEADER => array('Content-Type: application/json'),
CURLOPT_HEADER => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => (string)$json,
));

$response = new \stdClass;
if ($raw_response = curl_exec($ch)) {
$this->buildResponse($response, $raw_response);
$payload = (string)$json;
$options = array(
'http' => array(
'method' => 'POST',
'header' => array(
'Host: codeclimate.com',
'Content-Type: application/json',
'User-Agent: Code Climate (PHP Test Reporter v'.Version::VERSION.')',
'Content-Length: '.strlen($payload)
),
'content' => $payload,
"timeout" => 10
)
);
$context = stream_context_create($options);
$url = $this->apiHost.'/test_reports';

if ($stream = @fopen($url, 'r', false, $context)) {
$meta = stream_get_meta_data($stream);
$raw_response = implode("\r\n", $meta['wrapper_data'])."\r\n\r\n".stream_get_contents($stream);
fclose($stream);

while ($response->code == 100) { // Continue
$this->buildResponse($response, $response->body);
if (!empty($raw_response)) {
$response = $this->buildResponse($response, $raw_response);
}
} else {
$response->code = -curl_errno($ch);
$response->message = curl_error($ch);
$error = error_get_last();
preg_match('/([0-9]{3})/', $error['message'], $match);
$errorCode = (isset($match[1])) ? $match[1] : 500;

$response->code = $errorCode;
$response->message = $error['message'];
$response->headers = array();
$response->body = NULL;
}
curl_close($ch);

return $response;
}

/**
* Build the response object from the HTTP results
*
* @param \stdClass $response Standard object
* @param string $body HTTP response contents
* @return \stcClass Populated class object
*/
private function buildResponse($response, $body)
{
list($response->headers, $response->body) = explode("\r\n\r\n", $body, 2);
$response->headers = explode("\r\n", $response->headers);
list(, $response->code, $response->message) = explode(' ', $response->headers[0], 3);

return $response;
}
}