mirror of https://github.com/helloxz/imgurl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
4.1 KiB
109 lines
4.1 KiB
7 years ago
|
<?php
|
||
|
/**
|
||
|
* Http Client use curl.
|
||
|
*/
|
||
|
namespace QcloudImage;
|
||
|
|
||
|
function my_curl_reset($handler) {
|
||
|
curl_setopt($handler, CURLOPT_URL, '');
|
||
|
curl_setopt($handler, CURLOPT_HTTPHEADER, array());
|
||
|
curl_setopt($handler, CURLOPT_POSTFIELDS, array());
|
||
|
curl_setopt($handler, CURLOPT_TIMEOUT, 0);
|
||
|
curl_setopt($handler, CURLOPT_SSL_VERIFYPEER, false);
|
||
|
curl_setopt($handler, CURLOPT_SSL_VERIFYHOST, 0);
|
||
|
}
|
||
|
|
||
|
class HttpClient {
|
||
|
|
||
|
public function __destory() {
|
||
|
if ($this->curlHandler) {
|
||
|
curl_close($this->curlHandler);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* send http request
|
||
|
* @param array $request http请求信息
|
||
|
* url : 请求的url地址
|
||
|
* method : 请求方法,'get', 'post', 'put', 'delete', 'head'
|
||
|
* data : 请求数据,如有设置,则method为post
|
||
|
* header : 需要设置的http头部
|
||
|
* host : 请求头部host
|
||
|
* timeout : 请求超时时间
|
||
|
* cert : ca文件路径
|
||
|
* ssl_version: SSL版本号
|
||
|
* @return string http请求响应
|
||
|
*/
|
||
|
public function sendRequest($request) {
|
||
|
if (!is_array($request) || !isset($request["url"])) {
|
||
|
return false;
|
||
|
}
|
||
|
if ($this->curlHandler) {
|
||
|
if (function_exists('curl_reset')) {
|
||
|
curl_reset($this->curlHandler);
|
||
|
} else {
|
||
|
my_curl_reset($this->curlHandler);
|
||
|
}
|
||
|
} else {
|
||
|
$this->curlHandler = curl_init();
|
||
|
}
|
||
|
|
||
|
curl_setopt($this->curlHandler, CURLOPT_URL, $request['url']);
|
||
|
|
||
|
$method = 'GET';
|
||
|
if (isset($request['method']) &&
|
||
|
in_array(strtolower($request['method']), array('get', 'post', 'put', 'delete', 'head'))) {
|
||
|
$method = strtoupper($request['method']);
|
||
|
} else if (isset($request['data'])) {
|
||
|
$method = 'POST';
|
||
|
}
|
||
|
|
||
|
$header = isset($request['header']) ? $request['header'] : array();
|
||
|
$header[] = 'Method:'.$method;
|
||
|
$header[] = 'Connection: keep-alive';
|
||
|
if ('POST' == $method) {
|
||
|
$header[] = 'Expect: ';
|
||
|
}
|
||
|
|
||
|
isset($request['host']) && $header[] = 'Host:' . $request['host'];
|
||
|
curl_setopt($this->curlHandler, CURLOPT_HTTPHEADER, $header);
|
||
|
curl_setopt($this->curlHandler, CURLOPT_RETURNTRANSFER, 1);
|
||
|
curl_setopt($this->curlHandler, CURLOPT_CUSTOMREQUEST, $method);
|
||
|
isset($request['timeout']) && curl_setopt($this->curlHandler, CURLOPT_TIMEOUT, $request['timeout']);
|
||
|
isset($request['data']) && in_array($method, array('POST', 'PUT')) &&
|
||
|
curl_setopt($this->curlHandler, CURLOPT_POSTFIELDS, $request['data']);
|
||
|
$ssl = substr($request['url'], 0, 8) == "https://" ? true : false;
|
||
|
if (isset($request['cert'])) {
|
||
|
curl_setopt($this->curlHandler, CURLOPT_SSL_VERIFYPEER,true);
|
||
|
curl_setopt($this->curlHandler, CURLOPT_CAINFO, $request['cert']);
|
||
|
curl_setopt($this->curlHandler, CURLOPT_SSL_VERIFYHOST,2);
|
||
|
if (isset($request['ssl_version'])) {
|
||
|
curl_setopt($this->curlHandler, CURLOPT_SSLVERSION, $request['ssl_version']);
|
||
|
} else {
|
||
|
curl_setopt($this->curlHandler, CURLOPT_SSLVERSION, 4);
|
||
|
}
|
||
|
} else if ($ssl) {
|
||
|
curl_setopt($this->curlHandler, CURLOPT_SSL_VERIFYPEER,false); //true any ca
|
||
|
curl_setopt($this->curlHandler, CURLOPT_SSL_VERIFYHOST,1); //check only host
|
||
|
if (isset($request['ssl_version'])) {
|
||
|
curl_setopt($this->curlHandler, CURLOPT_SSLVERSION, $request['ssl_version']);
|
||
|
} else {
|
||
|
curl_setopt($this->curlHandler, CURLOPT_SSLVERSION, 4);
|
||
|
}
|
||
|
}
|
||
|
$ret = curl_exec($this->curlHandler);
|
||
|
$this->httpInfo = curl_getinfo($this->curlHandler);
|
||
|
return $ret;
|
||
|
}
|
||
|
|
||
|
public function statusCode() {
|
||
|
if ($this->httpInfo) {
|
||
|
return $this->httpInfo['http_code'];
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
private $httpInfo;
|
||
|
private $curlHandler;
|
||
|
}
|