24 Commits

Author SHA1 Message Date
Ahmad Nassri
73c2d90323 Merge pull request #90 from Furgas/fix-phpdoc
Fix PHPDoc
2016-02-16 11:45:52 -05:00
Tomasz Sawicki
d0fc831a00 Fix PHPDoc 2016-02-16 10:49:00 +01:00
Ahmad Nassri
4a480b156b Merge pull request #89 from RusinovIG/master
Fixed setting of default headers array
2016-01-20 14:41:35 -05:00
Igor Rusinov
ca6a3b1daf Fixed setting of default headers array 2016-01-18 23:24:14 +03:00
Ahmad Nassri
da71f063cf Merge pull request #88 from frankdee/master
improved solution to override cURL options …
2015-12-15 17:22:11 -05:00
frankdee
be5ee63ad1 shortened cURL options array merging 2015-12-14 19:17:31 +01:00
frankdee
32334a6bfa improved solution to override cURL options, that preserves the right indices in cURL option arrays
(Note: PHP seems to not override all options when calling 'curl_setopt_array(..)' several times after another)
2015-12-14 13:55:49 +01:00
Ahmad Nassri
e11c54d29c Merge pull request #86 from Mashape/curlopts-override-fix
allow to override curlopts
2015-12-11 18:41:55 -05:00
Ahmad Nassri
a3312a0ecd allow to override curlopts 2015-12-11 18:38:09 -05:00
Augusto Marietti
fde6f41733 Update README.md 2015-10-16 19:40:03 -07:00
Ahmad Nassri
75258a2024 Merge pull request #83 from mircobabini/patch-1
fix composer command
2015-09-03 11:12:21 -04:00
Mirco Babini
b330685820 fix composer command 2015-09-03 15:39:52 +02:00
Augusto Marietti
2f7aea9f63 Update README.md 2015-07-28 00:27:17 -07:00
Ahmad Nassri
f04b42e75e Merge pull request #81 from gabrielzerbib/master
phpdoc return type for ::post
2015-07-27 12:17:35 -07:00
Gabriel Zerbib
32c1a9fef0 Merge branch 'master' of https://github.com/gabrielzerbib/unirest-php 2015-07-27 22:07:56 +03:00
Gabriel
2b5b349036 phpdoc return type for ::post 2015-07-27 22:07:05 +03:00
Gabriel
1017f14ef5 phpdoc return type for ::post 2015-07-27 14:57:24 +03:00
Ahmad Nassri
99c6975f23 Merge pull request #79 from voodoodrul/patch-1
Allow disabling of CURLOPT_SSL_VERIFYHOST
2015-06-08 13:29:31 -04:00
Jesse Skrivseth
f257217434 Fix CURLOPT_SSL_VERIFYHOST issue
libcurl's CURLOPT_SSL_VERIFYHOST option accepts only values 0 and 2. This fix is fail-secure in that SSL host verification will be enabled regardless of what a caller passes to Request::verifyHost($bool) unless $bool === false.
2015-06-08 08:50:58 -06:00
Jesse Skrivseth
c9c0a85250 Allow disabling of CURLOPT_SSL_VERIFYHOST
Useful when the SSL cert has an invalid or non-resolvable hostname
2015-06-05 19:50:11 -06:00
Ahmad Nassri
3e375515fe Update README.md 2015-04-22 11:40:44 -04:00
Ahmad Nassri
b6fb76ce12 oops, forgot notifications 2015-04-09 12:29:10 -04:00
Ahmad Nassri
5926846300 events are required for gitter hook? 2015-04-09 12:02:12 -04:00
Ahmad Nassri
feae18f980 add gitter webhook 2015-04-09 11:22:15 -04:00
7 changed files with 111 additions and 35 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.idea
.DS_Store .DS_Store
build build
vendor vendor

View File

@@ -26,3 +26,11 @@ matrix:
fast_finish: true fast_finish: true
allow_failures: allow_failures:
- php: hhvm - php: hhvm
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/d4319553d0aecfd5b9ac
on_success: always
on_failure: always
on_start: false

