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