2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Libraries;
|
2016-08-07 21:42:32 +02:00
|
|
|
|
2017-01-02 19:47:40 +01:00
|
|
|
use JonnyW\PhantomJs\Client;
|
|
|
|
|
2016-08-07 21:42:32 +02:00
|
|
|
class CurlUtils
|
|
|
|
{
|
|
|
|
public static function post($url, $data, $headers = false)
|
|
|
|
{
|
|
|
|
return self::exec('POST', $url, $data, $headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function get($url, $headers = false)
|
|
|
|
{
|
|
|
|
return self::exec('GET', $url, null, $headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function exec($method, $url, $data, $headers = false)
|
|
|
|
{
|
|
|
|
$curl = curl_init();
|
|
|
|
|
|
|
|
$opts = [
|
|
|
|
CURLOPT_URL => $url,
|
|
|
|
CURLOPT_RETURNTRANSFER => true,
|
|
|
|
CURLOPT_POST => $method,
|
|
|
|
CURLOPT_HTTPHEADER => $headers ?: [],
|
|
|
|
];
|
|
|
|
|
|
|
|
if ($data) {
|
|
|
|
$opts[CURLOPT_POSTFIELDS] = $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
curl_setopt_array($curl, $opts);
|
|
|
|
$response = curl_exec($curl);
|
2016-12-01 14:03:12 +01:00
|
|
|
|
|
|
|
if ($error = curl_error($curl)) {
|
|
|
|
Utils::logError('CURL Error #' . curl_errno($curl) . ': ' . $error);
|
|
|
|
}
|
|
|
|
|
2016-08-07 21:42:32 +02:00
|
|
|
curl_close($curl);
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
2017-01-02 19:47:40 +01:00
|
|
|
|
|
|
|
public static function phantom($method, $url)
|
|
|
|
{
|
2017-01-30 17:05:31 +01:00
|
|
|
if (! $path = env('PHANTOMJS_BIN_PATH')) {
|
2017-01-02 19:47:40 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$client = Client::getInstance();
|
2017-03-08 20:45:28 +01:00
|
|
|
$client->isLazy();
|
2017-01-02 19:47:40 +01:00
|
|
|
$client->getEngine()->setPath($path);
|
|
|
|
|
|
|
|
$request = $client->getMessageFactory()->createRequest($url, $method);
|
2017-03-08 20:45:28 +01:00
|
|
|
$request->setTimeout(5000);
|
2017-01-02 19:47:40 +01:00
|
|
|
$response = $client->getMessageFactory()->createResponse();
|
|
|
|
|
|
|
|
// Send the request
|
|
|
|
$client->send($request, $response);
|
2017-02-08 17:12:03 +01:00
|
|
|
|
2017-01-02 19:47:40 +01:00
|
|
|
if ($response->getStatus() === 200) {
|
|
|
|
return $response->getContent();
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-08-07 21:42:32 +02:00
|
|
|
}
|