- fix config.m4 (CURL_LIBS define was missing)
[m6w6/ext-http] / php_http_request_api.h
1 /*
2 +----------------------------------------------------------------------+
3 | PECL :: http |
4 +----------------------------------------------------------------------+
5 | This source file is subject to version 3.0 of the PHP license, that |
6 | is bundled with this package in the file LICENSE, and is available |
7 | through the world-wide-web at http://www.php.net/license/3_0.txt. |
8 | If you did not receive a copy of the PHP license and are unable to |
9 | obtain it through the world-wide-web, please send a note to |
10 | license@php.net so we can mail you a copy immediately. |
11 +----------------------------------------------------------------------+
12 | Copyright (c) 2004-2005 Michael Wallner <mike@php.net> |
13 +----------------------------------------------------------------------+
14 */
15
16 /* $Id$ */
17
18 #ifndef PHP_HTTP_REQUEST_API_H
19 #define PHP_HTTP_REQUEST_API_H
20 #ifdef HTTP_HAVE_CURL
21
22 #include "php_http_std_defs.h"
23 #include "php_http_request_method_api.h"
24
25 #include "phpstr/phpstr.h"
26
27 #ifdef PHP_WIN32
28 # include <winsock2.h>
29 #endif
30
31 #include <curl/curl.h>
32
33 #define HTTP_REQUEST_BODY_CSTRING 1
34 #define HTTP_REQUEST_BODY_CURLPOST 2
35 #define HTTP_REQUEST_BODY_UPLOADFILE 3
36 typedef struct {
37 int type;
38 void *data;
39 size_t size;
40 } http_request_body;
41
42 typedef struct {
43 void ***tsrm_ctx;
44 void *data;
45 } http_curl_callback_ctx;
46
47 typedef struct {
48 phpstr *response;
49 phpstr *request;
50 curl_infotype last_info;
51 } http_curl_conv;
52
53 #define COPY_STRING 1
54 #define COPY_SLIST 2
55 #define COPY_CONTEXT 3
56 #define COPY_CONV 4
57 #define http_request_data_copy(type, data) _http_request_data_copy((type), (data) TSRMLS_CC)
58 extern void *_http_request_data_copy(int type, void *data TSRMLS_DC);
59 #define http_request_data_free_string _http_request_data_free_string
60 extern void _http_request_data_free_string(void *string);
61 #define http_request_data_free_slist _http_request_data_free_slist
62 extern void _http_request_data_free_slist(void *list);
63 #define http_request_data_free_context _http_request_data_free_context
64 extern void _http_request_data_free_context(void *context);
65 #define http_request_data_free_conv _http_request_data_free_conv
66 extern void _http_request_data_free_conv(void *conv);
67
68 #define http_request_conv(ch, rs, rq) _http_request_conv((ch), (rs), (rq) TSRMLS_CC)
69 extern void _http_request_conv(CURL *ch, phpstr* response, phpstr *request TSRMLS_DC);
70
71 #define http_request_body_new() _http_request_body_new(TSRMLS_C)
72 PHP_HTTP_API http_request_body *_http_request_body_new(TSRMLS_D);
73
74 #define http_request_body_fill(b, fields, files) _http_request_body_fill((b), (fields), (files) TSRMLS_CC)
75 PHP_HTTP_API STATUS _http_request_body_fill(http_request_body *body, HashTable *fields, HashTable *files TSRMLS_DC);
76
77 #define http_request_body_dtor(b) _http_request_body_dtor((b) TSRMLS_CC)
78 PHP_HTTP_API void _http_request_body_dtor(http_request_body *body TSRMLS_DC);
79
80 #define http_request_body_free(b) _http_request_body_free((b) TSRMLS_CC)
81 PHP_HTTP_API void _http_request_body_free(http_request_body *body TSRMLS_DC);
82
83 #define http_request_init(ch, meth, url, body, options) _http_request_init((ch), (meth), (url), (body), (options) TSRMLS_CC)
84 PHP_HTTP_API STATUS _http_request_init(CURL *ch, http_request_method meth, char *url, http_request_body *body, HashTable *options TSRMLS_DC);
85
86 #define http_request_exec(ch, i, response, request) _http_request_exec((ch), (i), (response), (request) TSRMLS_CC)
87 PHP_HTTP_API STATUS _http_request_exec(CURL *ch, HashTable *info, phpstr *response, phpstr *request TSRMLS_DC);
88
89 #define http_request_info(ch, i) _http_request_info((ch), (i) TSRMLS_CC)
90 PHP_HTTP_API void _http_request_info(CURL *ch, HashTable *info TSRMLS_DC);
91
92 #define http_request(meth, url, body, opt, info, resp) _http_request_ex(NULL, (meth), (url), (body), (opt), (info), (resp) TSRMLS_CC)
93 #define http_request_ex(ch, meth, url, body, opt, info, resp) _http_request_ex((ch), (meth), (url), (body), (opt), (info), (resp) TSRMLS_CC)
94 PHP_HTTP_API STATUS _http_request_ex(CURL *ch, http_request_method meth, char *URL, http_request_body *body, HashTable *options, HashTable *info, phpstr *response TSRMLS_DC);
95
96 #define http_get(u, o, i, r) _http_request_ex(NULL, HTTP_GET, (u), NULL, (o), (i), (r) TSRMLS_CC)
97 #define http_get_ex(c, u, o, i, r) _http_request_ex((c), HTTP_GET, (u), NULL, (o), (i), (r) TSRMLS_CC)
98
99 #define http_head(u, o, i, r) _http_request_ex(NULL, HTTP_HEAD, (u), NULL, (o), (i), (r) TSRMLS_CC)
100 #define http_head_ex(c, u, o, i, r) _http_request_ex((c), HTTP_HEAD, (u), NULL, (o), (i), (r) TSRMLS_CC)
101
102 #define http_post(u, b, o, i, r) _http_request_ex(NULL, HTTP_POST, (u), (b), (o), (i), (r) TSRMLS_CC)
103 #define http_post_ex(c, u, b, o, i, r) _http_request_ex((c), HTTP_POST, (u), (b), (o), (i), (r) TSRMLS_CC)
104
105 #define http_put(u, b, o, i, r) _http_request_ex(NULL, HTTP_PUT, (u), (b), (o), (i), (r) TSRMLS_CC)
106 #define http_put_ex(c, u, b, o, i, r) _http_request_ex((c), HTTP_PUT, (u), (b), (o), (i), (r) TSRMLS_CC)
107
108 #endif
109 #endif
110
111 /*
112 * Local variables:
113 * tab-width: 4
114 * c-basic-offset: 4
115 * End:
116 * vim600: noet sw=4 ts=4 fdm=marker
117 * vim<600: noet sw=4 ts=4
118 */
119