TrackManiaControl/core/Files/AsyncHttpRequest.php

211 lines
4.7 KiB
PHP
Raw Normal View History

2015-09-30 22:28:16 +02:00
<?php
namespace ManiaControl\Files;
use cURL\Event;
2015-09-30 22:51:12 +02:00
use cURL\Request;
use ManiaControl\General\UsageInformationAble;
use ManiaControl\General\UsageInformationTrait;
2015-09-30 22:28:16 +02:00
use ManiaControl\ManiaControl;
/**
* Asynchronous Http Request Class
*
* @author ManiaControl Team <mail@maniacontrol.com>
2017-02-04 11:49:23 +01:00
* @copyright 2014-2017 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class AsyncHttpRequest implements UsageInformationAble {
use UsageInformationTrait;
/*
* Constants
*/
const CONTENT_TYPE_JSON = 'application/json';
2017-03-29 20:38:46 +02:00
const CONTENT_TYPE_UTF8 = 'UTF-8';
/*
* Private properties
*/
2015-09-30 22:28:16 +02:00
/** @var ManiaControl $maniaControl */
private $maniaControl;
private $url;
private $function;
private $content;
private $compression = false;
private $contentType = 'text/xml; charset=UTF-8;';
private $headers = array();
2015-09-30 22:33:48 +02:00
public function __construct($maniaControl, $url) {
2015-09-30 22:28:16 +02:00
$this->maniaControl = $maniaControl;
$this->url = $url;
}
2015-09-30 22:51:12 +02:00
/**
* Create a new cURL Request for the given URL
*
* @param string $url
* @return Request
*/
private function newRequest($url) {
$request = new Request($url);
$request->getOptions()->set(CURLOPT_TIMEOUT, 60)->set(CURLOPT_HEADER, false)// don't display response header
->set(CURLOPT_CRLF, true)// linux line feed
->set(CURLOPT_ENCODING, '')// accept encoding
->set(CURLOPT_USERAGENT, 'ManiaControl v' . ManiaControl::VERSION)// user-agent
2015-11-06 16:24:46 +01:00
->set(CURLOPT_RETURNTRANSFER, true)//
->set(CURLOPT_FOLLOWLOCATION, true)// support redirect
->set(CURLOPT_SSL_VERIFYPEER, false);
2015-09-30 22:51:12 +02:00
return $request;
}
/**
* Carry out a GetData Request
*
* @param int $keepAlive
*/
2015-09-30 22:42:52 +02:00
public function getData($keepAlive = 0) {
array_push($this->headers, 'Content-Type: ' . $this->contentType);
if ($keepAlive) {
2015-11-06 16:52:13 +01:00
array_push($this->headers, 'Keep-Alive: ' . $keepAlive);
array_push($this->headers, 'Connection: Keep-Alive');
2015-09-30 22:42:52 +02:00
}
2015-09-30 22:51:12 +02:00
$request = $this->newRequest($this->url);
2015-09-30 22:42:52 +02:00
$request->getOptions()->set(CURLOPT_AUTOREFERER, true)// accept link reference
->set(CURLOPT_HTTPHEADER, $this->headers); // headers
$this->processRequest($request);
2015-09-30 22:42:52 +02:00
}
2015-09-30 22:51:12 +02:00
/**
* Carry out a PostData Request
*/
2015-09-30 22:28:16 +02:00
public function postData() {
array_push($this->headers, 'Content-Type: ' . $this->contentType);
array_push($this->headers, 'Keep-Alive: timeout=600, max=2000');
array_push($this->headers, 'Connection: Keep-Alive');
$content = str_replace(array("\r", "\n"), '', $this->content);
if ($this->compression) {
$content = zlib_encode($content, 31);
2015-11-06 16:52:13 +01:00
array_push($this->headers, 'Content-Encoding: gzip');
2015-09-30 22:28:16 +02:00
}
2015-09-30 22:51:12 +02:00
$request = $this->newRequest($this->url);
2015-09-30 22:28:16 +02:00
$request->getOptions()->set(CURLOPT_POST, true)// post method
->set(CURLOPT_POSTFIELDS, $content)// post content field
->set(CURLOPT_HTTPHEADER, $this->headers) // headers
;
$this->processRequest($request);
}
/**
* Processes the Request
*
* @param Request $request
*/
private function processRequest(Request $request) {
2015-10-13 19:12:27 +02:00
$request->addListener('complete', function (Event $event) {
2015-09-30 22:28:16 +02:00
$error = null;
$content = null;
if ($event->response->hasError()) {
$error = $event->response->getError()->getMessage();
} else {
$content = $event->response->getContent();
}
2015-10-13 19:12:27 +02:00
call_user_func($this->function, $content, $error);
2015-09-30 22:28:16 +02:00
});
2015-10-13 19:12:27 +02:00
$fileReader = $this->maniaControl->getFileReader();
2015-09-30 22:28:16 +02:00
$fileReader->addRequest($request);
}
/**
* @param $url
* @return $this
*/
public function setURL($url) {
$this->url = $url;
return $this;
}
/**
2015-09-30 22:42:52 +02:00
* @param callable $function
2015-09-30 22:28:16 +02:00
* @return $this
*/
public function setCallable($function) {
$this->function = $function;
return $this;
}
/**
* @return mixed
*/
public function getContent() {
return $this->content;
}
/**
* @param mixed $content
* @return $this
*/
public function setContent($content) {
$this->content = $content;
return $this;
}
/**
* @return boolean
*/
public function getCompression() {
return $this->compression;
}
/**
* @param boolean $compression
* @return $this
*/
public function setCompression($compression) {
$this->compression = $compression;
return $this;
}
/**
* @return array
*/
public function getHeaders() {
return $this->headers;
}
/**
* @param array $headers
* @return $this
*/
public function setHeaders($headers) {
if (is_array($headers)) {
2015-11-06 16:45:27 +01:00
$this->headers = $headers;
}
2015-09-30 22:28:16 +02:00
return $this;
}
2015-09-30 22:33:48 +02:00
/**
* @return string
*/
public function getContentType() {
return $this->contentType;
}
/**
* @param string $contentType
* @return $this
*/
public function setContentType($contentType) {
$this->contentType = $contentType;
return $this;
}
2015-09-30 22:28:16 +02:00
}