"http_util_object.c http_message_object.c "+
"http_request_object.c http_response_object.c "+
"http_api.c http_auth_api.c http_cache_api.c "+
- "http_curl_api.c http_date_api.c http_headers_api.c "+
+ "http_request_api.c http_date_api.c http_headers_api.c "+
"http_message_api.c http_send_api.c http_url_api.c ",
null,
"/I\"" + configure_module_dirname + "/phpstr\"");
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
+
+static
+ZEND_BEGIN_ARG_INFO(http_request_info_ref_5, 0)
+ ZEND_ARG_PASS_INFO(0)
+ ZEND_ARG_PASS_INFO(0)
+ ZEND_ARG_PASS_INFO(0)
+ ZEND_ARG_PASS_INFO(0)
+ ZEND_ARG_PASS_INFO(1)
+ZEND_END_ARG_INFO();
#else
static unsigned char http_request_info_ref_3[] = {3, BYREF_NONE, BYREF_NONE, BYREF_FORCE};
static unsigned char http_request_info_ref_4[] = {4, BYREF_NONE, BYREF_NONE, BYREF_NONE, BYREF_FORCE};
+static unsigned char http_request_info_ref_5[] = {5, BYREF_NONE, BYREF_NONE, BYREF_NONE, BYREF_NONE, BYREF_FORCE};
#endif /* ZEND_ENGINE_2 */
#endif /* HTTP_HAVE_CURL */
PHP_FE(http_get, http_request_info_ref_3)
PHP_FE(http_head, http_request_info_ref_3)
PHP_FE(http_post_data, http_request_info_ref_4)
- PHP_FE(http_post_array, http_request_info_ref_4)
+ PHP_FE(http_post_fields, http_request_info_ref_5)
#endif
PHP_FE(http_auth_basic, NULL)
PHP_FE(http_auth_basic_cb, NULL)
# End Source File\r
# Begin Source File\r
\r
-SOURCE=.\http_curl_api.c\r
+SOURCE=.\http_request_api.c\r
# End Source File\r
# Begin Source File\r
\r
# End Source File\r
# Begin Source File\r
\r
-SOURCE=.\php_http_curl_api.h\r
+SOURCE=.\php_http_request_api.h\r
# End Source File\r
# Begin Source File\r
\r
+++ /dev/null
-/*
- +----------------------------------------------------------------------+
- | PECL :: http |
- +----------------------------------------------------------------------+
- | This source file is subject to version 3.0 of the PHP license, that |
- | is bundled with this package in the file LICENSE, and is available |
- | through the world-wide-web at http://www.php.net/license/3_0.txt. |
- | If you did not receive a copy of the PHP license and are unable to |
- | obtain it through the world-wide-web, please send a note to |
- | license@php.net so we can mail you a copy immediately. |
- +----------------------------------------------------------------------+
- | Copyright (c) 2004-2005 Michael Wallner <mike@php.net> |
- +----------------------------------------------------------------------+
-*/
-
-/* $Id$ */
-
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
-#ifdef PHP_WIN32
-# include <winsock2.h>
-#endif
-
-#include <curl/curl.h>
-
-#include "phpstr/phpstr.h"
-
-#include "php.h"
-#include "php_http.h"
-#include "php_http_std_defs.h"
-#include "php_http_api.h"
-#include "php_http_curl_api.h"
-#include "php_http_url_api.h"
-
-ZEND_EXTERN_MODULE_GLOBALS(http)
-
-#if LIBCURL_VERSION_NUM >= 0x070c01
-# define http_curl_reset(ch) curl_easy_reset(ch)
-#else
-# define http_curl_reset(ch)
-#endif
-
-#if LIBCURL_VERSION_NUM < 0x070c00
-# define http_curl_error(dummy) HTTP_G(curlerr)
-# define curl_easy_strerror(code) "unkown error"
-#else
-# define http_curl_error(code) curl_easy_strerror(code)
-#endif
-
-#define http_curl_startup(ch, clean_curl, URL, options, response) \
- if (!ch) { \
- if (!(ch = curl_easy_init())) { \
- http_error(E_WARNING, HTTP_E_CURL, "Could not initialize curl"); \
- return FAILURE; \
- } \
- clean_curl = 1; \
- } else { \
- http_curl_reset(ch); \
- } \
- http_curl_setopts(ch, URL, options, response);
-
-#define http_curl_perform(ch, clean_curl, response) \
- { \
- CURLcode result; \
- if (CURLE_OK != (result = curl_easy_perform(ch))) { \
- http_error_ex(E_WARNING, HTTP_E_CURL, "Could not perform request: %s", curl_easy_strerror(result)); \
- http_curl_cleanup(ch, clean_curl, response); \
- return FAILURE; \
- } \
- }
-
-#define http_curl_cleanup(ch, clean_curl, response) \
- zend_llist_clean(&HTTP_G(to_free)); \
- if (clean_curl) { \
- curl_easy_cleanup(ch); \
- ch = NULL; \
- } \
- phpstr_fix(PHPSTR(response))
-
-#define http_curl_copystr(s) _http_curl_copystr((s) TSRMLS_CC)
-static inline char *_http_curl_copystr(const char *str TSRMLS_DC);
-
-#define http_curl_setopts(c, u, o, r) _http_curl_setopts((c), (u), (o), (r) TSRMLS_CC)
-static void _http_curl_setopts(CURL *ch, const char *url, HashTable *options, phpstr *response TSRMLS_DC);
-
-#define http_curl_getopt(o, k, t) _http_curl_getopt_ex((o), (k), sizeof(k), (t) TSRMLS_CC)
-#define http_curl_getopt_ex(o, k, l, t) _http_curl_getopt_ex((o), (k), (l), (t) TSRMLS_CC)
-static inline zval *_http_curl_getopt_ex(HashTable *options, char *key, size_t keylen, int type TSRMLS_DC);
-
-static size_t http_curl_write_callback(char *, size_t, size_t, void *);
-static int http_curl_progress_callback(void *, double, double, double, double);
-static int http_curl_debug_callback(CURL *, curl_infotype, char *, size_t, void *);
-
-#define http_curl_getinfo(c, h) _http_curl_getinfo((c), (h) TSRMLS_CC)
-static inline void _http_curl_getinfo(CURL *ch, HashTable *info TSRMLS_DC);
-
-/* {{{ static inline char *http_curl_copystr(char *) */
-static inline char *_http_curl_copystr(const char *str TSRMLS_DC)
-{
- char *new_str = estrdup(str);
- zend_llist_add_element(&HTTP_G(to_free), &new_str);
- return new_str;
-}
-/* }}} */
-
-/* {{{ static size_t http_curl_write_callback(char *, size_t, size_t, void *) */
-static size_t http_curl_write_callback(char *buf, size_t len, size_t n, void *s)
-{
- return s ? phpstr_append(PHPSTR(s), buf, len * n) : len * n;
-}
-/* }}} */
-
-/* {{{ static int http_curl_progress_callback(void *, double, double, double, double) */
-static int http_curl_progress_callback(void *data, double dltotal, double dlnow, double ultotal, double ulnow)
-{
- zval *params_pass[4], params_local[4], retval, *func = (zval *) data;
- TSRMLS_FETCH();
-
- params_pass[0] = ¶ms_local[0];
- params_pass[1] = ¶ms_local[1];
- params_pass[2] = ¶ms_local[2];
- params_pass[3] = ¶ms_local[3];
-
- ZVAL_DOUBLE(params_pass[0], dltotal);
- ZVAL_DOUBLE(params_pass[1], dlnow);
- ZVAL_DOUBLE(params_pass[2], ultotal);
- ZVAL_DOUBLE(params_pass[3], ulnow);
-
- return call_user_function(EG(function_table), NULL, func, &retval, 4, params_pass TSRMLS_CC);
-}
-/* }}} */
-
-static int http_curl_debug_callback(CURL *ch, curl_infotype type, char *string, size_t length, void *data)
-{
- zval *params_pass[2], params_local[2], retval, *func = (zval *) data;
- TSRMLS_FETCH();
-
- params_pass[0] = ¶ms_local[0];
- params_pass[1] = ¶ms_local[1];
-
- ZVAL_LONG(params_pass[0], type);
- ZVAL_STRINGL(params_pass[1], string, length, 1);
-
- call_user_function(EG(function_table), NULL, func, &retval, 2, params_pass TSRMLS_CC);
-
- return 0;
-}
-/* {{{ static inline zval *http_curl_getopt(HashTable *, char *, size_t, int) */
-static inline zval *_http_curl_getopt_ex(HashTable *options, char *key, size_t keylen, int type TSRMLS_DC)
-{
- zval **zoption;
-
- if (!options || (SUCCESS != zend_hash_find(options, key, keylen, (void **) &zoption))) {
- return NULL;
- }
-
- if (Z_TYPE_PP(zoption) != type) {
- switch (type)
- {
- case IS_BOOL: convert_to_boolean_ex(zoption); break;
- case IS_LONG: convert_to_long_ex(zoption); break;
- case IS_DOUBLE: convert_to_double_ex(zoption); break;
- case IS_STRING: convert_to_string_ex(zoption); break;
- case IS_ARRAY: convert_to_array_ex(zoption); break;
- case IS_OBJECT: convert_to_object_ex(zoption); break;
- default:
- break;
- }
- }
-
- return *zoption;
-}
-/* }}} */
-
-/* {{{ static void http_curl_setopts(CURL *, char *, HashTable *, phpstr *) */
-static void _http_curl_setopts(CURL *ch, const char *url, HashTable *options, phpstr *response TSRMLS_DC)
-{
- zval *zoption;
- zend_bool range_req = 0;
-
-#define HTTP_CURL_OPT(OPTION, p) curl_easy_setopt(ch, CURLOPT_##OPTION, (p))
-
- /* standard options */
- if (url) {
- HTTP_CURL_OPT(URL, url);
- }
-
- HTTP_CURL_OPT(HEADER, 0);
- HTTP_CURL_OPT(FILETIME, 1);
- HTTP_CURL_OPT(AUTOREFERER, 1);
- HTTP_CURL_OPT(WRITEFUNCTION, http_curl_write_callback);
- HTTP_CURL_OPT(HEADERFUNCTION, http_curl_write_callback);
-
- if (response) {
- HTTP_CURL_OPT(WRITEDATA, response);
- HTTP_CURL_OPT(WRITEHEADER, response);
- }
-
-#if defined(ZTS) && (LIBCURL_VERSION_NUM >= 0x070a00)
- HTTP_CURL_OPT(NOSIGNAL, 1);
-#endif
-#if LIBCURL_VERSION_NUM < 0x070c00
- HTTP_CURL_OPT(ERRORBUFFER, HTTP_G(curlerr));
-#endif
-
- /* progress callback */
- if (zoption = http_curl_getopt(options, "onprogress", 0)) {
- HTTP_CURL_OPT(NOPROGRESS, 0);
- HTTP_CURL_OPT(PROGRESSFUNCTION, http_curl_progress_callback);
- HTTP_CURL_OPT(PROGRESSDATA, zoption);
- } else {
- HTTP_CURL_OPT(NOPROGRESS, 1);
- }
-
- /* debug callback */
- if (zoption = http_curl_getopt(options, "ondebug", 0)) {
- HTTP_CURL_OPT(VERBOSE, 1);
- HTTP_CURL_OPT(DEBUGFUNCTION, http_curl_debug_callback);
- HTTP_CURL_OPT(DEBUGDATA, zoption);
- } else {
- HTTP_CURL_OPT(VERBOSE, 0);
- }
-
- /* proxy */
- if (zoption = http_curl_getopt(options, "proxyhost", IS_STRING)) {
- HTTP_CURL_OPT(PROXY, http_curl_copystr(Z_STRVAL_P(zoption)));
- /* port */
- if (zoption = http_curl_getopt(options, "proxyport", IS_LONG)) {
- HTTP_CURL_OPT(PROXYPORT, Z_LVAL_P(zoption));
- }
- /* user:pass */
- if (zoption = http_curl_getopt(options, "proxyauth", IS_STRING)) {
- HTTP_CURL_OPT(PROXYUSERPWD, http_curl_copystr(Z_STRVAL_P(zoption)));
- }
-#if LIBCURL_VERSION_NUM >= 0x070a07
- /* auth method */
- if (zoption = http_curl_getopt(options, "proxyauthtype", IS_LONG)) {
- HTTP_CURL_OPT(PROXYAUTH, Z_LVAL_P(zoption));
- }
-#endif
- }
-
- /* outgoing interface */
- if (zoption = http_curl_getopt(options, "interface", IS_STRING)) {
- HTTP_CURL_OPT(INTERFACE, http_curl_copystr(Z_STRVAL_P(zoption)));
- }
-
- /* another port */
- if (zoption = http_curl_getopt(options, "port", IS_LONG)) {
- HTTP_CURL_OPT(PORT, Z_LVAL_P(zoption));
- }
-
- /* auth */
- if (zoption = http_curl_getopt(options, "httpauth", IS_STRING)) {
- HTTP_CURL_OPT(USERPWD, http_curl_copystr(Z_STRVAL_P(zoption)));
- }
-#if LIBCURL_VERSION_NUM >= 0x070a06
- if (zoption = http_curl_getopt(options, "httpauthtype", IS_LONG)) {
- HTTP_CURL_OPT(HTTPAUTH, Z_LVAL_P(zoption));
- }
-#endif
-
- /* compress, empty string enables deflate and gzip */
- if (zoption = http_curl_getopt(options, "compress", IS_BOOL)) {
- if (Z_LVAL_P(zoption)) {
- HTTP_CURL_OPT(ENCODING, http_curl_copystr(""));
- }
- }
-
- /* redirects, defaults to 0 */
- if (zoption = http_curl_getopt(options, "redirect", IS_LONG)) {
- HTTP_CURL_OPT(FOLLOWLOCATION, Z_LVAL_P(zoption) ? 1 : 0);
- HTTP_CURL_OPT(MAXREDIRS, Z_LVAL_P(zoption));
- if (zoption = http_curl_getopt(options, "unrestrictedauth", IS_BOOL)) {
- HTTP_CURL_OPT(UNRESTRICTED_AUTH, Z_LVAL_P(zoption));
- }
- } else {
- HTTP_CURL_OPT(FOLLOWLOCATION, 0);
- }
-
- /* referer */
- if (zoption = http_curl_getopt(options, "referer", IS_STRING)) {
- HTTP_CURL_OPT(REFERER, http_curl_copystr(Z_STRVAL_P(zoption)));
- }
-
- /* useragent, default "PECL::HTTP/version (PHP/version)" */
- if (zoption = http_curl_getopt(options, "useragent", IS_STRING)) {
- HTTP_CURL_OPT(USERAGENT, http_curl_copystr(Z_STRVAL_P(zoption)));
- } else {
- HTTP_CURL_OPT(USERAGENT,
- "PECL::HTTP/" HTTP_PEXT_VERSION " (PHP/" PHP_VERSION ")");
- }
-
- /* additional headers, array('name' => 'value') */
- if (zoption = http_curl_getopt(options, "headers", IS_ARRAY)) {
- char *header_key;
- long header_idx;
- struct curl_slist *headers = NULL;
-
- FOREACH_KEY(zoption, header_key, header_idx) {
- if (header_key) {
- zval **header_val;
- if (SUCCESS == zend_hash_get_current_data(Z_ARRVAL_P(zoption), (void **) &header_val)) {
- char header[1024] = {0};
- snprintf(header, 1023, "%s: %s", header_key, Z_STRVAL_PP(header_val));
- headers = curl_slist_append(headers, http_curl_copystr(header));
- }
-
- /* reset */
- header_key = NULL;
- }
- }
-
- if (headers) {
- HTTP_CURL_OPT(HTTPHEADER, headers);
- }
- }
-
- /* cookies, array('name' => 'value') */
- if (zoption = http_curl_getopt(options, "cookies", IS_ARRAY)) {
- char *cookie_key = NULL;
- long cookie_idx = 0;
- phpstr *qstr = phpstr_new();
-
- FOREACH_KEY(zoption, cookie_key, cookie_idx) {
- if (cookie_key) {
- zval **cookie_val;
- if (SUCCESS == zend_hash_get_current_data(Z_ARRVAL_P(zoption), (void **) &cookie_val)) {
- phpstr_appendf(qstr, "%s=%s; ", cookie_key, Z_STRVAL_PP(cookie_val));
- }
-
- /* reset */
- cookie_key = NULL;
- }
- }
-
- if (qstr->used) {
- phpstr_fix(qstr);
- HTTP_CURL_OPT(COOKIE, http_curl_copystr(qstr->data));
- }
- phpstr_free(qstr);
- }
-
- /* cookiestore */
- if (zoption = http_curl_getopt(options, "cookiestore", IS_STRING)) {
- HTTP_CURL_OPT(COOKIEFILE, http_curl_copystr(Z_STRVAL_P(zoption)));
- HTTP_CURL_OPT(COOKIEJAR, http_curl_copystr(Z_STRVAL_P(zoption)));
- }
-
- /* resume */
- if (zoption = http_curl_getopt(options, "resume", IS_LONG)) {
- range_req = 1;
- HTTP_CURL_OPT(RESUME_FROM, Z_LVAL_P(zoption));
- }
-
- /* maxfilesize */
- if (zoption = http_curl_getopt(options, "maxfilesize", IS_LONG)) {
- HTTP_CURL_OPT(MAXFILESIZE, Z_LVAL_P(zoption));
- }
-
- /* lastmodified */
- if (zoption = http_curl_getopt(options, "lastmodified", IS_LONG)) {
- HTTP_CURL_OPT(TIMECONDITION, range_req ? CURL_TIMECOND_IFUNMODSINCE : CURL_TIMECOND_IFMODSINCE);
- HTTP_CURL_OPT(TIMEVALUE, Z_LVAL_P(zoption));
- }
-
- /* timeout */
- if (zoption = http_curl_getopt(options, "timeout", IS_LONG)) {
- HTTP_CURL_OPT(TIMEOUT, Z_LVAL_P(zoption));
- }
-
- /* connecttimeout, defaults to 1 */
- if (zoption = http_curl_getopt(options, "connecttimeout", IS_LONG)) {
- HTTP_CURL_OPT(CONNECTTIMEOUT, Z_LVAL_P(zoption));
- } else {
- HTTP_CURL_OPT(CONNECTTIMEOUT, 1);
- }
-
- /* ssl */
- if (zoption = http_curl_getopt(options, "ssl", IS_ARRAY)) {
-#define HTTP_CURL_OPT_STRING(keyname) HTTP_CURL_OPT_STRING_EX(keyname, keyname)
-#define HTTP_CURL_OPT_SSL_STRING(keyname) HTTP_CURL_OPT_STRING_EX(keyname, SSL##keyname)
-#define HTTP_CURL_OPT_SSL_STRING_(keyname) HTTP_CURL_OPT_STRING_EX(keyname, SSL_##keyname)
-#define HTTP_CURL_OPT_STRING_EX(keyname, optname) \
- if (!strcasecmp(key, #keyname)) { \
- convert_to_string_ex(param); \
- HTTP_CURL_OPT(optname, http_curl_copystr(Z_STRVAL_PP(param))); \
- key = NULL; \
- continue; \
- }
-#define HTTP_CURL_OPT_LONG(keyname) HTTP_OPT_SSL_LONG_EX(keyname, keyname)
-#define HTTP_CURL_OPT_SSL_LONG(keyname) HTTP_CURL_OPT_LONG_EX(keyname, SSL##keyname)
-#define HTTP_CURL_OPT_SSL_LONG_(keyname) HTTP_CURL_OPT_LONG_EX(keyname, SSL_##keyname)
-#define HTTP_CURL_OPT_LONG_EX(keyname, optname) \
- if (!strcasecmp(key, #keyname)) { \
- convert_to_long_ex(param); \
- HTTP_CURL_OPT(optname, Z_LVAL_PP(param)); \
- key = NULL; \
- continue; \
- }
-
- long idx;
- char *key = NULL;
- zval **param;
-
- FOREACH_KEYVAL(zoption, key, idx, param) {
- if (key) {fprintf(stderr, "%s\n", key);
- HTTP_CURL_OPT_SSL_STRING(CERT);
-#if LIBCURL_VERSION_NUM >= 0x070903
- HTTP_CURL_OPT_SSL_STRING(CERTTYPE);
-#endif
- HTTP_CURL_OPT_SSL_STRING(CERTPASSWD);
-
- HTTP_CURL_OPT_SSL_STRING(KEY);
- HTTP_CURL_OPT_SSL_STRING(KEYTYPE);
- HTTP_CURL_OPT_SSL_STRING(KEYPASSWD);
-
- HTTP_CURL_OPT_SSL_STRING(ENGINE);
- HTTP_CURL_OPT_SSL_LONG(VERSION);
-
- HTTP_CURL_OPT_SSL_LONG_(VERIFYPEER);
- HTTP_CURL_OPT_SSL_LONG_(VERIFYHOST);
- HTTP_CURL_OPT_SSL_STRING_(CIPHER_LIST);
-
-
- HTTP_CURL_OPT_STRING(CAINFO);
-#if LIBCURL_VERSION_NUM >= 0x070908
- HTTP_CURL_OPT_STRING(CAPATH);
-#endif
- HTTP_CURL_OPT_STRING(RANDOM_FILE);
- HTTP_CURL_OPT_STRING(EGDSOCKET);
-
- /* reset key */
- key = NULL;
- }
- }
- } else {
- /* disable SSL verification by default */
- HTTP_CURL_OPT(SSL_VERIFYPEER, 0);
- HTTP_CURL_OPT(SSL_VERIFYHOST, 0);
- }
-}
-/* }}} */
-
-/* {{{ static inline http_curl_getinfo(CURL, HashTable *) */
-static inline void _http_curl_getinfo(CURL *ch, HashTable *info TSRMLS_DC)
-{
- zval array;
- Z_ARRVAL(array) = info;
-
-#define HTTP_CURL_INFO(I) HTTP_CURL_INFO_EX(I, I)
-#define HTTP_CURL_INFO_EX(I, X) \
- switch (CURLINFO_ ##I & ~CURLINFO_MASK) \
- { \
- case CURLINFO_STRING: \
- { \
- char *c; \
- if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_ ##I, &c)) { \
- add_assoc_string(&array, pretty_key(http_curl_copystr(#X), sizeof(#X)-1, 0, 0), c ? c : "", 1); \
- } \
- } \
- break; \
-\
- case CURLINFO_DOUBLE: \
- { \
- double d; \
- if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_ ##I, &d)) { \
- add_assoc_double(&array, pretty_key(http_curl_copystr(#X), sizeof(#X)-1, 0, 0), d); \
- } \
- } \
- break; \
-\
- case CURLINFO_LONG: \
- { \
- long l; \
- if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_ ##I, &l)) { \
- add_assoc_long(&array, pretty_key(http_curl_copystr(#X), sizeof(#X)-1, 0, 0), l); \
- } \
- } \
- break; \
- }
-
- HTTP_CURL_INFO(EFFECTIVE_URL);
-
-#if LIBCURL_VERSION_NUM >= 0x070a07
- HTTP_CURL_INFO(RESPONSE_CODE);
-#else
- HTTP_CURL_INFO_EX(HTTP_CODE, RESPONSE_CODE);
-#endif
- HTTP_CURL_INFO(HTTP_CONNECTCODE);
-
-#if LIBCURL_VERSION_NUM >= 0x070500
- HTTP_CURL_INFO(FILETIME);
-#endif
- HTTP_CURL_INFO(TOTAL_TIME);
- HTTP_CURL_INFO(NAMELOOKUP_TIME);
- HTTP_CURL_INFO(CONNECT_TIME);
- HTTP_CURL_INFO(PRETRANSFER_TIME);
- HTTP_CURL_INFO(STARTTRANSFER_TIME);
-#if LIBCURL_VERSION_NUM >= 0x070907
- HTTP_CURL_INFO(REDIRECT_TIME);
- HTTP_CURL_INFO(REDIRECT_COUNT);
-#endif
-
- HTTP_CURL_INFO(SIZE_UPLOAD);
- HTTP_CURL_INFO(SIZE_DOWNLOAD);
- HTTP_CURL_INFO(SPEED_DOWNLOAD);
- HTTP_CURL_INFO(SPEED_UPLOAD);
-
- HTTP_CURL_INFO(HEADER_SIZE);
- HTTP_CURL_INFO(REQUEST_SIZE);
-
- HTTP_CURL_INFO(SSL_VERIFYRESULT);
-#if LIBCURL_VERSION_NUM >= 0x070c03
- /*HTTP_CURL_INFO(SSL_ENGINES);
- todo: CURLINFO_SLIST */
-#endif
-
- HTTP_CURL_INFO(CONTENT_LENGTH_DOWNLOAD);
- HTTP_CURL_INFO(CONTENT_LENGTH_UPLOAD);
- HTTP_CURL_INFO(CONTENT_TYPE);
-
-#if LIBCURL_VERSION_NUM >= 0x070a03
- /*HTTP_CURL_INFO(PRIVATE);*/
-#endif
-
-#if LIBCURL_VERSION_NUM >= 0x070a08
- HTTP_CURL_INFO(HTTPAUTH_AVAIL);
- HTTP_CURL_INFO(PROXYAUTH_AVAIL);
-#endif
-
-#if LIBCURL_VERSION_NUM >= 0x070c02
- /*HTTP_CURL_INFO(OS_ERRNO);*/
-#endif
-
-#if LIBCURL_VERSION_NUM >= 0x070c03
- HTTP_CURL_INFO(NUM_CONNECTS);
-#endif
-}
-/* }}} */
-
-/* {{{ STATUS http_get_ex(CURL *, char *, HashTable *, HashTable *, phpstr *) */
-PHP_HTTP_API STATUS _http_get_ex(CURL *ch, const char *URL, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC)
-{
- zend_bool clean_curl = 0;
-
- http_curl_startup(ch, clean_curl, URL, options, response);
- curl_easy_setopt(ch, CURLOPT_HTTPGET, 1);
- http_curl_perform(ch, clean_curl, response);
-
- if (info) {
- http_curl_getinfo(ch, info);
- }
-
- http_curl_cleanup(ch, clean_curl, response);
-
- return SUCCESS;
-}
-
-/* {{{ STATUS http_head_ex(CURL *, char *, HashTable *, HashTable *, phpstr *) */
-PHP_HTTP_API STATUS _http_head_ex(CURL *ch, const char *URL, HashTable *options,HashTable *info, phpstr *response TSRMLS_DC)
-{
- zend_bool clean_curl = 0;
-
- http_curl_startup(ch, clean_curl, URL, options, response);
- curl_easy_setopt(ch, CURLOPT_NOBODY, 1);
- http_curl_perform(ch, clean_curl, response);
-
- if (info) {
- http_curl_getinfo(ch, info);
- }
-
- http_curl_cleanup(ch, clean_curl, response);
-
- return SUCCESS;
-}
-
-/* {{{ STATUS http_post_data_ex(CURL *, char *, char *, size_t, HashTable *, HashTable *, phpstr *) */
-PHP_HTTP_API STATUS _http_post_data_ex(CURL *ch, const char *URL, char *postdata,
- size_t postdata_len, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC)
-{
- zend_bool clean_curl = 0;
-
- http_curl_startup(ch, clean_curl, URL, options, response);
- curl_easy_setopt(ch, CURLOPT_POST, 1);
- curl_easy_setopt(ch, CURLOPT_POSTFIELDS, postdata);
- curl_easy_setopt(ch, CURLOPT_POSTFIELDSIZE, postdata_len);
- http_curl_perform(ch, clean_curl, response);
-
- if (info) {
- http_curl_getinfo(ch, info);
- }
-
- http_curl_cleanup(ch, clean_curl, response);
-
- return SUCCESS;
-}
-/* }}} */
-
-/* {{{ STATUS http_post_array_ex(CURL *, char *, HashTable *, HashTable *, HashTable *, phpstr *) */
-PHP_HTTP_API STATUS _http_post_array_ex(CURL *ch, const char *URL, HashTable *postarray,
- HashTable *options, HashTable *info, phpstr *response TSRMLS_DC)
-{
- STATUS status;
- char *encoded;
- size_t encoded_len;
-
- if (SUCCESS != http_urlencode_hash_ex(postarray, 1, NULL, 0, &encoded, &encoded_len)) {
- http_error(E_WARNING, HTTP_E_ENCODE, "Could not encode post data");
- return FAILURE;
- }
-
- status = http_post_data_ex(ch, URL, encoded, encoded_len, options, info, response);
- efree(encoded);
-
- return status;
-}
-/* }}} */
-
-/* {{{ STATUS http_post_curldata_ex(CURL *, char *, curl_httppost *, HashTable *, HashTable *, phpstr *) */
-PHP_HTTP_API STATUS _http_post_curldata_ex(CURL *ch, const char *URL, struct curl_httppost *curldata,
- HashTable *options, HashTable *info, phpstr *response TSRMLS_DC)
-{
- zend_bool clean_curl = 0;
-
- http_curl_startup(ch, clean_curl, URL, options, response);
- curl_easy_setopt(ch, CURLOPT_POST, 1);
- curl_easy_setopt(ch, CURLOPT_HTTPPOST, curldata);
- http_curl_perform(ch, clean_curl, response);
-
- if (info) {
- http_curl_getinfo(ch, info);
- }
-
- http_curl_cleanup(ch, clean_curl, response);
-
- return SUCCESS;
-}
-/* }}} */
-
-/*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * End:
- * vim600: noet sw=4 ts=4 fdm=marker
- * vim<600: noet sw=4 ts=4
- */
#include "php_http_std_defs.h"
#include "php_http_api.h"
#include "php_http_auth_api.h"
-#include "php_http_curl_api.h"
+#include "php_http_request_api.h"
#include "php_http_cache_api.h"
-#include "php_http_curl_api.h"
+#include "php_http_request_api.h"
#include "php_http_date_api.h"
#include "php_http_headers_api.h"
#include "php_http_message_api.h"
char *URL, *postdata;
int postdata_len, URL_len;
phpstr response;
+ http_request_body body;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|a/!z", &URL, &URL_len, &postdata, &postdata_len, &options, &info) != SUCCESS) {
RETURN_FALSE;
array_init(info);
}
+ body.type = HTTP_REQUEST_BODY_CSTRING;
+ body.data = postdata;
+ body.size = postdata_len;
+
phpstr_init_ex(&response, HTTP_CURLBUF_SIZE, 0);
- if (SUCCESS == http_post_data(URL, postdata, (size_t) postdata_len, options ? Z_ARRVAL_P(options) : NULL, info ? Z_ARRVAL_P(info) : NULL, &response)) {
- RETURN_PHPSTR_VAL(response);
+ if (SUCCESS == http_post(URL, &body, options ? Z_ARRVAL_P(options) : NULL, info ? Z_ARRVAL_P(info) : NULL, &response)) {
+ RETVAL_PHPSTR_VAL(response);
} else {
- RETURN_FALSE;
+ RETVAL_FALSE;
}
+ http_request_body_dtor(&body);
}
/* }}} */
-/* {{{ proto string http_post_array(string url, array data[, array options[, array &info]])
+/* {{{ proto string http_post_fields(string url, array data[, array files[, array options[, array &info]]])
*
* Performs an HTTP POST request, posting www-form-urlencoded array data.
* Returns the HTTP response as string.
* See http_get() for a full list of available options.
*/
-PHP_FUNCTION(http_post_array)
+PHP_FUNCTION(http_post_fields)
{
- zval *options = NULL, *info = NULL, *postdata;
+ zval *options = NULL, *info = NULL, *fields, *files = NULL;
char *URL;
int URL_len;
phpstr response;
+ http_request_body body;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sa|a/!z", &URL, &URL_len, &postdata, &options, &info) != SUCCESS) {
+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sa|aa/!z", &URL, &URL_len, &fields, &files, &options, &info) != SUCCESS) {
+ RETURN_FALSE;
+ }
+
+ if (SUCCESS != http_request_body_fill(&body, Z_ARRVAL_P(fields), files ? Z_ARRVAL_P(files) : NULL)) {
RETURN_FALSE;
}
}
phpstr_init_ex(&response, HTTP_CURLBUF_SIZE, 0);
- if (SUCCESS == http_post_array(URL, Z_ARRVAL_P(postdata), options ? Z_ARRVAL_P(options) : NULL, info ? Z_ARRVAL_P(info) : NULL, &response)) {
- RETURN_PHPSTR_VAL(response);
+ if (SUCCESS == http_post(URL, &body, options ? Z_ARRVAL_P(options) : NULL, info ? Z_ARRVAL_P(info) : NULL, &response)) {
+ RETVAL_PHPSTR_VAL(response);
} else {
- RETURN_FALSE;
+ RETVAL_FALSE;
}
+ http_request_body_dtor(&body);
}
/* }}} */
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/
-
#include "php_http_message_api.h"
#include "php_http_headers_api.h"
#include "php_http_send_api.h"
-#include "php_http_curl_api.h"
+#include "php_http_request_api.h"
#include "php_http_url_api.h"
#include "phpstr/phpstr.h"
}
if (!strcasecmp("POST", message->info.request.method)) {
- rs = http_post_data(uri, PHPSTR_VAL(message), PHPSTR_LEN(message), Z_ARRVAL(options), NULL, NULL);
+ http_request_body body = {HTTP_REQUEST_BODY_CSTRING, PHPSTR_VAL(message), PHPSTR_LEN(message)};
+ rs = http_post(uri, &body, Z_ARRVAL(options), NULL, NULL);
} else
if (!strcasecmp("GET", message->info.request.method)) {
rs = http_get(uri, Z_ARRVAL(options), NULL, NULL);
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/
-
#include "php_http_std_defs.h"
#include "php_http_api.h"
#include "php_http_cache_api.h"
-#include "php_http_curl_api.h"
+#include "php_http_request_api.h"
#include "php_http_date_api.h"
#include "php_http_headers_api.h"
#include "php_http_message_api.h"
switch (Z_LVAL_P(meth))
{
case HTTP_GET:
- status = http_get_ex(obj->ch, request_uri, Z_ARRVAL_P(opts), Z_ARRVAL_P(info), &obj->response);
+ case HTTP_HEAD:
+ status = http_request_ex(obj->ch, Z_LVAL_P(meth), request_uri, NULL, Z_ARRVAL_P(opts), Z_ARRVAL_P(info), &obj->response);
break;
- case HTTP_HEAD:
- status = http_head_ex(obj->ch, request_uri, Z_ARRVAL_P(opts), Z_ARRVAL_P(info), &obj->response);
+ case HTTP_PUT:
break;
case HTTP_POST:
- {
- zval *post_files, *post_data;
-
- post_files = GET_PROP(obj, postFiles);
- post_data = GET_PROP(obj, postData);
-
- if (!zend_hash_num_elements(Z_ARRVAL_P(post_files))) {
-
- /* urlencoded post */
- status = http_post_array_ex(obj->ch, request_uri, Z_ARRVAL_P(post_data), Z_ARRVAL_P(opts), Z_ARRVAL_P(info), &obj->response);
-
- } else {
-
- /*
- * multipart post
- */
- char *key = NULL;
- long idx;
- zval **data;
- struct curl_httppost *http_post_data[2] = {NULL, NULL};
-
- /* normal data */
- FOREACH_KEYVAL(post_data, key, idx, data) {
- if (key) {
- convert_to_string_ex(data);
- curl_formadd(&http_post_data[0], &http_post_data[1],
- CURLFORM_COPYNAME, key,
- CURLFORM_COPYCONTENTS, Z_STRVAL_PP(data),
- CURLFORM_CONTENTSLENGTH, Z_STRLEN_PP(data),
- CURLFORM_END
- );
-
- /* reset */
- key = NULL;
- }
- }
-
- /* file data */
- FOREACH_VAL(post_files, data) {
- zval **file, **type, **name;
-
- if ( SUCCESS == zend_hash_find(Z_ARRVAL_PP(data), "name", sizeof("name"), (void **) &name) &&
- SUCCESS == zend_hash_find(Z_ARRVAL_PP(data), "type", sizeof("type"), (void **) &type) &&
- SUCCESS == zend_hash_find(Z_ARRVAL_PP(data), "file", sizeof("file"), (void **) &file)) {
-
- curl_formadd(&http_post_data[0], &http_post_data[1],
- CURLFORM_COPYNAME, Z_STRVAL_PP(name),
- CURLFORM_FILE, Z_STRVAL_PP(file),
- CURLFORM_CONTENTTYPE, Z_STRVAL_PP(type),
- CURLFORM_END
- );
- }
- }
+ default:
+ {
+ http_request_body body;
+ zval *fields = GET_PROP(obj, postData), *files = GET_PROP(obj, postFiles);
- status = http_post_curldata_ex(obj->ch, request_uri, http_post_data[0], Z_ARRVAL_P(opts), Z_ARRVAL_P(info), &obj->response);
- curl_formfree(http_post_data[0]);
- }
+ if (SUCCESS == (status = http_request_body_fill(&body, Z_ARRVAL_P(fields), Z_ARRVAL_P(files)))) {
+ status = http_request_ex(obj->ch, Z_LVAL_P(meth), request_uri, &body, Z_ARRVAL_P(opts), Z_ARRVAL_P(info), &obj->response);
+ http_request_body_dtor(&body);
}
- break;
-
- default:
+ }
break;
}
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/
-
--- /dev/null
+/*
+ +----------------------------------------------------------------------+
+ | PECL :: http |
+ +----------------------------------------------------------------------+
+ | This source file is subject to version 3.0 of the PHP license, that |
+ | is bundled with this package in the file LICENSE, and is available |
+ | through the world-wide-web at http://www.php.net/license/3_0.txt. |
+ | If you did not receive a copy of the PHP license and are unable to |
+ | obtain it through the world-wide-web, please send a note to |
+ | license@php.net so we can mail you a copy immediately. |
+ +----------------------------------------------------------------------+
+ | Copyright (c) 2004-2005 Michael Wallner <mike@php.net> |
+ +----------------------------------------------------------------------+
+*/
+
+/* $Id$ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#ifdef PHP_WIN32
+# include <winsock2.h>
+#endif
+
+#include <curl/curl.h>
+
+#include "phpstr/phpstr.h"
+
+#include "php.h"
+#include "php_http.h"
+#include "php_http_std_defs.h"
+#include "php_http_api.h"
+#include "php_http_request_api.h"
+#include "php_http_url_api.h"
+
+ZEND_EXTERN_MODULE_GLOBALS(http)
+
+#if LIBCURL_VERSION_NUM < 0x070c00
+# define curl_easy_strerror(code) HTTP_G(curlerr)
+#endif
+
+#define HTTP_CURL_INFO(I) HTTP_CURL_INFO_EX(I, I)
+#define HTTP_CURL_INFO_EX(I, X) \
+ switch (CURLINFO_ ##I & ~CURLINFO_MASK) \
+ { \
+ case CURLINFO_STRING: \
+ { \
+ char *c; \
+ if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_ ##I, &c)) { \
+ add_assoc_string(&array, pretty_key(http_curl_copystr(#X), sizeof(#X)-1, 0, 0), c ? c : "", 1); \
+ } \
+ } \
+ break; \
+\
+ case CURLINFO_DOUBLE: \
+ { \
+ double d; \
+ if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_ ##I, &d)) { \
+ add_assoc_double(&array, pretty_key(http_curl_copystr(#X), sizeof(#X)-1, 0, 0), d); \
+ } \
+ } \
+ break; \
+\
+ case CURLINFO_LONG: \
+ { \
+ long l; \
+ if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_ ##I, &l)) { \
+ add_assoc_long(&array, pretty_key(http_curl_copystr(#X), sizeof(#X)-1, 0, 0), l); \
+ } \
+ } \
+ break; \
+ }
+
+#define HTTP_CURL_OPT(OPTION, p) curl_easy_setopt(ch, CURLOPT_##OPTION, (p))
+#define HTTP_CURL_OPT_STRING(keyname) HTTP_CURL_OPT_STRING_EX(keyname, keyname)
+#define HTTP_CURL_OPT_SSL_STRING(keyname) HTTP_CURL_OPT_STRING_EX(keyname, SSL##keyname)
+#define HTTP_CURL_OPT_SSL_STRING_(keyname) HTTP_CURL_OPT_STRING_EX(keyname, SSL_##keyname)
+#define HTTP_CURL_OPT_STRING_EX(keyname, optname) \
+ if (!strcasecmp(key, #keyname)) { \
+ convert_to_string_ex(param); \
+ HTTP_CURL_OPT(optname, http_curl_copystr(Z_STRVAL_PP(param))); \
+ key = NULL; \
+ continue; \
+ }
+#define HTTP_CURL_OPT_LONG(keyname) HTTP_OPT_SSL_LONG_EX(keyname, keyname)
+#define HTTP_CURL_OPT_SSL_LONG(keyname) HTTP_CURL_OPT_LONG_EX(keyname, SSL##keyname)
+#define HTTP_CURL_OPT_SSL_LONG_(keyname) HTTP_CURL_OPT_LONG_EX(keyname, SSL_##keyname)
+#define HTTP_CURL_OPT_LONG_EX(keyname, optname) \
+ if (!strcasecmp(key, #keyname)) { \
+ convert_to_long_ex(param); \
+ HTTP_CURL_OPT(optname, Z_LVAL_PP(param)); \
+ key = NULL; \
+ continue; \
+ }
+
+
+static const char *const http_request_methods[HTTP_MAX_REQUEST_METHOD + 1];
+#define http_curl_copystr(s) _http_curl_copystr((s) TSRMLS_CC)
+static inline char *_http_curl_copystr(const char *str TSRMLS_DC);
+#define http_curl_getopt(o, k, t) _http_curl_getopt_ex((o), (k), sizeof(k), (t) TSRMLS_CC)
+#define http_curl_getopt_ex(o, k, l, t) _http_curl_getopt_ex((o), (k), (l), (t) TSRMLS_CC)
+static inline zval *_http_curl_getopt_ex(HashTable *options, char *key, size_t keylen, int type TSRMLS_DC);
+static size_t http_curl_write_callback(char *, size_t, size_t, void *);
+static size_t http_curl_read_callback(void *, size_t, size_t, void *);
+static int http_curl_progress_callback(void *, double, double, double, double);
+static int http_curl_debug_callback(CURL *, curl_infotype, char *, size_t, void *);
+
+
+/* {{{ STATUS http_request_body_fill(http_request_body *body, HashTable *, HashTable *) */
+PHP_HTTP_API STATUS _http_request_body_fill(http_request_body *body, HashTable *fields, HashTable *files TSRMLS_DC)
+{
+ if (files && (zend_hash_num_elements(files) > 0)) {
+ char *key = NULL;
+ ulong idx;
+ zval **data;
+ struct curl_httppost *http_post_data[2] = {NULL, NULL};
+
+ /* normal data */
+ FOREACH_HASH_KEYVAL(fields, key, idx, data) {
+ CURLcode err;
+ if (key) {
+ convert_to_string_ex(data);
+ err = curl_formadd(&http_post_data[0], &http_post_data[1],
+ CURLFORM_COPYNAME, key,
+ CURLFORM_COPYCONTENTS, Z_STRVAL_PP(data),
+ CURLFORM_CONTENTSLENGTH, Z_STRLEN_PP(data),
+ CURLFORM_END
+ );
+ if (CURLE_OK != err) {
+ http_error_ex(E_WARNING, HTTP_E_CURL, "Could not encode post fields: %s", curl_easy_strerror(err));
+ curl_formfree(http_post_data[0]);
+ return FAILURE;
+ }
+
+ /* reset */
+ key = NULL;
+ }
+ }
+
+ /* file data */
+ FOREACH_HASH_VAL(files, data) {
+ CURLcode err;
+ zval **file, **type, **name;
+ if ( SUCCESS == zend_hash_find(Z_ARRVAL_PP(data), "name", sizeof("name"), (void **) &name) &&
+ SUCCESS == zend_hash_find(Z_ARRVAL_PP(data), "type", sizeof("type"), (void **) &type) &&
+ SUCCESS == zend_hash_find(Z_ARRVAL_PP(data), "file", sizeof("file"), (void **) &file)) {
+ err = curl_formadd(&http_post_data[0], &http_post_data[1],
+ CURLFORM_COPYNAME, Z_STRVAL_PP(name),
+ CURLFORM_FILE, Z_STRVAL_PP(file),
+ CURLFORM_CONTENTTYPE, Z_STRVAL_PP(type),
+ CURLFORM_END
+ );
+ if (CURLE_OK != err) {
+ http_error_ex(E_WARNING, HTTP_E_CURL, "Could not encode post files: %s", curl_easy_strerror(err));
+ curl_formfree(http_post_data[0]);
+ return FAILURE;
+ }
+ }
+ }
+
+ body->type = HTTP_REQUEST_BODY_CURLPOST;
+ body->data = http_post_data[0];
+ body->size = 0;
+
+ } else {
+ char *encoded;
+ size_t encoded_len;
+
+ if (SUCCESS != http_urlencode_hash_ex(fields, 1, NULL, 0, &encoded, &encoded_len)) {
+ http_error(E_WARNING, HTTP_E_ENCODE, "Could not encode post data");
+ return FAILURE;
+ }
+
+ body->type = HTTP_REQUEST_BODY_CSTRING;
+ body->data = encoded;
+ body->size = encoded_len;
+ }
+
+ return SUCCESS;
+}
+/* }}} */
+
+/* {{{ void http_request_body_dtor(http_request_body *) */
+PHP_HTTP_API void _http_request_body_dtor(http_request_body *body TSRMLS_DC)
+{
+ switch (body->type)
+ {
+ case HTTP_REQUEST_BODY_CSTRING:
+ efree(body->data);
+ break;
+
+ case HTTP_REQUEST_BODY_CURLPOST:
+ curl_formfree(body->data);
+ break;
+ }
+}
+/* }}} */
+
+/* {{{ STATUS http_request_ex(CURL *, http_request_method, char *, http_request_body, HashTable, HashTable, phpstr *) */
+PHP_HTTP_API STATUS _http_request_ex(CURL *ch, http_request_method meth, const char *url, http_request_body *body, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC)
+{
+ CURLcode result = CURLE_OK;
+ STATUS status = SUCCESS;
+ zend_bool clean_curl = 0, range_req = 0;
+ zval *zoption;
+
+ /* check/init CURL handle */
+ if (ch) {
+#if LIBCURL_VERSION_NUM >= 0x070c01
+ curl_easy_reset(ch);
+#endif
+ } else {
+ if (ch = curl_easy_init()) {
+ clean_curl = 1;
+ } else {
+ http_error(E_WARNING, HTTP_E_CURL, "Could not initialize curl");
+ return FAILURE;
+ }
+ }
+
+ /* set options */
+ if (url) {
+ HTTP_CURL_OPT(URL, url);
+ }
+
+ HTTP_CURL_OPT(HEADER, 0);
+ HTTP_CURL_OPT(FILETIME, 1);
+ HTTP_CURL_OPT(AUTOREFERER, 1);
+ HTTP_CURL_OPT(READFUNCTION, http_curl_read_callback);
+ HTTP_CURL_OPT(WRITEFUNCTION, http_curl_write_callback);
+ HTTP_CURL_OPT(HEADERFUNCTION, http_curl_write_callback);
+
+ if (response) {
+ HTTP_CURL_OPT(WRITEDATA, response);
+ HTTP_CURL_OPT(WRITEHEADER, response);
+ }
+
+#if defined(ZTS) && (LIBCURL_VERSION_NUM >= 0x070a00)
+ HTTP_CURL_OPT(NOSIGNAL, 1);
+#endif
+#if LIBCURL_VERSION_NUM < 0x070c00
+ HTTP_CURL_OPT(ERRORBUFFER, HTTP_G(curlerr));
+#endif
+
+ /* progress callback */
+ if (zoption = http_curl_getopt(options, "onprogress", 0)) {
+ HTTP_CURL_OPT(NOPROGRESS, 0);
+ HTTP_CURL_OPT(PROGRESSFUNCTION, http_curl_progress_callback);
+ HTTP_CURL_OPT(PROGRESSDATA, zoption);
+ } else {
+ HTTP_CURL_OPT(NOPROGRESS, 1);
+ }
+
+ /* debug callback */
+ if (zoption = http_curl_getopt(options, "ondebug", 0)) {
+ HTTP_CURL_OPT(VERBOSE, 1);
+ HTTP_CURL_OPT(DEBUGFUNCTION, http_curl_debug_callback);
+ HTTP_CURL_OPT(DEBUGDATA, zoption);
+ } else {
+ HTTP_CURL_OPT(VERBOSE, 0);
+ }
+
+ /* proxy */
+ if (zoption = http_curl_getopt(options, "proxyhost", IS_STRING)) {
+ HTTP_CURL_OPT(PROXY, http_curl_copystr(Z_STRVAL_P(zoption)));
+ /* port */
+ if (zoption = http_curl_getopt(options, "proxyport", IS_LONG)) {
+ HTTP_CURL_OPT(PROXYPORT, Z_LVAL_P(zoption));
+ }
+ /* user:pass */
+ if (zoption = http_curl_getopt(options, "proxyauth", IS_STRING)) {
+ HTTP_CURL_OPT(PROXYUSERPWD, http_curl_copystr(Z_STRVAL_P(zoption)));
+ }
+#if LIBCURL_VERSION_NUM >= 0x070a07
+ /* auth method */
+ if (zoption = http_curl_getopt(options, "proxyauthtype", IS_LONG)) {
+ HTTP_CURL_OPT(PROXYAUTH, Z_LVAL_P(zoption));
+ }
+#endif
+ }
+
+ /* outgoing interface */
+ if (zoption = http_curl_getopt(options, "interface", IS_STRING)) {
+ HTTP_CURL_OPT(INTERFACE, http_curl_copystr(Z_STRVAL_P(zoption)));
+ }
+
+ /* another port */
+ if (zoption = http_curl_getopt(options, "port", IS_LONG)) {
+ HTTP_CURL_OPT(PORT, Z_LVAL_P(zoption));
+ }
+
+ /* auth */
+ if (zoption = http_curl_getopt(options, "httpauth", IS_STRING)) {
+ HTTP_CURL_OPT(USERPWD, http_curl_copystr(Z_STRVAL_P(zoption)));
+ }
+#if LIBCURL_VERSION_NUM >= 0x070a06
+ if (zoption = http_curl_getopt(options, "httpauthtype", IS_LONG)) {
+ HTTP_CURL_OPT(HTTPAUTH, Z_LVAL_P(zoption));
+ }
+#endif
+
+ /* compress, empty string enables deflate and gzip */
+ if (zoption = http_curl_getopt(options, "compress", IS_BOOL)) {
+ if (Z_LVAL_P(zoption)) {
+ HTTP_CURL_OPT(ENCODING, http_curl_copystr(""));
+ }
+ }
+
+ /* redirects, defaults to 0 */
+ if (zoption = http_curl_getopt(options, "redirect", IS_LONG)) {
+ HTTP_CURL_OPT(FOLLOWLOCATION, Z_LVAL_P(zoption) ? 1 : 0);
+ HTTP_CURL_OPT(MAXREDIRS, Z_LVAL_P(zoption));
+ if (zoption = http_curl_getopt(options, "unrestrictedauth", IS_BOOL)) {
+ HTTP_CURL_OPT(UNRESTRICTED_AUTH, Z_LVAL_P(zoption));
+ }
+ } else {
+ HTTP_CURL_OPT(FOLLOWLOCATION, 0);
+ }
+
+ /* referer */
+ if (zoption = http_curl_getopt(options, "referer", IS_STRING)) {
+ HTTP_CURL_OPT(REFERER, http_curl_copystr(Z_STRVAL_P(zoption)));
+ }
+
+ /* useragent, default "PECL::HTTP/version (PHP/version)" */
+ if (zoption = http_curl_getopt(options, "useragent", IS_STRING)) {
+ HTTP_CURL_OPT(USERAGENT, http_curl_copystr(Z_STRVAL_P(zoption)));
+ } else {
+ HTTP_CURL_OPT(USERAGENT,
+ "PECL::HTTP/" HTTP_PEXT_VERSION " (PHP/" PHP_VERSION ")");
+ }
+
+ /* additional headers, array('name' => 'value') */
+ if (zoption = http_curl_getopt(options, "headers", IS_ARRAY)) {
+ char *header_key;
+ long header_idx;
+ struct curl_slist *headers = NULL;
+
+ FOREACH_KEY(zoption, header_key, header_idx) {
+ if (header_key) {
+ zval **header_val;
+ if (SUCCESS == zend_hash_get_current_data(Z_ARRVAL_P(zoption), (void **) &header_val)) {
+ char header[1024] = {0};
+ snprintf(header, 1023, "%s: %s", header_key, Z_STRVAL_PP(header_val));
+ headers = curl_slist_append(headers, http_curl_copystr(header));
+ }
+
+ /* reset */
+ header_key = NULL;
+ }
+ }
+
+ if (headers) {
+ HTTP_CURL_OPT(HTTPHEADER, headers);
+ }
+ }
+
+ /* cookies, array('name' => 'value') */
+ if (zoption = http_curl_getopt(options, "cookies", IS_ARRAY)) {
+ char *cookie_key = NULL;
+ long cookie_idx = 0;
+ phpstr *qstr = phpstr_new();
+
+ FOREACH_KEY(zoption, cookie_key, cookie_idx) {
+ if (cookie_key) {
+ zval **cookie_val;
+ if (SUCCESS == zend_hash_get_current_data(Z_ARRVAL_P(zoption), (void **) &cookie_val)) {
+ phpstr_appendf(qstr, "%s=%s; ", cookie_key, Z_STRVAL_PP(cookie_val));
+ }
+
+ /* reset */
+ cookie_key = NULL;
+ }
+ }
+
+ if (qstr->used) {
+ phpstr_fix(qstr);
+ HTTP_CURL_OPT(COOKIE, http_curl_copystr(qstr->data));
+ }
+ phpstr_free(qstr);
+ }
+
+ /* cookiestore */
+ if (zoption = http_curl_getopt(options, "cookiestore", IS_STRING)) {
+ HTTP_CURL_OPT(COOKIEFILE, http_curl_copystr(Z_STRVAL_P(zoption)));
+ HTTP_CURL_OPT(COOKIEJAR, http_curl_copystr(Z_STRVAL_P(zoption)));
+ }
+
+ /* resume */
+ if (zoption = http_curl_getopt(options, "resume", IS_LONG)) {
+ range_req = 1;
+ HTTP_CURL_OPT(RESUME_FROM, Z_LVAL_P(zoption));
+ }
+
+ /* maxfilesize */
+ if (zoption = http_curl_getopt(options, "maxfilesize", IS_LONG)) {
+ HTTP_CURL_OPT(MAXFILESIZE, Z_LVAL_P(zoption));
+ }
+
+ /* lastmodified */
+ if (zoption = http_curl_getopt(options, "lastmodified", IS_LONG)) {
+ HTTP_CURL_OPT(TIMECONDITION, range_req ? CURL_TIMECOND_IFUNMODSINCE : CURL_TIMECOND_IFMODSINCE);
+ HTTP_CURL_OPT(TIMEVALUE, Z_LVAL_P(zoption));
+ }
+
+ /* timeout */
+ if (zoption = http_curl_getopt(options, "timeout", IS_LONG)) {
+ HTTP_CURL_OPT(TIMEOUT, Z_LVAL_P(zoption));
+ }
+
+ /* connecttimeout, defaults to 1 */
+ if (zoption = http_curl_getopt(options, "connecttimeout", IS_LONG)) {
+ HTTP_CURL_OPT(CONNECTTIMEOUT, Z_LVAL_P(zoption));
+ } else {
+ HTTP_CURL_OPT(CONNECTTIMEOUT, 1);
+ }
+
+ /* ssl */
+ if (zoption = http_curl_getopt(options, "ssl", IS_ARRAY)) {
+ ulong idx;
+ char *key = NULL;
+ zval **param;
+
+ FOREACH_KEYVAL(zoption, key, idx, param) {
+ if (key) {fprintf(stderr, "%s\n", key);
+ HTTP_CURL_OPT_SSL_STRING(CERT);
+#if LIBCURL_VERSION_NUM >= 0x070903
+ HTTP_CURL_OPT_SSL_STRING(CERTTYPE);
+#endif
+ HTTP_CURL_OPT_SSL_STRING(CERTPASSWD);
+
+ HTTP_CURL_OPT_SSL_STRING(KEY);
+ HTTP_CURL_OPT_SSL_STRING(KEYTYPE);
+ HTTP_CURL_OPT_SSL_STRING(KEYPASSWD);
+
+ HTTP_CURL_OPT_SSL_STRING(ENGINE);
+ HTTP_CURL_OPT_SSL_LONG(VERSION);
+
+ HTTP_CURL_OPT_SSL_LONG_(VERIFYPEER);
+ HTTP_CURL_OPT_SSL_LONG_(VERIFYHOST);
+ HTTP_CURL_OPT_SSL_STRING_(CIPHER_LIST);
+
+
+ HTTP_CURL_OPT_STRING(CAINFO);
+#if LIBCURL_VERSION_NUM >= 0x070908
+ HTTP_CURL_OPT_STRING(CAPATH);
+#endif
+ HTTP_CURL_OPT_STRING(RANDOM_FILE);
+ HTTP_CURL_OPT_STRING(EGDSOCKET);
+
+ /* reset key */
+ key = NULL;
+ }
+ }
+ } else {
+ /* disable SSL verification by default */
+ HTTP_CURL_OPT(SSL_VERIFYPEER, 0);
+ HTTP_CURL_OPT(SSL_VERIFYHOST, 0);
+ }
+
+ /* request method */
+ switch (meth)
+ {
+ case HTTP_GET:
+ curl_easy_setopt(ch, CURLOPT_HTTPGET, 1);
+ break;
+
+ case HTTP_HEAD:
+ curl_easy_setopt(ch, CURLOPT_NOBODY, 1);
+ break;
+
+ case HTTP_POST:
+ curl_easy_setopt(ch, CURLOPT_POST, 1);
+ break;
+
+ case HTTP_PUT:
+ curl_easy_setopt(ch, CURLOPT_UPLOAD, 1);
+ break;
+
+ default:
+ if ((meth > HTTP_NO_REQUEST_METHOD) && (meth < HTTP_MAX_REQUEST_METHOD)) {
+ curl_easy_setopt(ch, CURLOPT_CUSTOMREQUEST, http_request_methods[meth]);
+ } else {
+ http_error_ex(E_WARNING, HTTP_E_CURL, "Unsupported request method: %d", meth);
+ status = FAILURE;
+ goto http_request_end;
+ }
+ break;
+ }
+
+ /* attach request body */
+ if (body && (meth != HTTP_GET) && (meth != HTTP_HEAD)) {
+ switch (body->type)
+ {
+ case HTTP_REQUEST_BODY_CSTRING:
+ curl_easy_setopt(ch, CURLOPT_POSTFIELDS, (char *) body->data);
+ curl_easy_setopt(ch, CURLOPT_POSTFIELDSIZE, body->size);
+ break;
+
+ case HTTP_REQUEST_BODY_CURLPOST:
+ curl_easy_setopt(ch, CURLOPT_HTTPPOST, (struct curl_httppost *) body->data);
+ break;
+
+ case HTTP_REQUEST_BODY_UPLOADFILE:
+ case HTTP_REQUEST_BODY_UPLOADDATA:
+ curl_easy_setopt(ch, CURLOPT_READDATA, body);
+ curl_easy_setopt(ch, CURLOPT_INFILESIZE, body->size);
+ break;
+
+ default:
+ http_error_ex(E_WARNING, HTTP_E_CURL, "Unkown request body type: %d", body->type);
+ status = FAILURE;
+ goto http_request_end;
+ break;
+ }
+ }
+
+ /* perform request */
+ if (CURLE_OK == (result = curl_easy_perform(ch))) {
+ /* get curl info */
+ if (info) {
+ zval array;
+ Z_ARRVAL(array) = info;
+
+ HTTP_CURL_INFO(EFFECTIVE_URL);
+#if LIBCURL_VERSION_NUM >= 0x070a07
+ HTTP_CURL_INFO(RESPONSE_CODE);
+#else
+ HTTP_CURL_INFO_EX(HTTP_CODE, RESPONSE_CODE);
+#endif
+ HTTP_CURL_INFO(HTTP_CONNECTCODE);
+#if LIBCURL_VERSION_NUM >= 0x070500
+ HTTP_CURL_INFO(FILETIME);
+#endif
+ HTTP_CURL_INFO(TOTAL_TIME);
+ HTTP_CURL_INFO(NAMELOOKUP_TIME);
+ HTTP_CURL_INFO(CONNECT_TIME);
+ HTTP_CURL_INFO(PRETRANSFER_TIME);
+ HTTP_CURL_INFO(STARTTRANSFER_TIME);
+#if LIBCURL_VERSION_NUM >= 0x070907
+ HTTP_CURL_INFO(REDIRECT_TIME);
+ HTTP_CURL_INFO(REDIRECT_COUNT);
+#endif
+ HTTP_CURL_INFO(SIZE_UPLOAD);
+ HTTP_CURL_INFO(SIZE_DOWNLOAD);
+ HTTP_CURL_INFO(SPEED_DOWNLOAD);
+ HTTP_CURL_INFO(SPEED_UPLOAD);
+ HTTP_CURL_INFO(HEADER_SIZE);
+ HTTP_CURL_INFO(REQUEST_SIZE);
+ HTTP_CURL_INFO(SSL_VERIFYRESULT);
+#if LIBCURL_VERSION_NUM >= 0x070c03
+ /*HTTP_CURL_INFO(SSL_ENGINES); todo: CURLINFO_SLIST */
+#endif
+ HTTP_CURL_INFO(CONTENT_LENGTH_DOWNLOAD);
+ HTTP_CURL_INFO(CONTENT_LENGTH_UPLOAD);
+ HTTP_CURL_INFO(CONTENT_TYPE);
+#if LIBCURL_VERSION_NUM >= 0x070a03
+ /*HTTP_CURL_INFO(PRIVATE);*/
+#endif
+#if LIBCURL_VERSION_NUM >= 0x070a08
+ HTTP_CURL_INFO(HTTPAUTH_AVAIL);
+ HTTP_CURL_INFO(PROXYAUTH_AVAIL);
+#endif
+#if LIBCURL_VERSION_NUM >= 0x070c02
+ /*HTTP_CURL_INFO(OS_ERRNO);*/
+#endif
+#if LIBCURL_VERSION_NUM >= 0x070c03
+ HTTP_CURL_INFO(NUM_CONNECTS);
+#endif
+ }
+ } else {
+ http_error_ex(E_WARNING, HTTP_E_CURL, "Could not perform request: %s", curl_easy_strerror(result));
+ status = FAILURE;
+ }
+
+http_request_end:
+ /* free strings copied with http_curl_copystr() */
+ zend_llist_clean(&HTTP_G(to_free));
+
+ /* clean curl handle if acquired */
+ if (clean_curl) {
+ curl_easy_cleanup(ch);
+ ch = NULL;
+ }
+
+ /* finalize response */
+ if (response) {
+ phpstr_fix(PHPSTR(response));
+ }
+
+ return status;
+}
+/* }}} */
+
+/* {{{ char *http_request_method_string(http_request_method) */
+PHP_HTTP_API const char *_http_request_method_string(http_request_method m)
+{
+ if ((m > HTTP_NO_REQUEST_METHOD) && (m < HTTP_MAX_REQUEST_METHOD)) {
+ return http_request_methods[m];
+ }
+ return http_request_methods[0];
+}
+/* }}} */
+
+/* {{{ char *http_request_methods[] */
+static const char *const http_request_methods[] = {
+ "UNKOWN",
+ /* HTTP/1.1 */
+ "GET",
+ "HEAD",
+ "POST",
+ "PUT",
+ "DELETE",
+ "OPTIONS",
+ "TRACE",
+ "CONNECT",
+ /* WebDAV - RFC 2518 */
+ "PROPFIND",
+ "PROPPATCH",
+ "MKCOL",
+ "COPY",
+ "MOVE",
+ "LOCK",
+ "UNLOCK",
+ /* WebDAV Versioning - RFC 3253 */
+ "VERSION-CONTROL",
+ "REPORT",
+ "CHECKOUT",
+ "CHECKIN",
+ "UNCHECKOUT",
+ "MKWORKSPACE",
+ "UPDATE",
+ "LABEL",
+ "MERGE",
+ "BASELINE-CONTROL",
+ "MKACTIVITY",
+ /* WebDAV Access Control - RFC 3744 */
+ "ACL",
+ NULL
+};
+/* }}} */
+
+/* {{{ static inline char *http_curl_copystr(char *) */
+static inline char *_http_curl_copystr(const char *str TSRMLS_DC)
+{
+ char *new_str = estrdup(str);
+ zend_llist_add_element(&HTTP_G(to_free), &new_str);
+ return new_str;
+}
+/* }}} */
+
+/* {{{ static size_t http_curl_write_callback(char *, size_t, size_t, void *) */
+static size_t http_curl_write_callback(char *buf, size_t len, size_t n, void *s)
+{
+ return s ? phpstr_append(PHPSTR(s), buf, len * n) : len * n;
+}
+/* }}} */
+
+/* {{{ static size_t http_curl_read_callback(void *, size_t, size_t, void *) */
+static size_t http_curl_read_callback(void *data, size_t len, size_t n, void *s)
+{
+ static char *offset = NULL, *original = NULL;
+ http_request_body *body = (http_request_body *) s;
+
+ switch (body->type)
+ {
+ case HTTP_REQUEST_BODY_UPLOADFILE:
+ {
+ TSRMLS_FETCH();
+ return php_stream_read((php_stream *) body->data, data, len * n);
+ }
+ break;
+
+ case HTTP_REQUEST_BODY_UPLOADDATA:
+ {
+ size_t avail;
+ if (original != s) {
+ original = offset = s;
+ }
+ if ((avail = body->size - (offset - original)) < 1) {
+ return 0;
+ }
+ if (avail < (len * n)) {
+ memcpy(data, offset, avail);
+ offset += avail;
+ return avail;
+ } else {
+ memcpy(data, offset, len * n);
+ offset += len * n;
+ return len * n;
+ }
+ }
+ break;
+
+ default:
+ return 0;
+ break;
+ }
+}
+/* }}} */
+
+/* {{{ static int http_curl_progress_callback(void *, double, double, double, double) */
+static int http_curl_progress_callback(void *data, double dltotal, double dlnow, double ultotal, double ulnow)
+{
+ zval *params_pass[4], params_local[4], retval, *func = (zval *) data;
+ TSRMLS_FETCH();
+
+ params_pass[0] = ¶ms_local[0];
+ params_pass[1] = ¶ms_local[1];
+ params_pass[2] = ¶ms_local[2];
+ params_pass[3] = ¶ms_local[3];
+
+ ZVAL_DOUBLE(params_pass[0], dltotal);
+ ZVAL_DOUBLE(params_pass[1], dlnow);
+ ZVAL_DOUBLE(params_pass[2], ultotal);
+ ZVAL_DOUBLE(params_pass[3], ulnow);
+
+ return call_user_function(EG(function_table), NULL, func, &retval, 4, params_pass TSRMLS_CC);
+}
+/* }}} */
+
+static int http_curl_debug_callback(CURL *ch, curl_infotype type, char *string, size_t length, void *data)
+{
+ zval *params_pass[2], params_local[2], retval, *func = (zval *) data;
+ TSRMLS_FETCH();
+
+ params_pass[0] = ¶ms_local[0];
+ params_pass[1] = ¶ms_local[1];
+
+ ZVAL_LONG(params_pass[0], type);
+ ZVAL_STRINGL(params_pass[1], string, length, 1);
+
+ call_user_function(EG(function_table), NULL, func, &retval, 2, params_pass TSRMLS_CC);
+
+ return 0;
+}
+/* {{{ static inline zval *http_curl_getopt(HashTable *, char *, size_t, int) */
+static inline zval *_http_curl_getopt_ex(HashTable *options, char *key, size_t keylen, int type TSRMLS_DC)
+{
+ zval **zoption;
+
+ if (!options || (SUCCESS != zend_hash_find(options, key, keylen, (void **) &zoption))) {
+ return NULL;
+ }
+
+ if (Z_TYPE_PP(zoption) != type) {
+ switch (type)
+ {
+ case IS_BOOL: convert_to_boolean_ex(zoption); break;
+ case IS_LONG: convert_to_long_ex(zoption); break;
+ case IS_DOUBLE: convert_to_double_ex(zoption); break;
+ case IS_STRING: convert_to_string_ex(zoption); break;
+ case IS_ARRAY: convert_to_array_ex(zoption); break;
+ case IS_OBJECT: convert_to_object_ex(zoption); break;
+ default:
+ break;
+ }
+ }
+
+ return *zoption;
+}
+/* }}} */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: noet sw=4 ts=4 fdm=marker
+ * vim<600: noet sw=4 ts=4
+ */
+
#include "php_http_std_defs.h"
#include "php_http_request_object.h"
+#include "php_http_request_api.h"
#ifdef ZEND_ENGINE_2
#ifdef HTTP_HAVE_CURL
void _http_request_object_init(INIT_FUNC_ARGS)
{
HTTP_REGISTER_CLASS_EX(HttpRequest, http_request_object, NULL, 0);
+
+ /* HTTP/1.1 */
HTTP_LONG_CONSTANT("HTTP_GET", HTTP_GET);
HTTP_LONG_CONSTANT("HTTP_HEAD", HTTP_HEAD);
HTTP_LONG_CONSTANT("HTTP_POST", HTTP_POST);
+ HTTP_LONG_CONSTANT("HTTP_PUT", HTTP_PUT);
+ HTTP_LONG_CONSTANT("HTTP_DELETE", HTTP_DELETE);
+ HTTP_LONG_CONSTANT("HTTP_OPTIONS", HTTP_OPTIONS);
+ HTTP_LONG_CONSTANT("HTTP_TRACE", HTTP_TRACE);
+ HTTP_LONG_CONSTANT("HTTP_CONNECT", HTTP_CONNECT);
+ /* WebDAV - RFC 2518 */
+ HTTP_LONG_CONSTANT("HTTP_PROPFIND", HTTP_PROPFIND);
+ HTTP_LONG_CONSTANT("HTTP_PROPPATCH", HTTP_PROPPATCH);
+ HTTP_LONG_CONSTANT("HTTP_MKCOL", HTTP_MKCOL);
+ HTTP_LONG_CONSTANT("HTTP_COPY", HTTP_COPY);
+ HTTP_LONG_CONSTANT("HTTP_MOVE", HTTP_MOVE);
+ HTTP_LONG_CONSTANT("HTTP_LOCK", HTTP_LOCK);
+ HTTP_LONG_CONSTANT("HTTP_UNLOCK", HTTP_UNLOCK);
+ /* WebDAV Versioning - RFC 3253 */
+ HTTP_LONG_CONSTANT("HTTP_VERSION_CONTROL", HTTP_VERSION_CONTROL);
+ HTTP_LONG_CONSTANT("HTTP_REPORT", HTTP_REPORT);
+ HTTP_LONG_CONSTANT("HTTP_CHECKOUT", HTTP_CHECKOUT);
+ HTTP_LONG_CONSTANT("HTTP_CHECKIN", HTTP_CHECKIN);
+ HTTP_LONG_CONSTANT("HTTP_UNCHECKOUT", HTTP_UNCHECKOUT);
+ HTTP_LONG_CONSTANT("HTTP_MKWORKSPACE", HTTP_MKWORKSPACE);
+ HTTP_LONG_CONSTANT("HTTP_UPDATE", HTTP_UPDATE);
+ HTTP_LONG_CONSTANT("HTTP_LABEL", HTTP_LABEL);
+ HTTP_LONG_CONSTANT("HTTP_MERGE", HTTP_MERGE);
+ HTTP_LONG_CONSTANT("HTTP_BASELINE_CONTROL", HTTP_BASELINE_CONTROL);
+ HTTP_LONG_CONSTANT("HTTP_MKACTIVITY", HTTP_MKACTIVITY);
+ /* WebDAV Access Control - RFC 3744 */
+ HTTP_LONG_CONSTANT("HTTP_ACL", HTTP_ACL);
+
+
# if LIBCURL_VERSION_NUM >= 0x070a05
HTTP_LONG_CONSTANT("HTTP_AUTH_BASIC", CURLAUTH_BASIC);
HTTP_LONG_CONSTANT("HTTP_AUTH_DIGEST", CURLAUTH_DIGEST);
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
+
+static
+ZEND_BEGIN_ARG_INFO(http_request_info_ref_5, 0)
+ ZEND_ARG_PASS_INFO(0)
+ ZEND_ARG_PASS_INFO(0)
+ ZEND_ARG_PASS_INFO(0)
+ ZEND_ARG_PASS_INFO(0)
+ ZEND_ARG_PASS_INFO(1)
+ZEND_END_ARG_INFO();
#endif /* HTTP_HAVE_CURL */
zend_class_entry *http_util_object_ce;
HTTP_UTIL_ME(get, http_get, http_request_info_ref_3)
HTTP_UTIL_ME(head, http_head, http_request_info_ref_3)
HTTP_UTIL_ME(postData, http_post_data, http_request_info_ref_4)
- HTTP_UTIL_ME(postArray, http_post_array, http_request_info_ref_4)
+ HTTP_UTIL_ME(postFields, http_post_fields, http_request_info_ref_5)
#endif /* HTTP_HAVE_CURL */
HTTP_UTIL_ME(authBasic, http_auth_basic, NULL)
HTTP_UTIL_ME(authBasicCallback, http_auth_basic_cb, NULL)
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
-<package version="1.0">
- <name>pecl_http</name>
- <summary>Extended HTTP support</summary>
- <description>
-<![CDATA[
-* Building absolute URIs
-* RFC compliant HTTP redirects
-* RFC compliant HTTP date handling
-* Parsing of HTTP headers and messages
-* Caching by "Last-Modified" and/or ETag
- (with 'on the fly' option for ETag generation from buffered output)
-* Sending data/files/streams with (multiple) ranges support
-* Negotiating user preferred language/charset
-* Convenient request functions to HEAD/GET/POST if libcurl is available
-* HTTP auth hooks (Basic)
-]]>
- </description>
- <license>PHP License 3.0</license>
-
- <maintainers>
- <maintainer>
- <user>mike</user>
- <name>Michael Wallner</name>
- <email>mike@php.net</email>
- <role>lead</role>
- </maintainer>
- </maintainers>
-
- <release>
- <version>0.8.0dev</version>
- <date>2005-05-00</date>
- <state>beta</state>
- <notes><![CDATA[
-* renamed ob_httpetaghandler to ob_etaghandler
-* added HttpMessage class and HttpException (PHP5 only)
-* added http.cache_log INI directive
-* http_chunked_decode() now silently passes through apparently not encoded data
-]]>
- </notes>
- </release>
-
- <filelist>
- <dir name="/">
- <file role="doc">CREDITS</file>
- <file role="doc">EXPERIMENTAL</file>
- <file role="doc">docs/functions.html</file>
-
- <file role="src" platform="windows">http.dsp</file>
- <file role="src" platform="windows">config.w32</file>
- <file role="src">config.m4</file>
-
- <file role="src">phpstr/phpstr.h</file>
- <file role="src">phpstr/phpstr.c</file>
-
- <file role="src">php_http.h</file>
- <file role="src">php_http_std_defs.h</file>
- <file role="src">php_http_api.h</file>
- <file role="src">php_http_auth_api.h</file>
- <file role="src">php_http_cache_api.h</file>
- <file role="src">php_http_curl_api.h</file>
- <file role="src">php_http_date_api.h</file>
- <file role="src">php_http_headers_api.h</file>
- <file role="src">php_http_message_api.h</file>
- <file role="src">php_http_send_api.h</file>
- <file role="src">php_http_url_api.h</file>
- <file role="src">php_http_util_object.h</file>
- <file role="src">php_http_message_object.h</file>
- <file role="src">php_http_request_object.h</file>
- <file role="src">php_http_response_object.h</file>
- <file role="src">php_http_exception_object.h</file>
-
- <file role="src">http.c</file>
- <file role="src">http_functions.c</file>
- <file role="src">http_methods.c</file>
- <file role="src">http_api.c</file>
- <file role="src">http_auth_api.c</file>
- <file role="src">http_cache_api.c</file>
- <file role="src">http_curl_api.c</file>
- <file role="src">http_Date_api.c</file>
- <file role="src">http_headers_api.c</file>
- <file role="src">http_message_api.c</file>
- <file role="src">http_send_api.c</file>
- <file role="src">http_url_api.c</file>
- <file role="src">http_util_object.c</file>
- <file role="src">http_message_object.c</file>
- <file role="src">http_request_object.c</file>
- <file role="src">http_response_object.c</file>
- <file role="src">http_exception_object.c</file>
-
- </dir>
- </filelist>
-</package>
-
+<?xml version="1.0" encoding="iso-8859-1"?>\r
+<!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">\r
+<package version="1.0">\r
+ <name>pecl_http</name>\r
+ <summary>Extended HTTP support</summary>\r
+ <description>\r
+<![CDATA[\r
+* Building absolute URIs\r
+* RFC compliant HTTP redirects\r
+* RFC compliant HTTP date handling\r
+* Parsing of HTTP headers and messages\r
+* Caching by "Last-Modified" and/or ETag\r
+ (with 'on the fly' option for ETag generation from buffered output)\r
+* Sending data/files/streams with (multiple) ranges support\r
+* Negotiating user preferred language/charset\r
+* Convenient request functions to HEAD/GET/POST if libcurl is available\r
+* HTTP auth hooks (Basic)\r
+]]>\r
+ </description>\r
+ <license>PHP License 3.0</license>\r
+\r
+ <maintainers>\r
+ <maintainer>\r
+ <user>mike</user>\r
+ <name>Michael Wallner</name>\r
+ <email>mike@php.net</email>\r
+ <role>lead</role>\r
+ </maintainer>\r
+ </maintainers>\r
+\r
+ <release>\r
+ <version>0.8.0dev</version>\r
+ <date>2005-05-00</date>\r
+ <state>beta</state>\r
+ <notes><![CDATA[\r
+* renamed ob_httpetaghandler to ob_etaghandler\r
+* added HttpMessage class and HttpException (PHP5 only)\r
+* added http.cache_log INI directive\r
+* http_chunked_decode() now silently passes through apparently not encoded data\r
+]]>\r
+ </notes>\r
+ </release>\r
+\r
+ <filelist>\r
+ <dir name="/">\r
+ <file role="doc">CREDITS</file>\r
+ <file role="doc">EXPERIMENTAL</file>\r
+ <file role="doc">docs/functions.html</file>\r
+ \r
+ <file role="src" platform="windows">http.dsp</file>\r
+ <file role="src" platform="windows">config.w32</file>\r
+ <file role="src">config.m4</file>\r
+ \r
+ <file role="src">phpstr/phpstr.h</file>\r
+ <file role="src">phpstr/phpstr.c</file>\r
+ \r
+ <file role="src">php_http.h</file>\r
+ <file role="src">php_http_std_defs.h</file>\r
+ <file role="src">php_http_api.h</file>\r
+ <file role="src">php_http_auth_api.h</file>\r
+ <file role="src">php_http_cache_api.h</file>\r
+ <file role="src">php_http_date_api.h</file>\r
+ <file role="src">php_http_headers_api.h</file>\r
+ <file role="src">php_http_message_api.h</file>\r
+ <file role="src">php_http_request_api.h</file>\r
+ <file role="src">php_http_send_api.h</file>\r
+ <file role="src">php_http_url_api.h</file>\r
+ <file role="src">php_http_util_object.h</file>\r
+ <file role="src">php_http_message_object.h</file>\r
+ <file role="src">php_http_request_object.h</file>\r
+ <file role="src">php_http_response_object.h</file>\r
+ <file role="src">php_http_exception_object.h</file>\r
+ \r
+ <file role="src">http.c</file>\r
+ <file role="src">http_functions.c</file>\r
+ <file role="src">http_methods.c</file>\r
+ <file role="src">http_api.c</file>\r
+ <file role="src">http_auth_api.c</file>\r
+ <file role="src">http_cache_api.c</file>\r
+ <file role="src">http_date_api.c</file>\r
+ <file role="src">http_headers_api.c</file>\r
+ <file role="src">http_message_api.c</file>\r
+ <file role="src">http_request_api.c</file>\r
+ <file role="src">http_send_api.c</file>\r
+ <file role="src">http_url_api.c</file>\r
+ <file role="src">http_util_object.c</file>\r
+ <file role="src">http_message_object.c</file>\r
+ <file role="src">http_request_object.c</file>\r
+ <file role="src">http_response_object.c</file>\r
+ <file role="src">http_exception_object.c</file>\r
+ \r
+ </dir>\r
+ </filelist>\r
+</package>\r
+\r
PHP_FUNCTION(http_get);
PHP_FUNCTION(http_head);
PHP_FUNCTION(http_post_data);
-PHP_FUNCTION(http_post_array);
+PHP_FUNCTION(http_post_fields);
#endif /* HTTP_HAVE_CURL */
PHP_FUNCTION(http_auth_basic);
PHP_FUNCTION(http_auth_basic_cb);
+++ /dev/null
-/*
- +----------------------------------------------------------------------+
- | PECL :: http |
- +----------------------------------------------------------------------+
- | This source file is subject to version 3.0 of the PHP license, that |
- | is bundled with this package in the file LICENSE, and is available |
- | through the world-wide-web at http://www.php.net/license/3_0.txt. |
- | If you did not receive a copy of the PHP license and are unable to |
- | obtain it through the world-wide-web, please send a note to |
- | license@php.net so we can mail you a copy immediately. |
- +----------------------------------------------------------------------+
- | Copyright (c) 2004-2005 Michael Wallner <mike@php.net> |
- +----------------------------------------------------------------------+
-*/
-
-/* $Id$ */
-
-#ifndef PHP_HTTP_CURL_API_H
-#define PHP_HTTP_CURL_API_H
-
-#include "php_http_std_defs.h"
-#include "phpstr/phpstr.h"
-
-#ifdef PHP_WIN32
-# include <winsock2.h>
-#endif
-
-#include <curl/curl.h>
-
-#define http_get(u, o, i, r) _http_get_ex(NULL, (u), (o), (i), (r) TSRMLS_CC)
-#define http_get_ex(c, u, o, i, r) _http_get_ex((c), (u), (o), (i), (r) TSRMLS_CC)
-PHP_HTTP_API STATUS _http_get_ex(CURL *ch, const char *URL, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC);
-
-#define http_head(u, o, i, r) _http_head_ex(NULL, (u), (o), (i), (r) TSRMLS_CC)
-#define http_head_ex(c, u, o, i, r) _http_head_ex((c), (u), (o), (i), (r) TSRMLS_CC)
-PHP_HTTP_API STATUS _http_head_ex(CURL *ch, const char *URL, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC);
-
-#define http_post_data(u, pd, pl, o, i, r) _http_post_data_ex(NULL, (u), (pd), (pl), (o), (i), (r) TSRMLS_CC)
-#define http_post_data_ex(c, u, pd, pl, o, i, r) _http_post_data_ex((c), (u), (pd), (pl), (o), (i), (r) TSRMLS_CC)
-PHP_HTTP_API STATUS _http_post_data_ex(CURL *ch, const char *URL, char *postdata, size_t postdata_len, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC);
-
-#define http_post_array(u, p, o, i, r) _http_post_array_ex(NULL, (u), (p), (o), (i), (r) TSRMLS_CC)
-#define http_post_array_ex(c, u, p, o, i, r) _http_post_array_ex((c), (u), (p), (o), (i), (r) TSRMLS_CC)
-PHP_HTTP_API STATUS _http_post_array_ex(CURL *ch, const char *URL, HashTable *postarray, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC);
-
-#define http_post_curldata(u, h, o, i, r) _http_post_curldata_ex(NULL, (u), (h), (o), (i), (r) TSRMLS_CC)
-#define http_post_curldata_ex(c, u, h, o, i, r) _http_post_curldata_ex((c), (u), (h), (o), (i), (r) TSRMLS_CC)
-PHP_HTTP_API STATUS _http_post_curldata_ex(CURL *ch, const char *URL, struct curl_httppost *curldata, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC);
-
-#endif
-
-/*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * End:
- * vim600: noet sw=4 ts=4 fdm=marker
- * vim<600: noet sw=4 ts=4
- */
-
--- /dev/null
+/*
+ +----------------------------------------------------------------------+
+ | PECL :: http |
+ +----------------------------------------------------------------------+
+ | This source file is subject to version 3.0 of the PHP license, that |
+ | is bundled with this package in the file LICENSE, and is available |
+ | through the world-wide-web at http://www.php.net/license/3_0.txt. |
+ | If you did not receive a copy of the PHP license and are unable to |
+ | obtain it through the world-wide-web, please send a note to |
+ | license@php.net so we can mail you a copy immediately. |
+ +----------------------------------------------------------------------+
+ | Copyright (c) 2004-2005 Michael Wallner <mike@php.net> |
+ +----------------------------------------------------------------------+
+*/
+
+/* $Id$ */
+
+#ifndef PHP_HTTP_REQUEST_API_H
+#define PHP_HTTP_REQUEST_API_H
+
+#include "php_http_std_defs.h"
+#include "phpstr/phpstr.h"
+
+#ifdef PHP_WIN32
+# include <winsock2.h>
+#endif
+
+#include <curl/curl.h>
+
+typedef enum {
+ HTTP_NO_REQUEST_METHOD = 0,
+ /* HTTP/1.1 */
+ HTTP_GET = 1,
+ HTTP_HEAD = 2,
+ HTTP_POST = 3,
+ HTTP_PUT = 4,
+ HTTP_DELETE = 5,
+ HTTP_OPTIONS = 6,
+ HTTP_TRACE = 7,
+ HTTP_CONNECT = 8,
+ /* WebDAV - RFC 2518 */
+ HTTP_PROPFIND = 9,
+ HTTP_PROPPATCH = 10,
+ HTTP_MKCOL = 11,
+ HTTP_COPY = 12,
+ HTTP_MOVE = 13,
+ HTTP_LOCK = 14,
+ HTTP_UNLOCK = 15,
+ /* WebDAV Versioning - RFC 3253 */
+ HTTP_VERSION_CONTROL = 16,
+ HTTP_REPORT = 17,
+ HTTP_CHECKOUT = 18,
+ HTTP_CHECKIN = 19,
+ HTTP_UNCHECKOUT = 20,
+ HTTP_MKWORKSPACE = 21,
+ HTTP_UPDATE = 22,
+ HTTP_LABEL = 23,
+ HTTP_MERGE = 24,
+ HTTP_BASELINE_CONTROL = 25,
+ HTTP_MKACTIVITY = 26,
+ /* WebDAV Access Control - RFC 3744 */
+ HTTP_ACL = 27,
+ HTTP_MAX_REQUEST_METHOD = 28
+} http_request_method;
+
+#define HTTP_REQUEST_BODY_CSTRING 0
+#define HTTP_REQUEST_BODY_CURLPOST 1
+#define HTTP_REQUEST_BODY_UPLOADFILE 2
+#define HTTP_REQUEST_BODY_UPLOADDATA 3
+typedef struct {
+ int type;
+ void *data;
+ size_t size;
+} http_request_body;
+
+#define http_request_method_string(m) _http_request_method((m))
+PHP_HTTP_API const char *_http_request_method_string(http_request_method m);
+
+#define http_request_body_fill(b, fields, files) _http_request_body_fill((b), (fields), (files) TSRMLS_CC)
+PHP_HTTP_API _http_request_body_fill(http_request_body *body, HashTable *fields, HashTable *files TSRMLS_DC);
+
+#define http_request_body_dtor(b) _http_request_body_dtor((b) TSRMLS_CC)
+PHP_HTTP_API void _http_request_body_dtor(http_request_body *body TSRMLS_DC);
+
+#define http_request(meth, url, body, opt, info, resp) _http_request_ex(NULL, (meth), (url), (body), (opt), (info), (resp) TSRMLS_CC)
+#define http_request_ex(ch, meth, url, body, opt, info, resp) _http_request_ex((ch), (meth), (url), (body), (opt), (info), (resp) TSRMLS_CC)
+PHP_HTTP_API STATUS _http_request_ex(CURL *ch, http_request_method meth, const char *URL, http_request_body *body, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC);
+
+#define http_get(u, o, i, r) _http_request_ex(NULL, HTTP_GET, (u), NULL, (o), (i), (r) TSRMLS_CC)
+#define http_get_ex(c, u, o, i, r) _http_request_ex((c), HTTP_GET, (u), NULL, (o), (i), (r) TSRMLS_CC)
+
+#define http_head(u, o, i, r) _http_request_ex(NULL, HTTP_HEAD, (u), NULL, (o), (i), (r) TSRMLS_CC)
+#define http_head_ex(c, u, o, i, r) _http_request_ex((c), HTTP_HEAD, (u), NULL, (o), (i), (r) TSRMLS_CC)
+
+#define http_post(u, b, o, i, r) _http_request_ex(NULL, HTTP_POST, (u), (b), (o), (i), (r) TSRMLS_CC)
+#define http_post_ex(c, u, b, o, i, r) _http_request_ex((c), HTTP_POST, (u), (b), (o), (i), (r) TSRMLS_CC)
+
+#endif
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: noet sw=4 ts=4 fdm=marker
+ * vim<600: noet sw=4 ts=4
+ */
+
phpstr response;
} http_request_object;
-typedef enum {
- HTTP_GET = 1,
- HTTP_HEAD,
- HTTP_POST,
-} http_request_method;
-
extern zend_class_entry *http_request_object_ce;
extern zend_function_entry http_request_object_fe[];
}
/* }}} */
-#define HTTP_LONG_CONSTANT(name, const) REGISTER_LONG_CONSTANT(name, const, CONST_CS | CONST_PERSISTENT);
+#define HTTP_LONG_CONSTANT(name, const) REGISTER_LONG_CONSTANT(name, const, CONST_CS | CONST_PERSISTENT)
/* {{{ objects & properties */
#ifdef ZEND_ENGINE_2
#define RETURN_PHPSTR_PTR(STR) RETURN_PHPSTR((STR), PHPSTR_FREE_PTR, 0)
#define RETURN_PHPSTR_VAL(STR) RETURN_PHPSTR(&(STR), PHPSTR_FREE_NOT, 0)
+#define RETVAL_PHPSTR_PTR(STR) RETVAL_PHPSTR((STR), PHPSTR_FREE_PTR, 0)
+#define RETVAL_PHPSTR_VAL(STR) RETVAL_PHPSTR(&(STR), PHPSTR_FREE_NOT, 0)
/* RETURN_PHPSTR(buf, PHPSTR_FREE_PTR, 0) */
#define RETURN_PHPSTR(STR, free, dup) \
RETVAL_PHPSTR((STR), (free), (dup)); \
-<?php
-extension_loaded('http') or die('skip ext/http not available');
+<?php
+extension_loaded('http') or @dl('php_http.dll') or @dl('http.so') or die('skip ext/http not available');
strncasecmp(PHP_SAPI, 'CLI', 3) or die('skip cannot run tests with CLI');
-?>
\ No newline at end of file
+?>