View File

@@ -7,7 +7,11 @@
[![Gitter][gitter-image]][gitter-url] [![Gitter][gitter-image]][gitter-url]
[![License][packagist-license]][license-url] [![License][packagist-license]][license-url]
Unirest is a set of lightweight HTTP libraries available in [multiple languages](http://unirest.io). ![][unirest-logo]
[Unirest](http://unirest.io) is a set of lightweight HTTP libraries available in multiple languages, built and maintained by [Mashape](https://github.com/Mashape), who also maintain the open-source API Gateway [Kong](https://github.com/Mashape/kong).
## Features ## Features
@@ -47,7 +51,7 @@ composer require mashape/unirest-php
This will get you the latest version of the reporter and install it. If you do want the master, untagged, version you may use the command below: This will get you the latest version of the reporter and install it. If you do want the master, untagged, version you may use the command below:
```shell ```shell
composer require mashape/php-test-reporter:@dev-master composer require mashape/php-test-reporter dev-master
``` ```
Composer installs autoloader at `./vendor/autoloader.php`. to include the library in your script, add: Composer installs autoloader at `./vendor/autoloader.php`. to include the library in your script, add:
@@ -62,7 +66,7 @@ If you use Symfony2, autoloader has to be detected automatically.
### Install from source ### Install from source
Unirest-PHP requires PHP `v5.4+`. Download the PHP library from Github, then include `Unirest.php` in your script: Download the PHP library from Github, then include `Unirest.php` in your script:
```shell ```shell
git clone git@github.com:Mashape/unirest-php.git git clone git@github.com:Mashape/unirest-php.git
@@ -336,6 +340,9 @@ Unirest\Request::getCurlHandle()
Made with ♥ from the [Mashape][mashape-url] team Made with ♥ from the [Mashape][mashape-url] team
[unirest-logo]: http://cl.ly/image/2P373Y090s2O/Image%202015-10-12%20at%209.48.06%20PM.png
[mashape-url]: https://www.mashape.com/ [mashape-url]: https://www.mashape.com/
[license-url]: https://github.com/Mashape/unirest-php/blob/master/LICENSE [license-url]: https://github.com/Mashape/unirest-php/blob/master/LICENSE

View File

@@ -6,7 +6,10 @@ class File
{ {
/** /**
* Prepares a file for upload. To be used inside the parameters declaration for a request. * Prepares a file for upload. To be used inside the parameters declaration for a request.
* @param string $path The file path * @param string $filename The file path
* @param string $mimetype MIME type
* @param string $postname the file name
* @return string|\CURLFile
*/ */
public static function add($filename, $mimetype = '', $postname = '') public static function add($filename, $mimetype = '', $postname = '')
{ {

92
src/Unirest/Request.php Normal file → Executable file
View File

@@ -2,9 +2,6 @@
namespace Unirest; namespace Unirest;
use Unirest\Method;
use Unirest\Response;
class Request class Request
{ {
private static $cookie = null; private static $cookie = null;
@@ -15,6 +12,7 @@ class Request
private static $jsonOpts = array(); private static $jsonOpts = array();
private static $socketTimeout = null; private static $socketTimeout = null;
private static $verifyPeer = true; private static $verifyPeer = true;
private static $verifyHost = true;
private static $auth = array ( private static $auth = array (
'user' => '', 'user' => '',
@@ -38,8 +36,9 @@ class Request
* Set JSON decode mode * Set JSON decode mode
* *
* @param bool $assoc When TRUE, returned objects will be converted into associative arrays. * @param bool $assoc When TRUE, returned objects will be converted into associative arrays.
* @param bool $depth User specified recursion depth. * @param integer $depth User specified recursion depth.
* @param bool $options Bitmask of JSON decode options. Currently only JSON_BIGINT_AS_STRING is supported (default is to cast large integers as floats) * @param integer $options Bitmask of JSON decode options. Currently only JSON_BIGINT_AS_STRING is supported (default is to cast large integers as floats)
* @return array
*/ */
public static function jsonOpts($assoc = false, $depth = 512, $options = 0) public static function jsonOpts($assoc = false, $depth = 512, $options = 0)
{ {
@@ -50,16 +49,29 @@ class Request
* Verify SSL peer * Verify SSL peer
* *
* @param bool $enabled enable SSL verification, by default is true * @param bool $enabled enable SSL verification, by default is true
* @return bool
*/ */
public static function verifyPeer($enabled) public static function verifyPeer($enabled)
{ {
return self::$verifyPeer = $enabled; return self::$verifyPeer = $enabled;
} }
/**
* Verify SSL host
*
* @param bool $enabled enable SSL host verification, by default is true
* @return bool
*/
public static function verifyHost($enabled)
{
return self::$verifyHost = $enabled;
}
/** /**
* Set a timeout * Set a timeout
* *
* @param integer $seconds timeout value in seconds * @param integer $seconds timeout value in seconds
* @return integer
*/ */
public static function timeout($seconds) public static function timeout($seconds)
{ {
@@ -73,7 +85,7 @@ class Request
*/ */
public static function defaultHeaders($headers) public static function defaultHeaders($headers)
{ {
return array_merge(self::$defaultHeaders, $headers); return self::$defaultHeaders = array_merge(self::$defaultHeaders, $headers);
} }
/** /**
@@ -81,6 +93,7 @@ class Request
* *
* @param string $name header name * @param string $name header name
* @param string $value header value * @param string $value header value
* @return string
*/ */
public static function defaultHeader($name, $value) public static function defaultHeader($name, $value)
{ {
@@ -99,10 +112,11 @@ class Request
* Set curl options to send on every request * Set curl options to send on every request
* *
* @param array $options options array * @param array $options options array
* @return array
*/ */
public static function curlOpts($opts) public static function curlOpts($options)
{ {
return array_merge(self::$curlOpts, $opts); return self::mergeCurlOptions(self::$curlOpts, $options);
} }
/** /**
@@ -110,6 +124,7 @@ class Request
* *
* @param string $name header name * @param string $name header name
* @param string $value header value * @param string $value header value
* @return string
*/ */
public static function curlOpt($name, $value) public static function curlOpt($name, $value)
{ {
@@ -132,6 +147,7 @@ class Request
* Be aware of which key you are using and do not share your Production key. * Be aware of which key you are using and do not share your Production key.
* *
* @param string $key Mashape key * @param string $key Mashape key
* @return string
*/ */
public static function setMashapeKey($key) public static function setMashapeKey($key)
{ {
@@ -165,7 +181,7 @@ class Request
* *
* @param string $username authentication username * @param string $username authentication username
* @param string $password authentication password * @param string $password authentication password
* @param string $method authentication method * @param integer $method authentication method
*/ */
public static function auth($username = '', $password = '', $method = CURLAUTH_BASIC) public static function auth($username = '', $password = '', $method = CURLAUTH_BASIC)
{ {
@@ -178,9 +194,9 @@ class Request
* Set proxy to use * Set proxy to use
* *
* @param string $address proxy address * @param string $address proxy address
* @param string $port proxy port * @param integer $port proxy port
* @param string $port proxy type (Available options for this are CURLPROXY_HTTP, CURLPROXY_HTTP_1_0 CURLPROXY_SOCKS4, CURLPROXY_SOCKS5, CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5_HOSTNAME) * @param integer $type (Available options for this are CURLPROXY_HTTP, CURLPROXY_HTTP_1_0 CURLPROXY_SOCKS4, CURLPROXY_SOCKS5, CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5_HOSTNAME)
* @param string $tunnel enable/disable tunneling * @param bool $tunnel enable/disable tunneling
*/ */
public static function proxy($address, $port = 1080, $type = CURLPROXY_HTTP, $tunnel = false) public static function proxy($address, $port = 1080, $type = CURLPROXY_HTTP, $tunnel = false)
{ {
@@ -195,8 +211,7 @@ class Request
* *
* @param string $username authentication username * @param string $username authentication username
* @param string $password authentication password * @param string $password authentication password
* @param string $method authentication method * @param integer $method authentication method
* @param string $tunnel enable/disable tunneling
*/ */
public static function proxyAuth($username = '', $password = '', $method = CURLAUTH_BASIC) public static function proxyAuth($username = '', $password = '', $method = CURLAUTH_BASIC)
{ {
@@ -213,7 +228,7 @@ class Request
* @param mixed $parameters parameters to send in the querystring * @param mixed $parameters parameters to send in the querystring
* @param string $username Authentication username (deprecated) * @param string $username Authentication username (deprecated)
* @param string $password Authentication password (deprecated) * @param string $password Authentication password (deprecated)
* @return string|stdObj response string or stdObj if response is json-decodable * @return \Unirest\Response
*/ */
public static function get($url, $headers = array(), $parameters = null, $username = null, $password = null) public static function get($url, $headers = array(), $parameters = null, $username = null, $password = null)
{ {
@@ -227,7 +242,7 @@ class Request
* @param mixed $parameters parameters to send in the querystring * @param mixed $parameters parameters to send in the querystring
* @param string $username Basic Authentication username (deprecated) * @param string $username Basic Authentication username (deprecated)
* @param string $password Basic Authentication password (deprecated) * @param string $password Basic Authentication password (deprecated)
* @return string|stdObj response string or stdObj if response is json-decodable * @return \Unirest\Response
*/ */
public static function head($url, $headers = array(), $parameters = null, $username = null, $password = null) public static function head($url, $headers = array(), $parameters = null, $username = null, $password = null)
{ {
@@ -241,7 +256,7 @@ class Request
* @param mixed $parameters parameters to send in the querystring * @param mixed $parameters parameters to send in the querystring
* @param string $username Basic Authentication username * @param string $username Basic Authentication username
* @param string $password Basic Authentication password * @param string $password Basic Authentication password
* @return string|stdObj response string or stdObj if response is json-decodable * @return \Unirest\Response
*/ */
public static function options($url, $headers = array(), $parameters = null, $username = null, $password = null) public static function options($url, $headers = array(), $parameters = null, $username = null, $password = null)
{ {
@@ -255,7 +270,7 @@ class Request
* @param mixed $parameters parameters to send in the querystring * @param mixed $parameters parameters to send in the querystring
* @param string $username Basic Authentication username (deprecated) * @param string $username Basic Authentication username (deprecated)
* @param string $password Basic Authentication password (deprecated) * @param string $password Basic Authentication password (deprecated)
* @return string|stdObj response string or stdObj if response is json-decodable * @return \Unirest\Response
*/ */
public static function connect($url, $headers = array(), $parameters = null, $username = null, $password = null) public static function connect($url, $headers = array(), $parameters = null, $username = null, $password = null)
{ {
@@ -269,7 +284,7 @@ class Request
* @param mixed $body POST body data * @param mixed $body POST body data
* @param string $username Basic Authentication username (deprecated) * @param string $username Basic Authentication username (deprecated)
* @param string $password Basic Authentication password (deprecated) * @param string $password Basic Authentication password (deprecated)
* @return string|stdObj response string or stdObj if response is json-decodable * @return \Unirest\Response response
*/ */
public static function post($url, $headers = array(), $body = null, $username = null, $password = null) public static function post($url, $headers = array(), $body = null, $username = null, $password = null)
{ {
@@ -283,7 +298,7 @@ class Request
* @param mixed $body DELETE body data * @param mixed $body DELETE body data
* @param string $username Basic Authentication username (deprecated) * @param string $username Basic Authentication username (deprecated)
* @param string $password Basic Authentication password (deprecated) * @param string $password Basic Authentication password (deprecated)
* @return string|stdObj response string or stdObj if response is json-decodable * @return \Unirest\Response
*/ */
public static function delete($url, $headers = array(), $body = null, $username = null, $password = null) public static function delete($url, $headers = array(), $body = null, $username = null, $password = null)
{ {
@@ -297,7 +312,7 @@ class Request
* @param mixed $body PUT body data * @param mixed $body PUT body data
* @param string $username Basic Authentication username (deprecated) * @param string $username Basic Authentication username (deprecated)
* @param string $password Basic Authentication password (deprecated) * @param string $password Basic Authentication password (deprecated)
* @return string|stdObj response string or stdObj if response is json-decodable * @return \Unirest\Response
*/ */
public static function put($url, $headers = array(), $body = null, $username = null, $password = null) public static function put($url, $headers = array(), $body = null, $username = null, $password = null)
{ {
@@ -311,7 +326,7 @@ class Request
* @param mixed $body PATCH body data * @param mixed $body PATCH body data
* @param string $username Basic Authentication username (deprecated) * @param string $username Basic Authentication username (deprecated)
* @param string $password Basic Authentication password (deprecated) * @param string $password Basic Authentication password (deprecated)
* @return string|stdObj response string or stdObj if response is json-decodable * @return \Unirest\Response
*/ */
public static function patch($url, $headers = array(), $body = null, $username = null, $password = null) public static function patch($url, $headers = array(), $body = null, $username = null, $password = null)
{ {
@@ -325,7 +340,7 @@ class Request
* @param mixed $body TRACE body data * @param mixed $body TRACE body data
* @param string $username Basic Authentication username (deprecated) * @param string $username Basic Authentication username (deprecated)
* @param string $password Basic Authentication password (deprecated) * @param string $password Basic Authentication password (deprecated)
* @return string|stdObj response string or stdObj if response is json-decodable * @return \Unirest\Response
*/ */
public static function trace($url, $headers = array(), $body = null, $username = null, $password = null) public static function trace($url, $headers = array(), $body = null, $username = null, $password = null)
{ {
@@ -335,6 +350,9 @@ class Request
/** /**
* This function is useful for serializing multidimensional arrays, and avoid getting * This function is useful for serializing multidimensional arrays, and avoid getting
* the 'Array to string conversion' notice * the 'Array to string conversion' notice
* @param array|object $data array to flatten.
* @param bool|string $parent parent key or false if no parent
* @return array
*/ */
public static function buildHTTPCurlQuery($data, $parent = false) public static function buildHTTPCurlQuery($data, $parent = false)
{ {
@@ -363,22 +381,19 @@ class Request
/** /**
* Send a cURL request * Send a cURL request
* @param Unirest\Method $method HTTP method to use * @param \Unirest\Method|string $method HTTP method to use
* @param string $url URL to send the request to * @param string $url URL to send the request to
* @param mixed $body request body * @param mixed $body request body
* @param array $headers additional headers to send * @param array $headers additional headers to send
* @param string $username Authentication username (deprecated) * @param string $username Authentication username (deprecated)
* @param string $password Authentication password (deprecated) * @param string $password Authentication password (deprecated)
* @throws Exception if a cURL error occurs * @throws \Exception if a cURL error occurs
* @return Unirest\Response * @return \Unirest\Response
*/ */
public static function send($method, $url, $body = null, $headers = array(), $username = null, $password = null) public static function send($method, $url, $body = null, $headers = array(), $username = null, $password = null)
{ {
self::$handle = curl_init(); self::$handle = curl_init();
// start with default options
curl_setopt_array(self::$handle, self::$curlOpts);
if ($method !== Method::GET) { if ($method !== Method::GET) {
curl_setopt(self::$handle, CURLOPT_CUSTOMREQUEST, $method); curl_setopt(self::$handle, CURLOPT_CUSTOMREQUEST, $method);
@@ -397,7 +412,7 @@ class Request
$url .= urldecode(http_build_query(self::buildHTTPCurlQuery($body))); $url .= urldecode(http_build_query(self::buildHTTPCurlQuery($body)));
} }
curl_setopt_array(self::$handle, array( $curl_base_options = [
CURLOPT_URL => self::encodeUrl($url), CURLOPT_URL => self::encodeUrl($url),
CURLOPT_RETURNTRANSFER => true, CURLOPT_RETURNTRANSFER => true,
CURLOPT_FOLLOWLOCATION => true, CURLOPT_FOLLOWLOCATION => true,
@@ -405,9 +420,13 @@ class Request
CURLOPT_HTTPHEADER => self::getFormattedHeaders($headers), CURLOPT_HTTPHEADER => self::getFormattedHeaders($headers),
CURLOPT_HEADER => true, CURLOPT_HEADER => true,
CURLOPT_SSL_VERIFYPEER => self::$verifyPeer, CURLOPT_SSL_VERIFYPEER => self::$verifyPeer,
//CURLOPT_SSL_VERIFYHOST accepts only 0 (false) or 2 (true). Future versions of libcurl will treat values 1 and 2 as equals
CURLOPT_SSL_VERIFYHOST => self::$verifyHost === false ? 0 : 2,
// If an empty string, '', is set, a header containing all supported encoding types is sent // If an empty string, '', is set, a header containing all supported encoding types is sent
CURLOPT_ENCODING => '' CURLOPT_ENCODING => ''
)); ];
curl_setopt_array(self::$handle, self::mergeCurlOptions($curl_base_options, self::$curlOpts));
if (self::$socketTimeout !== null) { if (self::$socketTimeout !== null) {
curl_setopt(self::$handle, CURLOPT_TIMEOUT, self::$socketTimeout); curl_setopt(self::$handle, CURLOPT_TIMEOUT, self::$socketTimeout);
@@ -545,4 +564,15 @@ class Request
$key = trim(strtolower($key)); $key = trim(strtolower($key));
return $key . ': ' . $val; return $key . ': ' . $val;
} }
/**
* @param array $existing_options
* @param array $new_options
* @return array
*/
private static function mergeCurlOptions(&$existing_options, $new_options)
{
$existing_options = $new_options + $existing_options;
return $existing_options;
}
} }

View File

@@ -37,6 +37,8 @@ class Response
* *
* thanks to ricardovermeltfoort@gmail.com * thanks to ricardovermeltfoort@gmail.com
* http://php.net/manual/en/function.http-parse-headers.php#112986 * http://php.net/manual/en/function.http-parse-headers.php#112986
* @param string $raw_headers raw headers
* @return array
*/ */
private function parseHeaders($raw_headers) private function parseHeaders($raw_headers)
{ {

View File

@@ -39,6 +39,31 @@ class UnirestRequestTest extends \PHPUnit_Framework_TestCase
Unirest\Request::timeout(null); // Cleaning timeout for the other tests Unirest\Request::timeout(null); // Cleaning timeout for the other tests
} }
public function testDefaultHeaders()
{
$defaultHeaders = array(
'header1' => 'Hello',
'header2' => 'world'
);
Unirest\Request::defaultHeaders($defaultHeaders);
$response = Unirest\Request::get('http://mockbin.com/request');
$this->assertEquals(200, $response->code);
$this->assertObjectHasAttribute('header1', $response->body->headers);
$this->assertEquals('Hello', $response->body->headers->header1);
$this->assertObjectHasAttribute('header2', $response->body->headers);
$this->assertEquals('world', $response->body->headers->header2);
Unirest\Request::clearDefaultHeaders();
$response = Unirest\Request::get('http://mockbin.com/request');
$this->assertEquals(200, $response->code);
$this->assertObjectNotHasAttribute('header1', $response->body->headers);
$this->assertObjectNotHasAttribute('header2', $response->body->headers);
}
public function testDefaultHeader() public function testDefaultHeader()
{ {
Unirest\Request::defaultHeader('Hello', 'custom'); Unirest\Request::defaultHeader('Hello', 'custom');