170 lines
4.8 KiB
PHP
170 lines
4.8 KiB
PHP
<?php
|
|
namespace Helpers;
|
|
|
|
class Curl
|
|
{
|
|
private $options;
|
|
public $port = 80;
|
|
public $H;
|
|
|
|
public function __construct($options = array())
|
|
{
|
|
if(count($options) == 0)
|
|
{
|
|
$this->initOptions();
|
|
}
|
|
}
|
|
|
|
public function initOptions($options = array())
|
|
{
|
|
$this->options = array_merge(array(
|
|
'debug' => false,
|
|
'http_port' => $this->port,
|
|
'user_agent' => 'Westdc DataService',
|
|
'timeout' => 20,
|
|
'curlopts' => null,
|
|
'verifyssl' => true,
|
|
), $options);
|
|
}
|
|
/**
|
|
* Send a request to the server, receive a response
|
|
*
|
|
* @param string $apiPath Request API path
|
|
* @param array $parameters Parameters
|
|
* @param string $httpMethod HTTP method to use
|
|
*
|
|
* @return string HTTP response
|
|
*/
|
|
public function request($url, array $parameters = array(), $httpMethod = 'GET', array $options = array())
|
|
{
|
|
$options = array_merge($this->options, $options);
|
|
|
|
$curlOptions = array();
|
|
$headers = array();
|
|
|
|
if ('POST' === $httpMethod) {
|
|
$curlOptions += array(
|
|
CURLOPT_POST => true,
|
|
);
|
|
}
|
|
elseif ('PUT' === $httpMethod) {
|
|
$curlOptions += array(
|
|
CURLOPT_POST => true, // This is so cURL doesn't strip CURLOPT_POSTFIELDS
|
|
CURLOPT_CUSTOMREQUEST => 'PUT',
|
|
);
|
|
}
|
|
elseif ('DELETE' === $httpMethod) {
|
|
$curlOptions += array(
|
|
CURLOPT_CUSTOMREQUEST => 'DELETE',
|
|
);
|
|
}
|
|
|
|
if (!empty($parameters))
|
|
{
|
|
if('GET' === $httpMethod)
|
|
{
|
|
$queryString = utf8_encode($this->buildQuery($parameters));
|
|
$url .= '?' . $queryString;
|
|
} elseif ('POST' === $httpMethod) {
|
|
$curlOptions += array(
|
|
CURLOPT_POSTFIELDS => is_array($parameters) ? http_build_query($parameters) : $parameters,
|
|
);
|
|
} else {
|
|
$curlOptions += array(
|
|
CURLOPT_POSTFIELDS => json_encode($parameters)
|
|
);
|
|
$headers[] = 'Content-Type: application/json';
|
|
}
|
|
} else {
|
|
$headers[] = 'Content-Length: 0';
|
|
}
|
|
|
|
if(!empty($this->H) && is_array($this->H) && count($this->H) > 0)
|
|
{
|
|
$headers = array_merge($headers,$this->H);
|
|
}
|
|
|
|
$this->debug('send '.$httpMethod.' request: '.$url);
|
|
|
|
$curlOptions += array(
|
|
CURLOPT_URL => $url,
|
|
CURLOPT_PORT => $options['http_port'],
|
|
CURLOPT_USERAGENT => $options['user_agent'],
|
|
CURLOPT_RETURNTRANSFER => true,
|
|
CURLOPT_TIMEOUT => $options['timeout'],
|
|
CURLOPT_HTTPHEADER => $headers,
|
|
CURLOPT_SSL_VERIFYPEER => $options['verifyssl'],
|
|
);
|
|
|
|
if($this->port === 443)
|
|
{
|
|
/*$curlOptions += array(
|
|
CURLOPT_SSLVERSION => 3,
|
|
CURLOPT_SSLCERT => "../application/module/Open/apache.pem",
|
|
CURLOPT_SSLKEY => "../application/module/Open/apache.key",
|
|
CURLOPT_CAINFO => "../application/module/Open/apache.pem"
|
|
);*/
|
|
}
|
|
|
|
if (ini_get('open_basedir') == '' && ini_get('safe_mode') != 'On') {
|
|
$curlOptions[CURLOPT_FOLLOWLOCATION] = true;
|
|
}
|
|
|
|
if (is_array($options['curlopts'])) {
|
|
$curlOptions += $options['curlopts'];
|
|
}
|
|
|
|
if (isset($options['proxy'])) {
|
|
$curlOptions[CURLOPT_PROXY] = $options['proxy'];
|
|
}
|
|
|
|
$response = $this->doCurlCall($curlOptions);
|
|
|
|
return $response;
|
|
}
|
|
|
|
/**
|
|
* Get a JSON response and transform it to a PHP array
|
|
*
|
|
* @return array the response
|
|
*/
|
|
protected function decodeResponse($response)
|
|
{
|
|
// "false" means a failed curl request
|
|
if (false === $response['response']) {
|
|
$this->debug(print_r($response, true));
|
|
return false;
|
|
}
|
|
return parent::decodeResponse($response);
|
|
}
|
|
|
|
protected function doCurlCall(array $curlOptions)
|
|
{
|
|
$curl = curl_init();
|
|
|
|
curl_setopt_array($curl, $curlOptions);
|
|
|
|
$response = curl_exec($curl);
|
|
$headers = curl_getinfo($curl);
|
|
$errorNumber = curl_errno($curl);
|
|
$errorMessage = curl_error($curl);
|
|
|
|
curl_close($curl);
|
|
|
|
return compact('response', 'headers', 'errorNumber', 'errorMessage');
|
|
}
|
|
|
|
protected function buildQuery($parameters)
|
|
{
|
|
return http_build_query($parameters, '', '&');
|
|
}
|
|
|
|
protected function debug($message)
|
|
{
|
|
if($this->options['debug'])
|
|
{
|
|
print $message."\n";
|
|
}
|
|
}
|
|
}
|