X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_request_api.h;h=22a497271d6908164b1959cf26d43dabd25d6181;hp=269ef7bfc4e1df707c18ec797ca573aec7714992;hb=ea76053f1595a10c79735e36a51f54478ff15acf;hpb=bb6571e22d14c87114eb729145be2e7b87ebea42 diff --git a/php_http_request_api.h b/php_http_request_api.h index 269ef7b..22a4972 100644 --- a/php_http_request_api.h +++ b/php_http_request_api.h @@ -1,16 +1,13 @@ /* - +----------------------------------------------------------------------+ - | 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 | - +----------------------------------------------------------------------+ + +--------------------------------------------------------------------+ + | PECL :: http | + +--------------------------------------------------------------------+ + | Redistribution and use in source and binary forms, with or without | + | modification, are permitted provided that the conditions mentioned | + | in the accompanying LICENSE file are met. | + +--------------------------------------------------------------------+ + | Copyright (c) 2004-2007, Michael Wallner | + +--------------------------------------------------------------------+ */ /* $Id$ */ @@ -18,86 +15,94 @@ #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 +#ifdef HTTP_HAVE_CURL + +#include "php_http_request_body_api.h" +#include "php_http_request_method_api.h" + +extern PHP_MINIT_FUNCTION(http_request); +extern PHP_MSHUTDOWN_FUNCTION(http_request); + +typedef struct _http_request_t { + CURL *ch; + char *url; + http_request_method meth; + http_request_body *body; + + struct { + curl_infotype last_type; + phpstr request; + phpstr response; + } conv; + + struct { + phpstr cookies; + HashTable options; + struct curl_slist *headers; + } _cache; + + struct { + uint count; + double delay; + } _retry; + + char _error[CURL_ERROR_SIZE+1]; + zval *_progress_callback; + +#ifdef ZTS + void ***tsrm_ls; #endif -#include - -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 STATUS _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) - -#define http_put(u, b, o, i, r) _http_request_ex(NULL, HTTP_PUT, (u), (b), (o), (i), (r) TSRMLS_CC) -#define http_put_ex(c, u, b, o, i, r) _http_request_ex((c), HTTP_PUT, (u), (b), (o), (i), (r) TSRMLS_CC) + uint _in_progress_cb:1; + +} http_request; + +#define http_curl_init(r) http_curl_init_ex(NULL, (r)) +#define http_curl_init_ex(c, r) _http_curl_init_ex((c), (r) TSRMLS_CC) +PHP_HTTP_API CURL *_http_curl_init_ex(CURL *ch, http_request *request TSRMLS_DC); + +#define http_curl_free(c) _http_curl_free((c) TSRMLS_CC) +PHP_HTTP_API void _http_curl_free(CURL **ch TSRMLS_DC); + +#define http_curl_copy(c) _http_curl_copy((c) TSRMLS_CC) +PHP_HTTP_API CURL *_http_curl_copy(CURL *ch TSRMLS_DC); + +#define http_request_new() _http_request_init_ex(NULL, NULL, 0, NULL ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC TSRMLS_CC) +#define http_request_init(r) _http_request_init_ex((r), NULL, 0, NULL ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC TSRMLS_CC) +#define http_request_init_ex(r, c, m, u) _http_request_init_ex((r), (c), (m), (u) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC TSRMLS_CC) +PHP_HTTP_API http_request *_http_request_init_ex(http_request *request, CURL *ch, http_request_method meth, const char *url ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC); + +#define http_request_dtor(r) _http_request_dtor((r)) +PHP_HTTP_API void _http_request_dtor(http_request *request); + +#define http_request_free(r) _http_request_free((r)) +PHP_HTTP_API void _http_request_free(http_request **request); + +#define http_request_reset(r) _http_request_reset(r) +PHP_HTTP_API void _http_request_reset(http_request *r); +#define http_request_enable_cookies(r) _http_request_enable_cookies(r) +PHP_HTTP_API STATUS _http_request_enable_cookies(http_request *request); + +#define http_request_reset_cookies(r, s) _http_request_reset_cookies((r), (s)) +PHP_HTTP_API STATUS _http_request_reset_cookies(http_request *request, int session_only); + +#define http_request_defaults(r) _http_request_defaults(r) +PHP_HTTP_API void _http_request_defaults(http_request *request); + +#define http_request_prepare(r, o) _http_request_prepare((r), (o)) +PHP_HTTP_API STATUS _http_request_prepare(http_request *request, HashTable *options); + +#define http_request_exec(r) _http_request_exec((r)) +PHP_HTTP_API void _http_request_exec(http_request *request); + +#define http_request_info(r, i) _http_request_info((r), (i)) +PHP_HTTP_API void _http_request_info(http_request *request, HashTable *info); + +#define http_request_set_progress_callback(r, cb) _http_request_set_progress_callback((r), (cb)) +PHP_HTTP_API void _http_request_set_progress_callback(http_request *request, zval *cb); + +#endif #endif /*