/* {{{ HAVE_CURL */
#ifdef HTTP_HAVE_CURL
+#define RETURN_RESPONSE_OR_BODY(response) \
+ { \
+ zval **bodyonly; \
+ \
+ /* check if only the body should be returned */ \
+ if (options && (SUCCESS == zend_hash_find(Z_ARRVAL_P(options), "bodyonly", sizeof("bodyonly"), (void **) &bodyonly)) && zval_is_true(*bodyonly)) { \
+ http_message *msg = http_message_parse(PHPSTR_VAL(&response), PHPSTR_LEN(&response)); \
+ \
+ if (msg) { \
+ RETVAL_STRINGL(PHPSTR_VAL(&msg->body), PHPSTR_LEN(&msg->body), 1); \
+ http_message_free(&msg); \
+ return; \
+ } \
+ } else { \
+ RETURN_PHPSTR_VAL(&response); \
+ } \
+ }
+
/* {{{ proto string http_get(string url[, array options[, array &info]])
*
* Performs an HTTP GET request on the supplied url.
phpstr_init_ex(&response, HTTP_CURLBUF_SIZE, 0);
if (SUCCESS == http_get(URL, options ? Z_ARRVAL_P(options) : NULL, info ? Z_ARRVAL_P(info) : NULL, &response)) {
- RETURN_PHPSTR_VAL(&response);
- } else {
- phpstr_dtor(&response);
- RETURN_FALSE;
+ RETURN_RESPONSE_OR_BODY(response);
}
+ phpstr_dtor(&response);
+ RETURN_FALSE;
}
/* }}} */
phpstr_init_ex(&response, HTTP_CURLBUF_SIZE, 0);
if (SUCCESS == http_head(URL, options ? Z_ARRVAL_P(options) : NULL, info ? Z_ARRVAL_P(info) : NULL, &response)) {
- RETURN_PHPSTR_VAL(&response);
- } else {
- phpstr_dtor(&response);
- RETURN_FALSE;
+ RETURN_RESPONSE_OR_BODY(response);
}
+ phpstr_dtor(&response);
+ RETURN_FALSE;
}
/* }}} */
phpstr_init_ex(&response, HTTP_CURLBUF_SIZE, 0);
if (SUCCESS == http_post(URL, &body, options ? Z_ARRVAL_P(options) : NULL, info ? Z_ARRVAL_P(info) : NULL, &response)) {
- RETVAL_PHPSTR_VAL(&response);
- } else {
- phpstr_dtor(&response);
- RETVAL_FALSE;
+ RETURN_RESPONSE_OR_BODY(response);
}
+ phpstr_dtor(&response);
+ RETVAL_FALSE;
}
/* }}} */
phpstr_init_ex(&response, HTTP_CURLBUF_SIZE, 0);
if (SUCCESS == http_post(URL, &body, options ? Z_ARRVAL_P(options) : NULL, info ? Z_ARRVAL_P(info) : NULL, &response)) {
- RETVAL_PHPSTR_VAL(&response);
- } else {
- phpstr_dtor(&response);
- RETVAL_FALSE;
+ http_request_body_dtor(&body);
+ RETURN_RESPONSE_OR_BODY(response);
}
http_request_body_dtor(&body);
+ phpstr_dtor(&response);
+ RETURN_FALSE;
}
/* }}} */
phpstr_init_ex(&response, HTTP_CURLBUF_SIZE, 0);
if (SUCCESS == http_put(URL, &body, options ? Z_ARRVAL_P(options) : NULL, info ? Z_ARRVAL_P(info) : NULL, &response)) {
- RETVAL_PHPSTR_VAL(&response);
- } else {
- phpstr_dtor(&response);
- RETVAL_FALSE;
+ http_request_body_dtor(&body);
+ RETURN_RESPONSE_OR_BODY(response);
}
http_request_body_dtor(&body);
+ phpstr_dtor(&response);
+ RETURN_FALSE;
}
/* }}} */
phpstr_init_ex(&response, HTTP_CURLBUF_SIZE, 0);
if (SUCCESS == http_put(URL, &body, options ? Z_ARRVAL_P(options) : NULL, info ? Z_ARRVAL_P(info) : NULL, &response)) {
- RETURN_PHPSTR_VAL(&response);
- } else {
- phpstr_dtor(&response);
- RETURN_NULL();
+ RETURN_RESPONSE_OR_BODY(response);
}
+ phpstr_dtor(&response);
+ RETURN_FALSE;
}
/* }}} */
#endif /* HTTP_HAVE_CURL */
</lead>
<date>2005-00-00</date>
<version>
- <release>0.19.0</release>
- <api>0.19.0</api>
+ <release>0.20.0</release>
+ <api>0.20.0</api>
</version>
<stability>
<release>beta</release>
</stability>
<license>BSD, revised</license>
<notes><![CDATA[
-+ Added http_negotiate_content_type()
-
-* Fixed bug in http_negotiate_*() when client sends spaces within accept headers
-
-- Removed support for etag hashing through libmhash
-- Removed HTTP_ETAG_* and HttpResponse::ETAG_* constants
-- Changed http.etag_mode INI setting to acccept a string specifying the
- hash algorithm to use for generating etags.
- CRC32, MD5 and SHA1 are available out of the box with MD5 being the default.
- If pecl/hash is available, any algorithm this extension provides can be used.
++ Added 'bodyonly' request option
]]></notes>
<contents>
<dir name="/">