36 include_once(
'Services/WebServices/Curl/classes/class.ilCurlConnectionException.php');
60 if (!self::_isCurlExtensionLoaded()) {
74 if (!function_exists(
'curl_init')) {
107 final public function init(
bool $set_proxy =
true)
111 if (strlen($this->url)) {
112 $this->ch = curl_init($this->url);
113 #$GLOBALS['DIC']['ilLog']->write(__METHOD__ . ': ' . $this->url); 115 $this->ch = curl_init();
120 if (curl_errno($this->ch)) {
127 if ($proxy->isActive()) {
128 $this->
setOpt(CURLOPT_HTTPPROXYTUNNEL,
true);
130 if (!empty($proxy->getHost())) {
131 $this->
setOpt(CURLOPT_PROXY, $proxy->getHost());
136 if (!empty($proxy->getPort())) {
137 $this->
setOpt(CURLOPT_PROXYPORT, $proxy->getPort());
154 final public function setOpt($a_option, $a_value)
156 if (!@curl_setopt($this->ch, $a_option, $a_value)) {
172 curl_setopt($this->ch, CURLOPT_HEADERFUNCTION, array($this,
'parseHeader'));
173 if ((@
$res = curl_exec($this->ch)) ===
false) {
174 if (strlen($err = curl_error($this->ch))) {
189 $header_size = $this->
getInfo(CURLINFO_HEADER_SIZE);
191 $this->header_plain = substr($a_response, 0, $header_size);
192 $this->response_body = substr($a_response, $header_size);
215 $res = curl_getinfo($this->ch, $opt);
217 $res = curl_getinfo($this->ch);
230 $this->header_plain = $header;
233 foreach ($lines as $line) {
234 list(
$name, $value) = explode(
':', $line, 2);
235 $this->header_arr[
$name] = $value;
248 if ($this->ch != null) {
249 curl_close($this->ch);
parseResponse($a_response)
parse response body
exec()
Wrapper for curl_exec.
init(bool $set_proxy=true)
Init curl connection.
getResponseBody()
Get responce body.
parseHeader($handle, $header)
Parse respone header.
__construct($a_url='')
Constructor.
foreach($_POST as $key=> $value) $res
static _isCurlExtensionLoaded()
Check if curl extension is loaded.
getResponseHeader()
Get response header as string.
getResponseHeaderArray()
Get response header as array.
getInfo($opt=0)
Get informations about a specific transfer.
setOpt($a_option, $a_value)
Wrapper for curl_setopt.
__destruct()
Destructor public.
static _getInstance()
Getter for unique instance.