restructuriing filereader stage 3
This commit is contained in:
parent
8aa0bbba86
commit
fed08286ee
@ -23,6 +23,34 @@ class AsyncHttpRequest {
|
|||||||
$this->url = $url;
|
$this->url = $url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//TODO merge loadFile / postData
|
||||||
|
public function getData($keepAlive = 0) {
|
||||||
|
array_push($this->headers, 'Content-Type: ' . $this->contentType);
|
||||||
|
if ($keepAlive) {
|
||||||
|
array_push($headers, 'Keep-Alive: ' . $keepAlive);
|
||||||
|
array_push($headers, 'Connection: Keep-Alive');
|
||||||
|
}
|
||||||
|
|
||||||
|
$fileReader = new AsynchronousFileReader($this->maniaControl);
|
||||||
|
$request = $fileReader->newRequest($this->url);
|
||||||
|
$request->getOptions()->set(CURLOPT_AUTOREFERER, true)// accept link reference
|
||||||
|
->set(CURLOPT_HTTPHEADER, $this->headers); // headers
|
||||||
|
|
||||||
|
$request->addListener('complete', function (Event $event) use (&$function) {
|
||||||
|
$error = null;
|
||||||
|
$content = null;
|
||||||
|
if ($event->response->hasError()) {
|
||||||
|
$error = $event->response->getError()->getMessage();
|
||||||
|
} else {
|
||||||
|
$content = $event->response->getContent();
|
||||||
|
}
|
||||||
|
call_user_func($function, $content, $error);
|
||||||
|
});
|
||||||
|
|
||||||
|
$fileReader->addRequest($request);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public function postData() {
|
public function postData() {
|
||||||
array_push($this->headers, 'Content-Type: ' . $this->contentType);
|
array_push($this->headers, 'Content-Type: ' . $this->contentType);
|
||||||
array_push($this->headers, 'Keep-Alive: timeout=600, max=2000');
|
array_push($this->headers, 'Keep-Alive: timeout=600, max=2000');
|
||||||
@ -66,7 +94,7 @@ class AsyncHttpRequest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $function
|
* @param callable $function
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function setCallable($function) {
|
public function setCallable($function) {
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
namespace ManiaControl\Files;
|
namespace ManiaControl\Files;
|
||||||
|
|
||||||
use cURL\Event;
|
|
||||||
use cURL\Request;
|
use cURL\Request;
|
||||||
use ManiaControl\ManiaControl;
|
use ManiaControl\ManiaControl;
|
||||||
|
|
||||||
@ -69,28 +68,9 @@ class AsynchronousFileReader {
|
|||||||
* @param array $headers Additional Headers
|
* @param array $headers Additional Headers
|
||||||
*/
|
*/
|
||||||
public function loadFile($url, callable $function, $contentType = 'UTF-8', $keepAlive = 0, $headers = array()) {
|
public function loadFile($url, callable $function, $contentType = 'UTF-8', $keepAlive = 0, $headers = array()) {
|
||||||
array_push($headers, 'Content-Type: ' . $contentType);
|
$httpRequest = new AsyncHttpRequest($this->maniaControl, $url);
|
||||||
if ($keepAlive) {
|
$httpRequest->setCallable($function)->setContentType($contentType)->setHeaders($headers);
|
||||||
array_push($headers, 'Keep-Alive: ' . $keepAlive);
|
$httpRequest->getData($keepAlive);
|
||||||
array_push($headers, 'Connection: Keep-Alive');
|
|
||||||
}
|
|
||||||
|
|
||||||
$request = $this->newRequest($url);
|
|
||||||
$request->getOptions()->set(CURLOPT_AUTOREFERER, true)// accept link reference
|
|
||||||
->set(CURLOPT_HTTPHEADER, $headers); // headers
|
|
||||||
|
|
||||||
$request->addListener('complete', function (Event $event) use (&$function) {
|
|
||||||
$error = null;
|
|
||||||
$content = null;
|
|
||||||
if ($event->response->hasError()) {
|
|
||||||
$error = $event->response->getError()->getMessage();
|
|
||||||
} else {
|
|
||||||
$content = $event->response->getContent();
|
|
||||||
}
|
|
||||||
call_user_func($function, $content, $error);
|
|
||||||
});
|
|
||||||
|
|
||||||
$this->addRequest($request);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -109,8 +89,6 @@ class AsynchronousFileReader {
|
|||||||
return $request;
|
return $request;
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO remove, they are just for testing dedimania
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a Request to the queue, DO NOT CALL MANUALLY!
|
* Add a Request to the queue, DO NOT CALL MANUALLY!
|
||||||
*
|
*
|
||||||
@ -120,38 +98,6 @@ class AsynchronousFileReader {
|
|||||||
array_push($this->requests, $request);
|
array_push($this->requests, $request);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function postDataTest(Request $request, $url, callable $function, $content, $compression = false, $contentType = 'text/xml; charset=UTF-8;') {
|
|
||||||
|
|
||||||
$headers = array();
|
|
||||||
array_push($headers, 'Content-Type: ' . $contentType);
|
|
||||||
array_push($headers, 'Keep-Alive: timeout=600, max=2000');
|
|
||||||
array_push($headers, 'Connection: Keep-Alive');
|
|
||||||
|
|
||||||
$content = str_replace(array("\r", "\n"), '', $content);
|
|
||||||
if ($compression) {
|
|
||||||
$content = zlib_encode($content, 31);
|
|
||||||
array_push($headers, 'Content-Encoding: gzip');
|
|
||||||
}
|
|
||||||
|
|
||||||
$request->getOptions()->set(CURLOPT_POST, true)// post method
|
|
||||||
->set(CURLOPT_POSTFIELDS, $content)// post content field
|
|
||||||
->set(CURLOPT_HTTPHEADER, $headers) // headers
|
|
||||||
;
|
|
||||||
$request->addListener('complete', function (Event $event) use (&$function) {
|
|
||||||
$error = null;
|
|
||||||
$content = null;
|
|
||||||
if ($event->response->hasError()) {
|
|
||||||
$error = $event->response->getError()->getMessage();
|
|
||||||
} else {
|
|
||||||
$content = $event->response->getContent();
|
|
||||||
}
|
|
||||||
|
|
||||||
call_user_func($function, $content, $error);
|
|
||||||
});
|
|
||||||
|
|
||||||
$this->addRequest($request);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send Data via POST Method
|
* Send Data via POST Method
|
||||||
|
Loading…
Reference in New Issue
Block a user