1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Libraries/CurlUtils.php

69 lines
1.7 KiB
PHP
Raw Normal View History

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();
$client->getEngine()->setPath($path);
$request = $client->getMessageFactory()->createRequest($url, $method);
$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 {
2017-02-08 17:12:03 +01:00
Utils::logError('Local PhantomJS Error: ' . $response->getStatus() . ' - ' . $url);
2017-01-02 19:47:40 +01:00
return false;
}
}
2016-08-07 21:42:32 +02:00
}