- initialize class entries, or else the ZE will try to access ce->handlers that point...
[m6w6/ext-http] / http_request_object.c
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2005, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15
16 #ifdef HAVE_CONFIG_H
17 # include "config.h"
18 #endif
19 #include "php.h"
20
21 #if defined(ZEND_ENGINE_2) && defined(HTTP_HAVE_CURL)
22
23 #include "zend_interfaces.h"
24
25 #include "php_http_std_defs.h"
26 #include "php_http_request_object.h"
27 #include "php_http_request_api.h"
28 #include "php_http_request_pool_api.h"
29 #include "php_http.h"
30 #include "php_http_api.h"
31 #include "php_http_url_api.h"
32 #include "php_http_message_api.h"
33 #include "php_http_message_object.h"
34 #include "php_http_exception_object.h"
35
36 #include "missing.h"
37
38 #ifdef PHP_WIN32
39 # include <winsock2.h>
40 #endif
41 #include <curl/curl.h>
42
43 ZEND_EXTERN_MODULE_GLOBALS(http);
44
45 #define HTTP_BEGIN_ARGS(method, ret_ref, req_args) HTTP_BEGIN_ARGS_EX(HttpRequest, method, ret_ref, req_args)
46 #define HTTP_EMPTY_ARGS(method, ret_ref) HTTP_EMPTY_ARGS_EX(HttpRequest, method, ret_ref)
47 #define HTTP_REQUEST_ME(method, visibility) PHP_ME(HttpRequest, method, HTTP_ARGS(HttpRequest, method), visibility)
48 #define HTTP_REQUEST_ALIAS(method, func) HTTP_STATIC_ME_ALIAS(method, func, HTTP_ARGS(HttpRequest, method))
49
50 HTTP_EMPTY_ARGS(__destruct, 0);
51 HTTP_BEGIN_ARGS(__construct, 0, 0)
52 HTTP_ARG_VAL(url, 0)
53 HTTP_ARG_VAL(method, 0)
54 HTTP_ARG_VAL(options, 0)
55 HTTP_END_ARGS;
56
57 HTTP_EMPTY_ARGS(getOptions, 0);
58 HTTP_BEGIN_ARGS(setOptions, 0, 0)
59 HTTP_ARG_VAL(options, 0)
60 HTTP_END_ARGS;
61
62 HTTP_EMPTY_ARGS(getSslOptions, 0);
63 HTTP_BEGIN_ARGS(setSslOptions, 0, 0)
64 HTTP_ARG_VAL(ssl_options, 0)
65 HTTP_END_ARGS;
66
67 HTTP_EMPTY_ARGS(getHeaders, 0);
68 HTTP_BEGIN_ARGS(setHeaders, 0, 0)
69 HTTP_ARG_VAL(headers, 0)
70 HTTP_END_ARGS;
71
72 HTTP_BEGIN_ARGS(addHeaders, 0, 1)
73 HTTP_ARG_VAL(headers, 0)
74 HTTP_END_ARGS;
75
76 HTTP_EMPTY_ARGS(getCookies, 0);
77 HTTP_BEGIN_ARGS(setCookies, 0, 0)
78 HTTP_ARG_VAL(cookies, 0)
79 HTTP_END_ARGS;
80
81 HTTP_BEGIN_ARGS(addCookies, 0, 1)
82 HTTP_ARG_VAL(cookies, 0)
83 HTTP_END_ARGS;
84
85 HTTP_EMPTY_ARGS(getUrl, 0);
86 HTTP_BEGIN_ARGS(setUrl, 0, 1)
87 HTTP_ARG_VAL(url, 0)
88 HTTP_END_ARGS;
89
90 HTTP_EMPTY_ARGS(getMethod, 0);
91 HTTP_BEGIN_ARGS(setMethod, 0, 1)
92 HTTP_ARG_VAL(request_method, 0)
93 HTTP_END_ARGS;
94
95 HTTP_EMPTY_ARGS(getContentType, 0);
96 HTTP_BEGIN_ARGS(setContentType, 0, 1)
97 HTTP_ARG_VAL(content_type, 0)
98 HTTP_END_ARGS;
99
100 HTTP_EMPTY_ARGS(getQueryData, 0);
101 HTTP_BEGIN_ARGS(setQueryData, 0, 0)
102 HTTP_ARG_VAL(query_data, 0)
103 HTTP_END_ARGS;
104
105 HTTP_BEGIN_ARGS(addQueryData, 0, 1)
106 HTTP_ARG_VAL(query_data, 0)
107 HTTP_END_ARGS;
108
109 HTTP_EMPTY_ARGS(getPostFields, 0);
110 HTTP_BEGIN_ARGS(setPostFields, 0, 0)
111 HTTP_ARG_VAL(post_fields, 0)
112 HTTP_END_ARGS;
113
114 HTTP_BEGIN_ARGS(addPostFields, 0, 1)
115 HTTP_ARG_VAL(post_fields, 0)
116 HTTP_END_ARGS;
117
118 HTTP_EMPTY_ARGS(getPostFiles, 0);
119 HTTP_BEGIN_ARGS(setPostFiles, 0, 0)
120 HTTP_ARG_VAL(post_files, 0)
121 HTTP_END_ARGS;
122
123 HTTP_BEGIN_ARGS(addPostFile, 0, 2)
124 HTTP_ARG_VAL(formname, 0)
125 HTTP_ARG_VAL(filename, 0)
126 HTTP_ARG_VAL(content_type, 0)
127 HTTP_END_ARGS;
128
129 HTTP_EMPTY_ARGS(getRawPostData, 0);
130 HTTP_BEGIN_ARGS(setRawPostData, 0, 0)
131 HTTP_ARG_VAL(raw_post_data, 0)
132 HTTP_END_ARGS;
133
134 HTTP_BEGIN_ARGS(addRawPostData, 0, 1)
135 HTTP_ARG_VAL(raw_post_data, 0)
136 HTTP_END_ARGS;
137
138 HTTP_EMPTY_ARGS(getPutFile, 0);
139 HTTP_BEGIN_ARGS(setPutFile, 0, 0)
140 HTTP_ARG_VAL(filename, 0)
141 HTTP_END_ARGS;
142
143 HTTP_EMPTY_ARGS(getResponseData, 0);
144 HTTP_BEGIN_ARGS(getResponseHeader, 0, 0)
145 HTTP_ARG_VAL(name, 0)
146 HTTP_END_ARGS;
147
148 HTTP_BEGIN_ARGS(getResponseCookie, 0, 0)
149 HTTP_ARG_VAL(name, 0)
150 HTTP_END_ARGS;
151
152 HTTP_EMPTY_ARGS(getResponseBody, 0);
153 HTTP_EMPTY_ARGS(getResponseCode, 0);
154 HTTP_BEGIN_ARGS(getResponseInfo, 0, 0)
155 HTTP_ARG_VAL(name, 0)
156 HTTP_END_ARGS;
157
158 HTTP_EMPTY_ARGS(getResponseMessage, 1);
159 HTTP_EMPTY_ARGS(getRequestMessage, 1);
160 HTTP_EMPTY_ARGS(getHistory, 1);
161 HTTP_EMPTY_ARGS(clearHistory, 0);
162 HTTP_EMPTY_ARGS(send, 1);
163
164 HTTP_BEGIN_ARGS(get, 0, 1)
165 HTTP_ARG_VAL(url, 0)
166 HTTP_ARG_VAL(options, 0)
167 HTTP_ARG_VAL(info, 1)
168 HTTP_END_ARGS;
169
170 HTTP_BEGIN_ARGS(head, 0, 1)
171 HTTP_ARG_VAL(url, 0)
172 HTTP_ARG_VAL(options, 0)
173 HTTP_ARG_VAL(info, 1)
174 HTTP_END_ARGS;
175
176 HTTP_BEGIN_ARGS(postData, 0, 2)
177 HTTP_ARG_VAL(url, 0)
178 HTTP_ARG_VAL(data, 0)
179 HTTP_ARG_VAL(options, 0)
180 HTTP_ARG_VAL(info, 1)
181 HTTP_END_ARGS;
182
183 HTTP_BEGIN_ARGS(postFields, 0, 2)
184 HTTP_ARG_VAL(url, 0)
185 HTTP_ARG_VAL(data, 0)
186 HTTP_ARG_VAL(options, 0)
187 HTTP_ARG_VAL(info, 1)
188 HTTP_END_ARGS;
189
190 HTTP_BEGIN_ARGS(putFile, 0, 2)
191 HTTP_ARG_VAL(url, 0)
192 HTTP_ARG_VAL(file, 0)
193 HTTP_ARG_VAL(options, 0)
194 HTTP_ARG_VAL(info, 1)
195 HTTP_END_ARGS;
196
197 HTTP_BEGIN_ARGS(putStream, 0, 2)
198 HTTP_ARG_VAL(url, 0)
199 HTTP_ARG_VAL(stream, 0)
200 HTTP_ARG_VAL(options, 0)
201 HTTP_ARG_VAL(info, 1)
202 HTTP_END_ARGS;
203
204 HTTP_BEGIN_ARGS(methodRegister, 0, 1)
205 HTTP_ARG_VAL(method_name, 0)
206 HTTP_END_ARGS;
207
208 HTTP_BEGIN_ARGS(methodUnregister, 0, 1)
209 HTTP_ARG_VAL(method, 0)
210 HTTP_END_ARGS;
211
212 HTTP_BEGIN_ARGS(methodName, 0, 1)
213 HTTP_ARG_VAL(method_id, 0)
214 HTTP_END_ARGS;
215
216 HTTP_BEGIN_ARGS(methodExists, 0, 1)
217 HTTP_ARG_VAL(method, 0)
218 HTTP_END_ARGS;
219
220 #define http_request_object_declare_default_properties() _http_request_object_declare_default_properties(TSRMLS_C)
221 static inline void _http_request_object_declare_default_properties(TSRMLS_D);
222
223 zend_class_entry *http_request_object_ce;
224 zend_function_entry http_request_object_fe[] = {
225 HTTP_REQUEST_ME(__construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
226 HTTP_REQUEST_ME(__destruct, ZEND_ACC_PUBLIC|ZEND_ACC_DTOR)
227
228 HTTP_REQUEST_ME(setOptions, ZEND_ACC_PUBLIC)
229 HTTP_REQUEST_ME(getOptions, ZEND_ACC_PUBLIC)
230 HTTP_REQUEST_ME(setSslOptions, ZEND_ACC_PUBLIC)
231 HTTP_REQUEST_ME(getSslOptions, ZEND_ACC_PUBLIC)
232
233 HTTP_REQUEST_ME(addHeaders, ZEND_ACC_PUBLIC)
234 HTTP_REQUEST_ME(getHeaders, ZEND_ACC_PUBLIC)
235 HTTP_REQUEST_ME(setHeaders, ZEND_ACC_PUBLIC)
236
237 HTTP_REQUEST_ME(addCookies, ZEND_ACC_PUBLIC)
238 HTTP_REQUEST_ME(getCookies, ZEND_ACC_PUBLIC)
239 HTTP_REQUEST_ME(setCookies, ZEND_ACC_PUBLIC)
240
241 HTTP_REQUEST_ME(setMethod, ZEND_ACC_PUBLIC)
242 HTTP_REQUEST_ME(getMethod, ZEND_ACC_PUBLIC)
243
244 HTTP_REQUEST_ME(setUrl, ZEND_ACC_PUBLIC)
245 HTTP_REQUEST_ME(getUrl, ZEND_ACC_PUBLIC)
246
247 HTTP_REQUEST_ME(setContentType, ZEND_ACC_PUBLIC)
248 HTTP_REQUEST_ME(getContentType, ZEND_ACC_PUBLIC)
249
250 HTTP_REQUEST_ME(setQueryData, ZEND_ACC_PUBLIC)
251 HTTP_REQUEST_ME(getQueryData, ZEND_ACC_PUBLIC)
252 HTTP_REQUEST_ME(addQueryData, ZEND_ACC_PUBLIC)
253
254 HTTP_REQUEST_ME(setPostFields, ZEND_ACC_PUBLIC)
255 HTTP_REQUEST_ME(getPostFields, ZEND_ACC_PUBLIC)
256 HTTP_REQUEST_ME(addPostFields, ZEND_ACC_PUBLIC)
257
258 HTTP_REQUEST_ME(setRawPostData, ZEND_ACC_PUBLIC)
259 HTTP_REQUEST_ME(getRawPostData, ZEND_ACC_PUBLIC)
260 HTTP_REQUEST_ME(addRawPostData, ZEND_ACC_PUBLIC)
261
262 HTTP_REQUEST_ME(setPostFiles, ZEND_ACC_PUBLIC)
263 HTTP_REQUEST_ME(addPostFile, ZEND_ACC_PUBLIC)
264 HTTP_REQUEST_ME(getPostFiles, ZEND_ACC_PUBLIC)
265
266 HTTP_REQUEST_ME(setPutFile, ZEND_ACC_PUBLIC)
267 HTTP_REQUEST_ME(getPutFile, ZEND_ACC_PUBLIC)
268
269 HTTP_REQUEST_ME(send, ZEND_ACC_PUBLIC)
270
271 HTTP_REQUEST_ME(getResponseData, ZEND_ACC_PUBLIC)
272 HTTP_REQUEST_ME(getResponseHeader, ZEND_ACC_PUBLIC)
273 HTTP_REQUEST_ME(getResponseCookie, ZEND_ACC_PUBLIC)
274 HTTP_REQUEST_ME(getResponseCode, ZEND_ACC_PUBLIC)
275 HTTP_REQUEST_ME(getResponseBody, ZEND_ACC_PUBLIC)
276 HTTP_REQUEST_ME(getResponseInfo, ZEND_ACC_PUBLIC)
277 HTTP_REQUEST_ME(getResponseMessage, ZEND_ACC_PUBLIC)
278 HTTP_REQUEST_ME(getRequestMessage, ZEND_ACC_PUBLIC)
279 HTTP_REQUEST_ME(getHistory, ZEND_ACC_PUBLIC)
280 HTTP_REQUEST_ME(clearHistory, ZEND_ACC_PUBLIC)
281
282 HTTP_REQUEST_ALIAS(get, http_get)
283 HTTP_REQUEST_ALIAS(head, http_head)
284 HTTP_REQUEST_ALIAS(postData, http_post_data)
285 HTTP_REQUEST_ALIAS(postFields, http_post_fields)
286 HTTP_REQUEST_ALIAS(putFile, http_put_file)
287 HTTP_REQUEST_ALIAS(putStream, http_put_stream)
288
289 HTTP_REQUEST_ALIAS(methodRegister, http_request_method_register)
290 HTTP_REQUEST_ALIAS(methodUnregister, http_request_method_unregister)
291 HTTP_REQUEST_ALIAS(methodName, http_request_method_name)
292 HTTP_REQUEST_ALIAS(methodExists, http_request_method_exists)
293
294 EMPTY_FUNCTION_ENTRY
295 };
296 static zend_object_handlers http_request_object_handlers;
297
298 PHP_MINIT_FUNCTION(http_request_object)
299 {
300 HTTP_REGISTER_CLASS_EX(HttpRequest, http_request_object, NULL, 0);
301 http_request_object_handlers.clone_obj = _http_request_object_clone_obj;
302 return SUCCESS;
303 }
304
305 zend_object_value _http_request_object_new(zend_class_entry *ce TSRMLS_DC)
306 {
307 return http_request_object_new_ex(ce, curl_easy_init(), NULL);
308 }
309
310 zend_object_value _http_request_object_new_ex(zend_class_entry *ce, CURL *ch, http_request_object **ptr TSRMLS_DC)
311 {
312 zend_object_value ov;
313 http_request_object *o;
314
315 o = ecalloc(1, sizeof(http_request_object));
316 o->zo.ce = ce;
317 o->ch = ch;
318
319 if (ptr) {
320 *ptr = o;
321 }
322
323 phpstr_init(&o->history);
324 phpstr_init(&o->request);
325 phpstr_init_ex(&o->response, HTTP_CURLBUF_SIZE, 0);
326
327 ALLOC_HASHTABLE(OBJ_PROP(o));
328 zend_hash_init(OBJ_PROP(o), 0, NULL, ZVAL_PTR_DTOR, 0);
329 zend_hash_copy(OBJ_PROP(o), &ce->default_properties, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
330
331 ov.handle = putObject(http_request_object, o);
332 ov.handlers = &http_request_object_handlers;
333
334 return ov;
335 }
336
337 zend_object_value _http_request_object_clone_obj(zval *this_ptr TSRMLS_DC)
338 {
339 zend_object *old_zo;
340 zend_object_value new_ov;
341 http_request_object *new_obj;
342 getObject(http_request_object, old_obj);
343
344 old_zo = zend_objects_get_address(this_ptr TSRMLS_CC);
345 new_ov = http_request_object_new_ex(old_zo->ce, curl_easy_duphandle(old_obj->ch), &new_obj);
346
347 zend_objects_clone_members(&new_obj->zo, new_ov, old_zo, Z_OBJ_HANDLE_P(this_ptr) TSRMLS_CC);
348 phpstr_append(&new_obj->history, old_obj->history.data, old_obj->history.used);
349 phpstr_append(&new_obj->request, old_obj->request.data, old_obj->request.used);
350 phpstr_append(&new_obj->response, old_obj->response.data, old_obj->response.used);
351
352 return new_ov;
353 }
354
355 static inline void _http_request_object_declare_default_properties(TSRMLS_D)
356 {
357 zend_class_entry *ce = http_request_object_ce;
358
359 DCL_PROP_N(PROTECTED, options);
360 DCL_PROP_N(PROTECTED, responseInfo);
361 DCL_PROP_N(PROTECTED, responseData);
362 DCL_PROP_N(PROTECTED, responseCode);
363 DCL_PROP_N(PROTECTED, responseMessage);
364 DCL_PROP_N(PROTECTED, postFields);
365 DCL_PROP_N(PROTECTED, postFiles);
366
367 DCL_PROP(PROTECTED, long, method, HTTP_GET);
368
369 DCL_PROP(PROTECTED, string, url, "");
370 DCL_PROP(PROTECTED, string, contentType, "");
371 DCL_PROP(PROTECTED, string, rawPostData, "");
372 DCL_PROP(PROTECTED, string, queryData, "");
373 DCL_PROP(PROTECTED, string, putFile, "");
374
375 DCL_PROP(PUBLIC, bool, recordHistory, 0);
376
377 #ifndef WONKY
378 /*
379 * Request Method Constants
380 */
381 /* HTTP/1.1 */
382 DCL_CONST(long, "METH_GET", HTTP_GET);
383 DCL_CONST(long, "METH_HEAD", HTTP_HEAD);
384 DCL_CONST(long, "METH_POST", HTTP_POST);
385 DCL_CONST(long, "METH_PUT", HTTP_PUT);
386 DCL_CONST(long, "METH_DELETE", HTTP_DELETE);
387 DCL_CONST(long, "METH_OPTIONS", HTTP_OPTIONS);
388 DCL_CONST(long, "METH_TRACE", HTTP_TRACE);
389 DCL_CONST(long, "METH_CONNECT", HTTP_CONNECT);
390 /* WebDAV - RFC 2518 */
391 DCL_CONST(long, "METH_PROPFIND", HTTP_PROPFIND);
392 DCL_CONST(long, "METH_PROPPATCH", HTTP_PROPPATCH);
393 DCL_CONST(long, "METH_MKCOL", HTTP_MKCOL);
394 DCL_CONST(long, "METH_COPY", HTTP_COPY);
395 DCL_CONST(long, "METH_MOVE", HTTP_MOVE);
396 DCL_CONST(long, "METH_LOCK", HTTP_LOCK);
397 DCL_CONST(long, "METH_UNLOCK", HTTP_UNLOCK);
398 /* WebDAV Versioning - RFC 3253 */
399 DCL_CONST(long, "METH_VERSION_CONTROL", HTTP_VERSION_CONTROL);
400 DCL_CONST(long, "METH_REPORT", HTTP_REPORT);
401 DCL_CONST(long, "METH_CHECKOUT", HTTP_CHECKOUT);
402 DCL_CONST(long, "METH_CHECKIN", HTTP_CHECKIN);
403 DCL_CONST(long, "METH_UNCHECKOUT", HTTP_UNCHECKOUT);
404 DCL_CONST(long, "METH_MKWORKSPACE", HTTP_MKWORKSPACE);
405 DCL_CONST(long, "METH_UPDATE", HTTP_UPDATE);
406 DCL_CONST(long, "METH_LABEL", HTTP_LABEL);
407 DCL_CONST(long, "METH_MERGE", HTTP_MERGE);
408 DCL_CONST(long, "METH_BASELINE_CONTROL", HTTP_BASELINE_CONTROL);
409 DCL_CONST(long, "METH_MKACTIVITY", HTTP_MKACTIVITY);
410 /* WebDAV Access Control - RFC 3744 */
411 DCL_CONST(long, "METH_ACL", HTTP_ACL);
412
413 /*
414 * Auth Constants
415 */
416 # if LIBCURL_VERSION_NUM >= 0x070a05
417 DCL_CONST(long, "AUTH_BASIC", CURLAUTH_BASIC);
418 DCL_CONST(long, "AUTH_DIGEST", CURLAUTH_DIGEST);
419 DCL_CONST(long, "AUTH_NTLM", CURLAUTH_NTLM);
420 DCL_CONST(long, "AUTH_ANY", CURLAUTH_ANY);
421 # endif /* LIBCURL_VERSION_NUM */
422 #endif /* WONKY */
423 }
424
425 void _http_request_object_free(zend_object *object TSRMLS_DC)
426 {
427 http_request_object *o = (http_request_object *) object;
428
429 if (OBJ_PROP(o)) {
430 zend_hash_destroy(OBJ_PROP(o));
431 FREE_HASHTABLE(OBJ_PROP(o));
432 }
433 if (o->ch) {
434 /* avoid nasty segfaults with already cleaned up callbacks */
435 curl_easy_setopt(o->ch, CURLOPT_NOPROGRESS, 1);
436 curl_easy_setopt(o->ch, CURLOPT_PROGRESSFUNCTION, NULL);
437 curl_easy_setopt(o->ch, CURLOPT_VERBOSE, 0);
438 curl_easy_setopt(o->ch, CURLOPT_DEBUGFUNCTION, NULL);
439 curl_easy_cleanup(o->ch);
440 }
441 phpstr_dtor(&o->response);
442 phpstr_dtor(&o->request);
443 phpstr_dtor(&o->history);
444 efree(o);
445 }
446
447 STATUS _http_request_object_requesthandler(http_request_object *obj, zval *this_ptr, http_request_body *body TSRMLS_DC)
448 {
449 zval *meth, *URL, *meth_p, *URL_p;
450 char *request_uri;
451 STATUS status = SUCCESS;
452
453 if (!body) {
454 return FAILURE;
455 }
456 HTTP_CHECK_CURL_INIT(obj->ch, curl_easy_init(), return FAILURE);
457
458 URL = convert_to_type_ex(IS_STRING, GET_PROP(obj, url), &URL_p);
459 // HTTP_URI_MAXLEN+1 long char *
460 if (!(request_uri = http_absolute_uri_ex(Z_STRVAL_P(URL), Z_STRLEN_P(URL), NULL, 0, NULL, 0, 0))) {
461 if (URL_p) {
462 zval_ptr_dtor(&URL_p);
463 }
464 return FAILURE;
465 }
466 if (URL_p) {
467 zval_ptr_dtor(&URL_p);
468 }
469
470 meth = convert_to_type_ex(IS_LONG, GET_PROP(obj, method), &meth_p);
471 switch (Z_LVAL_P(meth))
472 {
473 case HTTP_GET:
474 case HTTP_HEAD:
475 body->type = -1;
476 body = NULL;
477 break;
478
479 case HTTP_PUT:
480 {
481 php_stream_statbuf ssb;
482 php_stream *stream = php_stream_open_wrapper(Z_STRVAL_P(GET_PROP(obj, putFile)), "rb", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL);
483
484 if (stream && !php_stream_stat(stream, &ssb)) {
485 body->type = HTTP_REQUEST_BODY_UPLOADFILE;
486 body->data = stream;
487 body->size = ssb.sb.st_size;
488 } else {
489 status = FAILURE;
490 }
491 }
492 break;
493
494 case HTTP_POST:
495 default:
496 {
497 /* check for raw post data */
498 zval *raw_data_p, *raw_data = convert_to_type_ex(IS_STRING, GET_PROP(obj, rawPostData), &raw_data_p);
499
500 if (Z_STRLEN_P(raw_data)) {
501 zval *ctype_p, *ctype = convert_to_type_ex(IS_STRING, GET_PROP(obj, contentType), &ctype_p);
502
503 if (Z_STRLEN_P(ctype)) {
504 zval **headers, *opts = GET_PROP(obj, options);
505
506 convert_to_array(opts);
507
508 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(opts), "headers", sizeof("headers"), (void **) &headers)) {
509 zval **ct_header;
510
511 convert_to_array(*headers);
512 /* only override if not already set */
513 if (SUCCESS != zend_hash_find(Z_ARRVAL_PP(headers), "Content-Type", sizeof("Content-Type"), (void **) &ct_header)) {
514 add_assoc_stringl(*headers, "Content-Type", Z_STRVAL_P(ctype), Z_STRLEN_P(ctype), 1);
515 }
516 } else {
517 zval *headers;
518
519 MAKE_STD_ZVAL(headers);
520 array_init(headers);
521 add_assoc_stringl(headers, "Content-Type", Z_STRVAL_P(ctype), Z_STRLEN_P(ctype), 1);
522 add_assoc_zval(opts, "headers", headers);
523 }
524 }
525
526 if (ctype_p) {
527 zval_ptr_dtor(&ctype_p);
528 }
529
530 body->type = HTTP_REQUEST_BODY_CSTRING;
531 body->data = estrndup(Z_STRVAL_P(raw_data), Z_STRLEN_P(raw_data));
532 body->size = Z_STRLEN_P(raw_data);
533 } else {
534 status = http_request_body_fill(body, Z_ARRVAL_P(GET_PROP(obj, postFields)), Z_ARRVAL_P(GET_PROP(obj, postFiles)));
535 }
536
537 if (raw_data_p) {
538 zval_ptr_dtor(&raw_data_p);
539 }
540 }
541 break;
542 }
543
544 if (meth_p) {
545 zval_ptr_dtor(&meth_p);
546 }
547
548 if (status == SUCCESS) {
549 zval *qdata_p, *qdata = convert_to_type_ex(IS_STRING, GET_PROP(obj, queryData), &qdata_p);
550
551 if (Z_STRLEN_P(qdata)) {
552 if (!strchr(request_uri, '?')) {
553 strlcat(request_uri, "?", HTTP_URI_MAXLEN);
554 } else {
555 strlcat(request_uri, "&", HTTP_URI_MAXLEN);
556 }
557 strlcat(request_uri, Z_STRVAL_P(qdata), HTTP_URI_MAXLEN);
558 }
559
560 if (qdata_p) {
561 zval_ptr_dtor(&qdata_p);
562 }
563
564 status = http_request_init(obj->ch, Z_LVAL_P(meth), request_uri, body, Z_ARRVAL_P(GET_PROP(obj, options)));
565 }
566 efree(request_uri);
567
568 /* clean previous response */
569 phpstr_dtor(&obj->response);
570 /* clean previous request */
571 phpstr_dtor(&obj->request);
572
573 return status;
574 }
575
576 STATUS _http_request_object_responsehandler(http_request_object *obj, zval *this_ptr TSRMLS_DC)
577 {
578 http_message *msg;
579
580 phpstr_fix(&obj->request);
581 phpstr_fix(&obj->response);
582
583 msg = http_message_parse(PHPSTR_VAL(&obj->response), PHPSTR_LEN(&obj->response));
584
585 if (!msg) {
586 return FAILURE;
587 } else {
588 char *body;
589 size_t body_len;
590 zval *headers, *message,
591 *resp = convert_to_type(IS_ARRAY, GET_PROP(obj, responseData)),
592 *info = convert_to_type(IS_ARRAY, GET_PROP(obj, responseInfo));
593
594 SEP_PROP(&resp);
595 SEP_PROP(&info);
596
597 if (zval_is_true(GET_PROP(obj, recordHistory))) {
598 /* we need to act like a zipper, as we'll receive
599 * the requests and the responses in separate chains
600 * for redirects
601 */
602 http_message *response = msg, *request = http_message_parse(PHPSTR_VAL(&obj->request), PHPSTR_LEN(&obj->request));
603 http_message *free_msg = request;
604
605 do {
606 char *message;
607 size_t msglen;
608
609 http_message_tostring(response, &message, &msglen);
610 phpstr_append(&obj->history, message, msglen);
611 efree(message);
612
613 http_message_tostring(request, &message, &msglen);
614 phpstr_append(&obj->history, message, msglen);
615 efree(message);
616
617 } while ((response = response->parent) && (request = request->parent));
618
619 http_message_free(&free_msg);
620 phpstr_fix(&obj->history);
621 }
622
623 UPD_PROP(obj, long, responseCode, msg->http.info.response.code);
624
625 MAKE_STD_ZVAL(headers)
626 array_init(headers);
627
628 zend_hash_copy(Z_ARRVAL_P(headers), &msg->hdrs, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
629 phpstr_data(PHPSTR(msg), &body, &body_len);
630
631 add_assoc_zval(resp, "headers", headers);
632 add_assoc_stringl(resp, "body", body, body_len, 0);
633 SET_PROP(obj, responseData, resp);
634
635 MAKE_STD_ZVAL(message);
636 ZVAL_OBJVAL(message, http_message_object_new_ex(http_message_object_ce, msg, NULL));
637 SET_PROP(obj, responseMessage, message);
638 zval_ptr_dtor(&message);
639
640 http_request_info(obj->ch, Z_ARRVAL_P(info));
641 SET_PROP(obj, responseInfo, info);
642
643 return SUCCESS;
644 }
645 }
646
647 #define http_request_object_set_options_subr(key, ow) \
648 _http_request_object_set_options_subr(INTERNAL_FUNCTION_PARAM_PASSTHRU, (key), sizeof(key), (ow))
649 static inline void _http_request_object_set_options_subr(INTERNAL_FUNCTION_PARAMETERS, char *key, size_t len, int overwrite)
650 {
651 zval *opts, **options, *new_options = NULL;
652 getObject(http_request_object, obj);
653
654 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|a/!", &new_options)) {
655 RETURN_FALSE;
656 }
657
658 opts = convert_to_type(IS_ARRAY, GET_PROP(obj, options));
659
660 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(opts), key, len, (void **) &options)) {
661 convert_to_array(*options);
662 if (overwrite) {
663 zend_hash_clean(Z_ARRVAL_PP(options));
664 }
665 if (new_options && zend_hash_num_elements(Z_ARRVAL_P(new_options))) {
666 if (overwrite) {
667 array_copy(new_options, *options);
668 } else {
669 array_merge(new_options, *options);
670 }
671 }
672 } else if (new_options && zend_hash_num_elements(Z_ARRVAL_P(new_options))) {
673 ZVAL_ADDREF(new_options);
674 add_assoc_zval(opts, key, new_options);
675 }
676
677 RETURN_TRUE;
678 }
679
680 #define http_request_object_get_options_subr(key) \
681 _http_request_get_options_subr(INTERNAL_FUNCTION_PARAM_PASSTHRU, (key), sizeof(key))
682 static inline void _http_request_get_options_subr(INTERNAL_FUNCTION_PARAMETERS, char *key, size_t len)
683 {
684 NO_ARGS;
685
686 IF_RETVAL_USED {
687 zval *opts_p, *opts, **options;
688 getObject(http_request_object, obj);
689
690 opts = convert_to_type_ex(IS_ARRAY, GET_PROP(obj, options), &opts_p);
691
692 array_init(return_value);
693
694 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(opts), key, len, (void **) &options)) {
695 convert_to_array(*options);
696 array_copy(*options, return_value);
697 }
698
699 if (opts_p) {
700 zval_ptr_dtor(&opts_p);
701 }
702 }
703 }
704
705
706 /* ### USERLAND ### */
707
708 /* {{{ proto void HttpRequest::__construct([string url[, int request_method = HTTP_METH_GET[, array options]]])
709 *
710 * Instantiate a new HttpRequest object.
711 *
712 * Accepts a string as optional parameter containing the target request url.
713 * Additianally accepts an optional int parameter specifying the request method
714 * to use and an associative array as optional third parameter which will be
715 * passed to HttpRequest::setOptions().
716 *
717 * Throws HttpException.
718 */
719 PHP_METHOD(HttpRequest, __construct)
720 {
721 char *URL = NULL;
722 int URL_len;
723 long meth = -1;
724 zval *options = NULL;
725 getObject(http_request_object, obj);
726
727 SET_EH_THROW_HTTP();
728 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sla", &URL, &URL_len, &meth, &options)) {
729 INIT_PARR(obj, options);
730 INIT_PARR(obj, responseInfo);
731 INIT_PARR(obj, responseData);
732 INIT_PARR(obj, postFields);
733 INIT_PARR(obj, postFiles);
734
735 if (URL) {
736 UPD_STRL(obj, url, URL, URL_len);
737 }
738 if (meth > -1) {
739 UPD_PROP(obj, long, method, meth);
740 }
741 if (options) {
742 zend_call_method_with_1_params(&getThis(), Z_OBJCE_P(getThis()), NULL, "setoptions", NULL, options);
743 }
744 }
745 SET_EH_NORMAL();
746 }
747 /* }}} */
748
749 /* {{{ proto void HttpRequest::__destruct()
750 *
751 * Destroys the HttpRequest object.
752 */
753 PHP_METHOD(HttpRequest, __destruct)
754 {
755 getObject(http_request_object, obj);
756
757 NO_ARGS;
758
759 FREE_PARR(obj, options);
760 FREE_PARR(obj, responseInfo);
761 FREE_PARR(obj, responseData);
762 FREE_PARR(obj, postFields);
763 FREE_PARR(obj, postFiles);
764 }
765 /* }}} */
766
767 /* {{{ proto bool HttpRequest::setOptions([array options])
768 *
769 * Set the request options to use. See http_get() for a full list of available options.
770 *
771 * Accepts an array as optional parameters, wich values will overwrite the
772 * currently set request options. If the parameter is empty or mitted,
773 * the optoions of the HttpRequest object will be reset.
774 *
775 * Returns TRUE on success, or FALSE on failure.
776 */
777 PHP_METHOD(HttpRequest, setOptions)
778 {
779 char *key = NULL;
780 ulong idx = 0;
781 zval *opts = NULL, *old_opts, **opt;
782 getObject(http_request_object, obj);
783
784 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|a!", &opts)) {
785 RETURN_FALSE;
786 }
787
788 old_opts = convert_to_type(IS_ARRAY, GET_PROP(obj, options));
789 SEP_PROP(&old_opts);
790
791 if (!opts || !zend_hash_num_elements(Z_ARRVAL_P(opts))) {
792 zend_hash_clean(Z_ARRVAL_P(old_opts));
793 SET_PROP(obj, options, old_opts);
794 RETURN_TRUE;
795 }
796
797 /* some options need extra attention -- thus cannot use array_merge() directly */
798 FOREACH_KEYVAL(opts, key, idx, opt) {
799 if (key) {
800 if (!strcmp(key, "headers")) {
801 zval **headers;
802 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(old_opts), "headers", sizeof("headers"), (void **) &headers)) {
803 convert_to_array_ex(opt);
804 convert_to_array(*headers);
805 array_merge(*opt, *headers);
806 continue;
807 }
808 } else if (!strcmp(key, "cookies")) {
809 zval **cookies;
810 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(old_opts), "cookies", sizeof("cookies"), (void **) &cookies)) {
811 convert_to_array_ex(opt);
812 convert_to_array(*cookies);
813 array_merge(*opt, *cookies);
814 continue;
815 }
816 } else if (!strcmp(key, "ssl")) {
817 zval **ssl;
818 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(old_opts), "ssl", sizeof("ssl"), (void **) &ssl)) {
819 convert_to_array_ex(opt);
820 convert_to_array(*ssl);
821 array_merge(*opt, *ssl);
822 continue;
823 }
824 } else if ((!strcasecmp(key, "url")) || (!strcasecmp(key, "uri"))) {
825 if (Z_TYPE_PP(opt) != IS_STRING) {
826 convert_to_string_ex(opt);
827 }
828 UPD_STRL(obj, url, Z_STRVAL_PP(opt), Z_STRLEN_PP(opt));
829 continue;
830 } else if (!strcmp(key, "method")) {
831 if (Z_TYPE_PP(opt) != IS_LONG) {
832 convert_to_long_ex(opt);
833 }
834 UPD_PROP(obj, long, method, Z_LVAL_PP(opt));
835 continue;
836 }
837
838 ZVAL_ADDREF(*opt);
839 add_assoc_zval(old_opts, key, *opt);
840
841 /* reset */
842 key = NULL;
843 }
844 }
845 SET_PROP(obj, options, old_opts);
846
847 RETURN_TRUE;
848 }
849 /* }}} */
850
851 /* {{{ proto array HttpRequest::getOptions()
852 *
853 * Get currently set options.
854 *
855 * Returns an associative array containing currently set options.
856 */
857 PHP_METHOD(HttpRequest, getOptions)
858 {
859 NO_ARGS;
860
861 IF_RETVAL_USED {
862 zval *opts_p, *opts;
863 getObject(http_request_object, obj);
864
865 opts = convert_to_type_ex(IS_ARRAY, GET_PROP(obj, options), &opts_p);
866 array_init(return_value);
867 array_copy(opts, return_value);
868
869 if (opts_p) {
870 zval_ptr_dtor(&opts_p);
871 }
872 }
873 }
874 /* }}} */
875
876 /* {{{ proto bool HttpRequest::setSslOptions([array options])
877 *
878 * Set SSL options.
879 *
880 * Accepts an associative array as parameter containing any SSL specific options.
881 * If the parameter is empty or omitted, the SSL options will be reset.
882 *
883 * Returns TRUE on success, or FALSE on failure.
884 */
885 PHP_METHOD(HttpRequest, setSslOptions)
886 {
887 http_request_object_set_options_subr("ssl", 1);
888 }
889 /* }}} */
890
891 /* {{{ proto bool HttpRequest::addSslOptions(array options)
892 *
893 * Set additional SSL options.
894 *
895 * Expects an associative array as parameter containing additional SSL specific options.
896 *
897 * Returns TRUE on success, or FALSE on failure.
898 */
899 PHP_METHOD(HttpRequest, addSslOptions)
900 {
901 http_request_object_set_options_subr("ssl", 0);
902 }
903 /* }}} */
904
905 /* {{{ proto array HttpRequest::getSslOtpions()
906 *
907 * Get previously set SSL options.
908 *
909 * Returns an associative array containing any previously set SSL options.
910 */
911 PHP_METHOD(HttpRequest, getSslOptions)
912 {
913 http_request_object_get_options_subr("ssl");
914 }
915 /* }}} */
916
917 /* {{{ proto bool HttpRequest::addHeaders(array headers)
918 *
919 * Add request header name/value pairs.
920 *
921 * Expects an ssociative array as parameter containing additional header
922 * name/value pairs.
923 *
924 * Returns TRUE on success, or FALSE on failure.
925 */
926 PHP_METHOD(HttpRequest, addHeaders)
927 {
928 http_request_object_set_options_subr("headers", 0);
929 }
930
931 /* {{{ proto bool HttpRequest::setHeaders([array headers])
932 *
933 * Set request header name/value pairs.
934 *
935 * Accepts an associative array as parameter containing header name/value pairs.
936 * If the parameter is empty or omitted, all previously set headers will be unset.
937 *
938 * Returns TRUE on success, or FALSE on failure.
939 */
940 PHP_METHOD(HttpRequest, setHeaders)
941 {
942 http_request_object_set_options_subr("headers", 1);
943 }
944 /* }}} */
945
946 /* {{{ proto array HttpRequest::getHeaders()
947 *
948 * Get previously set request headers.
949 *
950 * Returns an associative array containing all currently set headers.
951 */
952 PHP_METHOD(HttpRequest, getHeaders)
953 {
954 http_request_object_get_options_subr("headers");
955 }
956 /* }}} */
957
958 /* {{{ proto bool HttpRequest::setCookies([array cookies])
959 *
960 * Set cookies.
961 *
962 * Accepts an associative array as parameter containing cookie name/value pairs.
963 * If the parameter is empty or omitted, all previously set cookies will be unset.
964 *
965 * Returns TRUE on success, or FALSE on failure.
966 */
967 PHP_METHOD(HttpRequest, setCookies)
968 {
969 http_request_object_set_options_subr("cookies", 1);
970 }
971 /* }}} */
972
973 /* {{{ proto bool HttpRequest::addCookies(array cookies)
974 *
975 * Add cookies.
976 *
977 * Expects an associative array as parameter containing any cookie name/value
978 * pairs to add.
979 *
980 * Returns TRUE on success, or FALSE on failure.
981 */
982 PHP_METHOD(HttpRequest, addCookies)
983 {
984 http_request_object_set_options_subr("cookies", 0);
985 }
986 /* }}} */
987
988 /* {{{ proto array HttpRequest::getCookies()
989 *
990 * Get previously set cookies.
991 *
992 * Returns an associative array containing any previously set cookies.
993 */
994 PHP_METHOD(HttpRequest, getCookies)
995 {
996 http_request_object_get_options_subr("cookies");
997 }
998 /* }}} */
999
1000 /* {{{ proto bool HttpRequest::setUrl(string url)
1001 *
1002 * Set the request URL.
1003 *
1004 * Expects a string as parameter specifying the request url.
1005 *
1006 * Returns TRUE on success, or FALSE on failure.
1007 */
1008 PHP_METHOD(HttpRequest, setUrl)
1009 {
1010 char *URL = NULL;
1011 int URL_len;
1012 getObject(http_request_object, obj);
1013
1014 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &URL, &URL_len)) {
1015 RETURN_FALSE;
1016 }
1017
1018 UPD_STRL(obj, url, URL, URL_len);
1019 RETURN_TRUE;
1020 }
1021 /* }}} */
1022
1023 /* {{{ proto string HttpRequest::getUrl()
1024 *
1025 * Get the previously set request URL.
1026 *
1027 * Returns the currently set request url as string.
1028 */
1029 PHP_METHOD(HttpRequest, getUrl)
1030 {
1031 NO_ARGS;
1032
1033 IF_RETVAL_USED {
1034 getObject(http_request_object, obj);
1035 zval *URL = GET_PROP(obj, url);
1036
1037 RETURN_ZVAL(URL, 1, 0);
1038 }
1039 }
1040 /* }}} */
1041
1042 /* {{{ proto bool HttpRequest::setMethod(int request_method)
1043 *
1044 * Set the request method.
1045 *
1046 * Expects an int as parameter specifying the request method to use.
1047 * In PHP 5.1+ HttpRequest::METH, otherwise the HTTP_METH constants can be used.
1048 *
1049 * Returns TRUE on success, or FALSE on failure.
1050 */
1051 PHP_METHOD(HttpRequest, setMethod)
1052 {
1053 long meth;
1054 getObject(http_request_object, obj);
1055
1056 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &meth)) {
1057 RETURN_FALSE;
1058 }
1059
1060 UPD_PROP(obj, long, method, meth);
1061 RETURN_TRUE;
1062 }
1063 /* }}} */
1064
1065 /* {{{ proto int HttpRequest::getMethod()
1066 *
1067 * Get the previously set request method.
1068 *
1069 * Returns the currently set request method.
1070 */
1071 PHP_METHOD(HttpRequest, getMethod)
1072 {
1073 NO_ARGS;
1074
1075 IF_RETVAL_USED {
1076 getObject(http_request_object, obj);
1077 zval *meth = GET_PROP(obj, method);
1078
1079 RETURN_ZVAL(meth, 1, 0);
1080 }
1081 }
1082 /* }}} */
1083
1084 /* {{{ proto bool HttpRequest::setContentType(string content_type)
1085 *
1086 * Set the content type the post request should have.
1087 *
1088 * Expects a string as parameters containing the content type of the request
1089 * (primary/secondary).
1090 *
1091 * Returns TRUE on success, or FALSE if the content type does not seem to
1092 * contain a primary and a secondary part.
1093 */
1094 PHP_METHOD(HttpRequest, setContentType)
1095 {
1096 char *ctype;
1097 int ct_len;
1098 getObject(http_request_object, obj);
1099
1100 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &ctype, &ct_len)) {
1101 RETURN_FALSE;
1102 }
1103
1104 HTTP_CHECK_CONTENT_TYPE(ctype, RETURN_FALSE);
1105 UPD_STRL(obj, contentType, ctype, ct_len);
1106 RETURN_TRUE;
1107 }
1108 /* }}} */
1109
1110 /* {{{ proto string HttpRequest::getContentType()
1111 *
1112 * Get the previously content type.
1113 *
1114 * Returns the previously set content type as string.
1115 */
1116 PHP_METHOD(HttpRequest, getContentType)
1117 {
1118 NO_ARGS;
1119
1120 IF_RETVAL_USED {
1121 getObject(http_request_object, obj);
1122 zval *ctype = GET_PROP(obj, contentType);
1123
1124 RETURN_ZVAL(ctype, 1, 0);
1125 }
1126 }
1127 /* }}} */
1128
1129 /* {{{ proto bool HttpRequest::setQueryData([mixed query_data])
1130 *
1131 * Set the URL query parameters to use, overwriting previously set query parameters.
1132 * Affects any request types.
1133 *
1134 * Accepts a string or associative array parameter containing the pre-encoded
1135 * query string or to be encoded query fields. If the parameter is empty or
1136 * omitted, the query data will be unset.
1137 *
1138 * Returns TRUE on success, or FALSE on failure.
1139 */
1140 PHP_METHOD(HttpRequest, setQueryData)
1141 {
1142 zval *qdata = NULL;
1143 getObject(http_request_object, obj);
1144
1145 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z!", &qdata)) {
1146 RETURN_FALSE;
1147 }
1148
1149 if ((!qdata) || Z_TYPE_P(qdata) == IS_NULL) {
1150 UPD_STRL(obj, queryData, "", 0);
1151 } else if ((Z_TYPE_P(qdata) == IS_ARRAY) || (Z_TYPE_P(qdata) == IS_OBJECT)) {
1152 char *query_data = NULL;
1153
1154 if (SUCCESS != http_urlencode_hash(HASH_OF(qdata), &query_data)) {
1155 RETURN_FALSE;
1156 }
1157
1158 UPD_PROP(obj, string, queryData, query_data);
1159 efree(query_data);
1160 } else {
1161 convert_to_string_ex(&qdata);
1162 UPD_STRL(obj, queryData, Z_STRVAL_P(qdata), Z_STRLEN_P(qdata));
1163 }
1164 RETURN_TRUE;
1165 }
1166 /* }}} */
1167
1168 /* {{{ proto string HttpRequest::getQueryData()
1169 *
1170 * Get the current query data in form of an urlencoded query string.
1171 *
1172 * Returns a string containing the urlencoded query.
1173 */
1174 PHP_METHOD(HttpRequest, getQueryData)
1175 {
1176 NO_ARGS;
1177
1178 IF_RETVAL_USED {
1179 getObject(http_request_object, obj);
1180 zval *qdata_p, *qdata = convert_to_type_ex(IS_STRING, GET_PROP(obj, queryData), &qdata_p);
1181
1182 RETURN_ZVAL(qdata, 1, 0);
1183
1184 if (qdata_p) {
1185 zval_ptr_dtor(&qdata_p);
1186 }
1187 }
1188 }
1189 /* }}} */
1190
1191 /* {{{ proto bool HttpRequest::addQueryData(array query_params)
1192 *
1193 * Add parameters to the query parameter list, leaving previously set unchanged.
1194 * Affects any request type.
1195 *
1196 * Expects an associative array as parameter containing the query fields to add.
1197 *
1198 * Returns TRUE on success, or FALSE on failure.
1199 */
1200 PHP_METHOD(HttpRequest, addQueryData)
1201 {
1202 zval *qdata, *old_qdata, *old_qdata_p;
1203 char *query_data = NULL;
1204 size_t query_data_len = 0;
1205 getObject(http_request_object, obj);
1206
1207 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &qdata)) {
1208 RETURN_FALSE;
1209 }
1210
1211 old_qdata = convert_to_type_ex(IS_STRING, GET_PROP(obj, queryData), &old_qdata_p);
1212
1213 if (SUCCESS != http_urlencode_hash_ex(HASH_OF(qdata), 1, Z_STRVAL_P(old_qdata), Z_STRLEN_P(old_qdata), &query_data, &query_data_len)) {
1214 if (old_qdata_p) {
1215 zval_ptr_dtor(&old_qdata_p);
1216 }
1217 RETURN_FALSE;
1218 }
1219
1220 UPD_STRL(obj, queryData, query_data, query_data_len);
1221 efree(query_data);
1222
1223 if (old_qdata_p) {
1224 zval_ptr_dtor(&old_qdata_p);
1225 }
1226
1227 RETURN_TRUE;
1228 }
1229 /* }}} */
1230
1231 /* {{{ proto bool HttpRequest::addPostFields(array post_data)
1232 *
1233 * Adds POST data entries, leaving previously set unchanged, unless a
1234 * post entry with the same name already exists.
1235 * Affects only POST and custom requests.
1236 *
1237 * Expects an associative array as parameter containing the post fields.
1238 *
1239 * Returns TRUE on success, or FALSE on failure.
1240 */
1241 PHP_METHOD(HttpRequest, addPostFields)
1242 {
1243 zval *post, *post_data;
1244 getObject(http_request_object, obj);
1245
1246 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &post_data)) {
1247 RETURN_FALSE;
1248 }
1249
1250 post = convert_to_type(IS_ARRAY, GET_PROP(obj, postFields));
1251 array_merge(post_data, post);
1252
1253 RETURN_TRUE;
1254 }
1255 /* }}} */
1256
1257 /* {{{ proto bool HttpRequest::setPostFields([array post_data])
1258 *
1259 * Set the POST data entries, overwriting previously set POST data.
1260 * Affects only POST and custom requests.
1261 *
1262 * Accepts an associative array as parameter containing the post fields.
1263 * If the parameter is empty or omitted, the post data will be unset.
1264 *
1265 * Returns TRUE on success, or FALSE on failure.
1266 */
1267 PHP_METHOD(HttpRequest, setPostFields)
1268 {
1269 zval *post, *post_data = NULL;
1270 getObject(http_request_object, obj);
1271
1272 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a!", &post_data)) {
1273 RETURN_FALSE;
1274 }
1275
1276 post = convert_to_type(IS_ARRAY, GET_PROP(obj, postFields));
1277
1278 SEP_PROP(&post);
1279 zend_hash_clean(Z_ARRVAL_P(post));
1280 if (post_data && zend_hash_num_elements(Z_ARRVAL_P(post_data))) {
1281 array_copy(post_data, post);
1282 }
1283 SET_PROP(obj, postFields, post);
1284
1285 RETURN_TRUE;
1286 }
1287 /* }}}*/
1288
1289 /* {{{ proto array HttpRequest::getPostFields()
1290 *
1291 * Get previously set POST data.
1292 *
1293 * Returns the currently set post fields as associative array.
1294 */
1295 PHP_METHOD(HttpRequest, getPostFields)
1296 {
1297 NO_ARGS;
1298
1299 IF_RETVAL_USED {
1300 getObject(http_request_object, obj);
1301 zval *post_data_p, *post_data = convert_to_type_ex(IS_ARRAY, GET_PROP(obj, postFields), &post_data_p);
1302
1303 array_init(return_value);
1304 array_copy(post_data, return_value);
1305
1306 if (post_data_p) {
1307 zval_ptr_dtor(&post_data_p);
1308 }
1309 }
1310 }
1311 /* }}} */
1312
1313 /* {{{ proto bool HttpRequest::setRawPostData([string raw_post_data])
1314 *
1315 * Set raw post data to send, overwriting previously set raw post data. Don't
1316 * forget to specify a content type. Affects only POST and custom requests.
1317 * Only either post fields or raw post data can be used for each request.
1318 * Raw post data has higher precedence and will be used even if post fields
1319 * are set.
1320 *
1321 * Accepts a string as parameter containing the *raw* post data.
1322 *
1323 * Returns TRUE on success, or FALSE on failure.
1324 */
1325 PHP_METHOD(HttpRequest, setRawPostData)
1326 {
1327 char *raw_data = NULL;
1328 int data_len = 0;
1329 getObject(http_request_object, obj);
1330
1331 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &raw_data, &data_len)) {
1332 RETURN_FALSE;
1333 }
1334
1335 if (!raw_data) {
1336 raw_data = "";
1337 }
1338
1339 UPD_STRL(obj, rawPostData, raw_data, data_len);
1340 RETURN_TRUE;
1341 }
1342 /* }}} */
1343
1344 /* {{{ proto bool HttpRequest::addRawPostData(string raw_post_data)
1345 *
1346 * Add raw post data, leaving previously set raw post data unchanged.
1347 * Affects only POST and custom requests.
1348 *
1349 * Expects a string as parameter containing the raw post data to concatenate.
1350 *
1351 * Returns TRUE on success, or FALSE on failure.
1352 */
1353 PHP_METHOD(HttpRequest, addRawPostData)
1354 {
1355 char *raw_data, *new_data;
1356 int data_len;
1357 getObject(http_request_object, obj);
1358
1359 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &raw_data, &data_len)) {
1360 RETURN_FALSE;
1361 }
1362
1363 if (data_len) {
1364 zval *zdata_p, *zdata = convert_to_type_ex(IS_STRING, GET_PROP(obj, rawPostData), &zdata_p);
1365
1366 new_data = emalloc(Z_STRLEN_P(zdata) + data_len + 1);
1367 new_data[Z_STRLEN_P(zdata) + data_len] = '\0';
1368
1369 if (Z_STRLEN_P(zdata)) {
1370 memcpy(new_data, Z_STRVAL_P(zdata), Z_STRLEN_P(zdata));
1371 }
1372
1373 memcpy(new_data + Z_STRLEN_P(zdata), raw_data, data_len);
1374 UPD_STRL(obj, rawPostData, new_data, Z_STRLEN_P(zdata) + data_len);
1375
1376 if (zdata_p) {
1377 zval_ptr_dtor(&zdata_p);
1378 }
1379 }
1380
1381 RETURN_TRUE;
1382 }
1383 /* }}} */
1384
1385 /* {{{ proto string HttpRequest::getRawPostData()
1386 *
1387 * Get previously set raw post data.
1388 *
1389 * Returns a string containing the currently set raw post data.
1390 */
1391 PHP_METHOD(HttpRequest, getRawPostData)
1392 {
1393 NO_ARGS;
1394
1395 IF_RETVAL_USED {
1396 getObject(http_request_object, obj);
1397 zval *raw_data_p, *raw_data = convert_to_type_ex(IS_STRING, GET_PROP(obj, rawPostData), &raw_data_p);
1398
1399 RETVAL_ZVAL(raw_data, 1, 0);
1400
1401 if (raw_data_p) {
1402 zval_ptr_dtor(&raw_data_p);
1403 }
1404 }
1405 }
1406 /* }}} */
1407
1408 /* {{{ proto bool HttpRequest::addPostFile(string name, string file[, string content_type = "application/x-octetstream"])
1409 *
1410 * Add a file to the POST request, leaving prefiously set files unchanged.
1411 * Affects only POST and custom requests. Cannot be used with raw post data.
1412 *
1413 * Expects a string parameter containing the form element name, and a string
1414 * paremeter containing the path to the file which should be uploaded.
1415 * Additionally accepts an optional string parameter which chould contain
1416 * the content type of the file.
1417 *
1418 * Returns TRUE on success, or FALSE if the content type seems not to contain a
1419 * primary and a secondary content type part.
1420 */
1421 PHP_METHOD(HttpRequest, addPostFile)
1422 {
1423 zval *files, *entry;
1424 char *name, *file, *type = NULL;
1425 int name_len, file_len, type_len = 0;
1426 getObject(http_request_object, obj);
1427
1428 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|s", &name, &name_len, &file, &file_len, &type, &type_len)) {
1429 RETURN_FALSE;
1430 }
1431
1432 if (type_len) {
1433 HTTP_CHECK_CONTENT_TYPE(type, RETURN_FALSE);
1434 } else {
1435 type = "application/x-octetstream";
1436 type_len = sizeof("application/x-octetstream") - 1;
1437 }
1438
1439 MAKE_STD_ZVAL(entry);
1440 array_init(entry);
1441
1442 add_assoc_stringl(entry, "name", name, name_len, 1);
1443 add_assoc_stringl(entry, "type", type, type_len, 1);
1444 add_assoc_stringl(entry, "file", file, file_len, 1);
1445
1446 files = convert_to_type(IS_ARRAY, GET_PROP(obj, postFiles));
1447 add_next_index_zval(files, entry);
1448
1449 RETURN_TRUE;
1450 }
1451 /* }}} */
1452
1453 /* {{{ proto bool HttpRequest::setPostFiles([array post_files])
1454 *
1455 * Set files to post, overwriting previously set post files.
1456 * Affects only POST and requests. Cannot be used with raw post data.
1457 *
1458 * Accepts an array containing the files to post. Each entry should be an
1459 * associative array with "name", "file" and "type" keys. If the parameter
1460 * is empty or omitted the post files will be unset.
1461 *
1462 * Returns TRUE on success, or FALSE on failure.
1463 */
1464 PHP_METHOD(HttpRequest, setPostFiles)
1465 {
1466 zval *files, *pFiles;
1467 getObject(http_request_object, obj);
1468
1469 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &files)) {
1470 RETURN_FALSE;
1471 }
1472
1473 pFiles = convert_to_type(IS_ARRAY, GET_PROP(obj, postFiles));
1474
1475 SEP_PROP(&pFiles);
1476 zend_hash_clean(Z_ARRVAL_P(pFiles));
1477 if (files && zend_hash_num_elements(Z_ARRVAL_P(files))) {
1478 array_copy(files, pFiles);
1479 }
1480 SET_PROP(obj, postFiles, pFiles);
1481
1482 RETURN_TRUE;
1483 }
1484 /* }}} */
1485
1486 /* {{{ proto array HttpRequest::getPostFiles()
1487 *
1488 * Get all previously added POST files.
1489 *
1490 * Returns an array containing currently set post files.
1491 */
1492 PHP_METHOD(HttpRequest, getPostFiles)
1493 {
1494 NO_ARGS;
1495
1496 IF_RETVAL_USED {
1497 getObject(http_request_object, obj);
1498 zval *files_p, *files = convert_to_type_ex(IS_ARRAY, GET_PROP(obj, postFiles), &files_p);
1499
1500 array_init(return_value);
1501 array_copy(files, return_value);
1502
1503 if (files_p) {
1504 zval_ptr_dtor(&files_p);
1505 }
1506 }
1507 }
1508 /* }}} */
1509
1510 /* {{{ proto bool HttpRequest::setPutFile([string file])
1511 *
1512 * Set file to put. Affects only PUT requests.
1513 *
1514 * Accepts a string as parameter referencing the path to file.
1515 * If the parameter is empty or omitted the put file will be unset.
1516 *
1517 * Returns TRUE on success, or FALSE on failure.
1518 */
1519 PHP_METHOD(HttpRequest, setPutFile)
1520 {
1521 char *file = "";
1522 int file_len = 0;
1523 getObject(http_request_object, obj);
1524
1525 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &file, &file_len)) {
1526 RETURN_FALSE;
1527 }
1528
1529 UPD_STRL(obj, putFile, file, file_len);
1530 RETURN_TRUE;
1531 }
1532 /* }}} */
1533
1534 /* {{{ proto string HttpRequest::getPutFile()
1535 *
1536 * Get previously set put file.
1537 *
1538 * Returns a string containing the path to the currently set put file.
1539 */
1540 PHP_METHOD(HttpRequest, getPutFile)
1541 {
1542 NO_ARGS;
1543
1544 IF_RETVAL_USED {
1545 getObject(http_request_object, obj);
1546 zval *putfile_p, *putfile = convert_to_type_ex(IS_STRING, GET_PROP(obj, putFile), &putfile_p);
1547
1548 RETVAL_ZVAL(putfile, 1, 0);
1549
1550 if (putfile_p) {
1551 zval_ptr_dtor(&putfile_p);
1552 }
1553 }
1554 }
1555 /* }}} */
1556
1557 /* {{{ proto array HttpRequest::getResponseData()
1558 *
1559 * Get all response data after the request has been sent.
1560 *
1561 * Returns an associative array with the key "headers" containing an associative
1562 * array holding all response headers, as well as the ley "body" containing a
1563 * string with the response body.
1564 *
1565 * If redirects were allowed and several responses were received, the data
1566 * references the last received response.
1567 */
1568 PHP_METHOD(HttpRequest, getResponseData)
1569 {
1570 NO_ARGS;
1571
1572 IF_RETVAL_USED {
1573 getObject(http_request_object, obj);
1574 zval *data_p, *data = convert_to_type_ex(IS_ARRAY, GET_PROP(obj, responseData), &data_p);
1575
1576 array_init(return_value);
1577 array_copy(data, return_value);
1578
1579 if (data_p) {
1580 zval_ptr_dtor(&data_p);
1581 }
1582 }
1583 }
1584 /* }}} */
1585
1586 /* {{{ proto mixed HttpRequest::getResponseHeader([string name])
1587 *
1588 * Get response header(s) after the request has been sent.
1589 *
1590 * Accepts an string as optional parameter specifying a certain header to read.
1591 * If the parameter is empty or omitted all response headers will be returned.
1592 *
1593 * Returns either a string with the value of the header matching name if requested,
1594 * FALSE on failure, or an associative array containing all reponse headers.
1595 *
1596 * If redirects were allowed and several responses were received, the data
1597 * references the last received response.
1598 */
1599 PHP_METHOD(HttpRequest, getResponseHeader)
1600 {
1601 IF_RETVAL_USED {
1602 zval *data_p, *data, **headers, **header;
1603 char *header_name = NULL;
1604 int header_len = 0;
1605 getObject(http_request_object, obj);
1606
1607 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &header_name, &header_len)) {
1608 RETURN_FALSE;
1609 }
1610
1611 data = convert_to_type_ex(IS_ARRAY, GET_PROP(obj, responseData), &data_p);
1612 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(data), "headers", sizeof("headers"), (void **) &headers)) {
1613 convert_to_array(*headers);
1614 if (!header_len || !header_name) {
1615 array_init(return_value);
1616 array_copy(*headers, return_value);
1617 } else if (SUCCESS == zend_hash_find(Z_ARRVAL_PP(headers), pretty_key(header_name, header_len, 1, 1), header_len + 1, (void **) &header)) {
1618 RETVAL_ZVAL(*header, 1, 0);
1619 } else {
1620 RETVAL_FALSE;
1621 }
1622 } else {
1623 RETVAL_FALSE;
1624 }
1625
1626 if (data_p) {
1627 zval_ptr_dtor(&data_p);
1628 }
1629 }
1630 }
1631 /* }}} */
1632
1633 /* {{{ proto array HttpRequest::getResponseCookie([string name])
1634 *
1635 * Get response cookie(s) after the request has been sent.
1636 *
1637 * Accepts a string as optional parameter specifying the name of the cookie to read.
1638 * If the parameter is empty or omitted, an associative array with all received
1639 * cookies will be returned.
1640 *
1641 * Returns either an associative array with the cookie's name, value and any
1642 * additional params of the cookie matching name if requested, FALSE on failure,
1643 * or an array containing all received cookies as arrays.
1644 *
1645 * If redirects were allowed and several responses were received, the data
1646 * references the last received response.
1647 */
1648 PHP_METHOD(HttpRequest, getResponseCookie)
1649 {
1650 IF_RETVAL_USED {
1651 zval *data, **headers;
1652 char *cookie_name = NULL;
1653 int cookie_len = 0;
1654 getObject(http_request_object, obj);
1655
1656 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &cookie_name, &cookie_len)) {
1657 RETURN_FALSE;
1658 }
1659
1660 array_init(return_value);
1661
1662 data = convert_to_type(IS_ARRAY, GET_PROP(obj, responseData));
1663 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(data), "headers", sizeof("headers"), (void **) &headers)) {
1664 ulong idx = 0;
1665 char *key = NULL;
1666 zval **header = NULL;
1667
1668 convert_to_array_ex(headers);
1669 FOREACH_HASH_KEYVAL(Z_ARRVAL_PP(headers), key, idx, header) {
1670 if (key && !strcasecmp(key, "Set-Cookie")) {
1671 /* several cookies? */
1672 if (Z_TYPE_PP(header) == IS_ARRAY) {
1673 zval **cookie;
1674
1675 FOREACH_HASH_VAL(Z_ARRVAL_PP(header), cookie) {
1676 zval *cookie_hash;
1677 MAKE_STD_ZVAL(cookie_hash);
1678 array_init(cookie_hash);
1679
1680 if (SUCCESS == http_parse_cookie(Z_STRVAL_PP(cookie), Z_ARRVAL_P(cookie_hash))) {
1681 if (!cookie_len) {
1682 add_next_index_zval(return_value, cookie_hash);
1683 } else {
1684 zval **name;
1685
1686 if ( (SUCCESS == zend_hash_find(Z_ARRVAL_P(cookie_hash), "name", sizeof("name"), (void **) &name)) &&
1687 (!strcmp(Z_STRVAL_PP(name), cookie_name))) {
1688 add_next_index_zval(return_value, cookie_hash);
1689 return; /* <<< FOUND >>> */
1690 } else {
1691 zval_dtor(cookie_hash);
1692 efree(cookie_hash);
1693 }
1694 }
1695 } else {
1696 zval_dtor(cookie_hash);
1697 efree(cookie_hash);
1698 }
1699 }
1700 } else {
1701 zval *cookie_hash;
1702
1703 MAKE_STD_ZVAL(cookie_hash);
1704 array_init(cookie_hash);
1705 convert_to_string_ex(header);
1706
1707 if (SUCCESS == http_parse_cookie(Z_STRVAL_PP(header), Z_ARRVAL_P(cookie_hash))) {
1708 if (!cookie_len) {
1709 add_next_index_zval(return_value, cookie_hash);
1710 } else {
1711 zval **name;
1712
1713 if ( (SUCCESS == zend_hash_find(Z_ARRVAL_P(cookie_hash), "name", sizeof("name"), (void **) &name)) &&
1714 (!strcmp(Z_STRVAL_PP(name), cookie_name))) {
1715 add_next_index_zval(return_value, cookie_hash);
1716 } else {
1717 zval_dtor(cookie_hash);
1718 efree(cookie_hash);
1719 }
1720 }
1721 } else {
1722 zval_dtor(cookie_hash);
1723 efree(cookie_hash);
1724 }
1725 }
1726 break;
1727 }
1728 /* reset key */
1729 key = NULL;
1730 }
1731 }
1732 }
1733 }
1734 /* }}} */
1735
1736 /* {{{ proto string HttpRequest::getResponseBody()
1737 *
1738 * Get the response body after the request has been sent.
1739 *
1740 * Returns a string containing the response body.
1741 *
1742 * If redirects were allowed and several responses were received, the data
1743 * references the last received response.
1744 */
1745 PHP_METHOD(HttpRequest, getResponseBody)
1746 {
1747 NO_ARGS;
1748
1749 IF_RETVAL_USED {
1750 zval **body;
1751 getObject(http_request_object, obj);
1752 zval *data = convert_to_type(IS_ARRAY, GET_PROP(obj, responseData));
1753
1754 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(data), "body", sizeof("body"), (void **) &body)) {
1755 RETURN_ZVAL(*body, 1, 0);
1756 } else {
1757 RETURN_FALSE;
1758 }
1759 }
1760 }
1761 /* }}} */
1762
1763 /* {{{ proto int HttpRequest::getResponseCode()
1764 *
1765 * Get the response code after the request has been sent.
1766 *
1767 * Returns an int representing the response code.
1768 *
1769 * If redirects were allowed and several responses were received, the data
1770 * references the last received response.
1771 */
1772 PHP_METHOD(HttpRequest, getResponseCode)
1773 {
1774 NO_ARGS;
1775
1776 IF_RETVAL_USED {
1777 getObject(http_request_object, obj);
1778 zval *code_p, *code = convert_to_type_ex(IS_LONG, GET_PROP(obj, responseCode), &code_p);
1779
1780 RETVAL_ZVAL(code, 1, 0);
1781
1782 if (code_p) {
1783 zval_ptr_dtor(&code_p);
1784 }
1785 }
1786 }
1787 /* }}} */
1788
1789 /* {{{ proto mixed HttpRequest::getResponseInfo([string name])
1790 *
1791 * Get response info after the request has been sent.
1792 * See http_get() for a full list of returned info.
1793 *
1794 * Accepts a string as optional parameter specifying the info to read.
1795 * If the parameter is empty or omitted, an associative array containing
1796 * all available info will be returned.
1797 *
1798 * Returns either a scalar containing the value of the info matching name if
1799 * requested, FALSE on failure, or an associative array containing all
1800 * available info.
1801 *
1802 * If redirects were allowed and several responses were received, the data
1803 * references the last received response.
1804 */
1805 PHP_METHOD(HttpRequest, getResponseInfo)
1806 {
1807 IF_RETVAL_USED {
1808 zval *info, **infop;
1809 char *info_name = NULL;
1810 int info_len = 0;
1811 getObject(http_request_object, obj);
1812
1813 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &info_name, &info_len)) {
1814 RETURN_FALSE;
1815 }
1816
1817 info = convert_to_type(IS_ARRAY, GET_PROP(obj, responseInfo));
1818
1819 if (info_len && info_name) {
1820 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(info), pretty_key(info_name, info_len, 0, 0), info_len + 1, (void **) &infop)) {
1821 RETURN_ZVAL(*infop, 1, 0);
1822 } else {
1823 http_error_ex(HE_NOTICE, HTTP_E_INVALID_PARAM, "Could not find response info named %s", info_name);
1824 RETURN_FALSE;
1825 }
1826 } else {
1827 array_init(return_value);
1828 array_copy(info, return_value);
1829 }
1830 }
1831 }
1832 /* }}}*/
1833
1834 /* {{{ proto HttpMessage HttpRequest::getResponseMessage()
1835 *
1836 * Get the full response as HttpMessage object after the request has been sent.
1837 *
1838 * Returns an HttpMessage object of the response.
1839 *
1840 * If redirects were allowed and several responses were received, the data
1841 * references the last received response. Use HttpMessage::getParentMessage()
1842 * to access the data of previously received responses whithin this request
1843 * cycle.
1844 *
1845 * Throws HttpException.
1846 */
1847 PHP_METHOD(HttpRequest, getResponseMessage)
1848 {
1849 NO_ARGS;
1850
1851 IF_RETVAL_USED {
1852 zval *message;
1853 getObject(http_request_object, obj);
1854
1855 SET_EH_THROW_HTTP();
1856 message = GET_PROP(obj, responseMessage);
1857 if (Z_TYPE_P(message) == IS_OBJECT) {
1858 RETVAL_OBJECT(message);
1859 } else {
1860 RETVAL_NULL();
1861 }
1862 SET_EH_NORMAL();
1863 }
1864 }
1865 /* }}} */
1866
1867 /* {{{ proto HttpMessage HttpRequest::getRequestMessage()
1868 *
1869 * Get sent HTTP message.
1870 *
1871 * Returns an HttpMessage object representing the sent request.
1872 *
1873 * If redirects were allowed and several responses were received, the data
1874 * references the last received response. Use HttpMessage::getParentMessage()
1875 * to access the data of previously sent requests whithin this request
1876 * cycle.
1877 *
1878 * Note that the internal request message is immutable, that means that the
1879 * request message received through HttpRequest::getRequestMessage() will
1880 * always look the same for the same request, regardless of any changes you
1881 * may have made to the returned object.
1882 *
1883 * Throws HttpMalformedHeadersException, HttpEncodingException.
1884 */
1885 PHP_METHOD(HttpRequest, getRequestMessage)
1886 {
1887 NO_ARGS;
1888
1889 IF_RETVAL_USED {
1890 http_message *msg;
1891 getObject(http_request_object, obj);
1892
1893 SET_EH_THROW_HTTP();
1894 if (msg = http_message_parse(PHPSTR_VAL(&obj->request), PHPSTR_LEN(&obj->request))) {
1895 ZVAL_OBJVAL(return_value, http_message_object_new_ex(http_message_object_ce, msg, NULL));
1896 }
1897 SET_EH_NORMAL();
1898 }
1899 }
1900 /* }}} */
1901
1902 /* {{{ proto HttpMessage HttpRequest::getHistory()
1903 *
1904 * Get all sent requests and received responses as an HttpMessage object.
1905 *
1906 * If you don't want to record history at all, set the instance variable
1907 * HttpRequest::$recoedHistory to FALSE.
1908 *
1909 * Returns an HttpMessage object representing the complete request/response
1910 * history.
1911 *
1912 * The object references the last received response, use HttpMessage::getParentMessage()
1913 * to access the data of previously sent requests and received responses.
1914 *
1915 * Note that the internal history is immutable, that means that any changes
1916 * you make the the message list won't affect a history message list newly
1917 * created by another call to HttpRequest::getHistory().
1918 *
1919 * Throws HttpMalformedHeaderException, HttpEncodingException.
1920 */
1921 PHP_METHOD(HttpRequest, getHistory)
1922 {
1923 NO_ARGS;
1924
1925 IF_RETVAL_USED {
1926 http_message *msg;
1927 getObject(http_request_object, obj);
1928
1929 SET_EH_THROW_HTTP();
1930 if (msg = http_message_parse(PHPSTR_VAL(&obj->history), PHPSTR_LEN(&obj->history))) {
1931 ZVAL_OBJVAL(return_value, http_message_object_new_ex(http_message_object_ce, msg, NULL));
1932 }
1933 SET_EH_NORMAL();
1934 }
1935 }
1936 /* }}} */
1937
1938 /* {{{ proto void HttpRequest::clearHistory()
1939 *
1940 * Clear the history.
1941 */
1942 PHP_METHOD(HttpRequest, clearHistory)
1943 {
1944 NO_ARGS {
1945 getObject(http_request_object, obj);
1946 phpstr_dtor(&obj->history);
1947 }
1948 }
1949 /* }}} */
1950
1951 /* {{{ proto HttpMessage HttpRequest::send()
1952 *
1953 * Send the HTTP request.
1954 *
1955 * Returns the received response as HttpMessage object.
1956 *
1957 * Throws HttpRuntimeException, HttpRequestException,
1958 * HttpMalformedHeaderException, HttpEncodingException.
1959 *
1960 * GET example:
1961 * <pre>
1962 * <?php
1963 * $r = new HttpRequest('http://example.com/feed.rss', HTTP_GET);
1964 * $r->setOptions(array('lastmodified' => filemtime('local.rss')));
1965 * $r->addQueryData(array('category' => 3));
1966 * try {
1967 * $r->send();
1968 * if ($r->getResponseCode() == 200) {
1969 * file_put_contents('local.rss', $r->getResponseBody());
1970 * }
1971 * } catch (HttpException $ex) {
1972 * echo $ex;
1973 * }
1974 * ?>
1975 * </pre>
1976 *
1977 * POST example:
1978 * <pre>
1979 * <?php
1980 * $r = new HttpRequest('http://example.com/form.php', HTTP_POST);
1981 * $r->setOptions(array('cookies' => array('lang' => 'de')));
1982 * $r->addPostFields(array('user' => 'mike', 'pass' => 's3c|r3t'));
1983 * $r->addPostFile('image', 'profile.jpg', 'image/jpeg');
1984 * try {
1985 * echo $r->send()->getBody();
1986 * } catch (HttpException $ex) {
1987 * echo $ex;
1988 * }
1989 * ?>
1990 * </pre>
1991 */
1992 PHP_METHOD(HttpRequest, send)
1993 {
1994 http_request_body body = {0, NULL, 0};
1995 getObject(http_request_object, obj);
1996
1997 NO_ARGS;
1998
1999 SET_EH_THROW_HTTP();
2000
2001 if (obj->pool) {
2002 http_error(HE_WARNING, HTTP_E_RUNTIME, "Cannot perform HttpRequest::send() while attached to an HttpRequestPool");
2003 SET_EH_NORMAL();
2004 RETURN_FALSE;
2005 }
2006
2007 RETVAL_NULL();
2008
2009 if ( (SUCCESS == http_request_object_requesthandler(obj, getThis(), &body)) &&
2010 (SUCCESS == http_request_exec(obj->ch, NULL, &obj->response, &obj->request)) &&
2011 (SUCCESS == http_request_object_responsehandler(obj, getThis()))) {
2012 RETVAL_OBJECT(GET_PROP(obj, responseMessage));
2013 }
2014 http_request_body_dtor(&body);
2015
2016 SET_EH_NORMAL();
2017 }
2018 /* }}} */
2019
2020 #endif /* ZEND_ENGINE_2 && HTTP_HAVE_CURL */
2021
2022 /*
2023 * Local variables:
2024 * tab-width: 4
2025 * c-basic-offset: 4
2026 * End:
2027 * vim600: noet sw=4 ts=4 fdm=marker
2028 * vim<600: noet sw=4 ts=4
2029 */
2030