35c66200278a4eed9233cdf02224b4b2c736bdb1
[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_parse(PHPSTR_VAL(&obj->request->conv.response), PHPSTR_LEN(&obj->request->conv.response));
580 http_message *request = http_message_parse(PHPSTR_VAL(&obj->request->conv.request), PHPSTR_LEN(&obj->request->conv.request));
581
582 if (response && request) {
583 zval *hist, *history = GET_PROP(history);
584 http_message *hist_msg = http_message_reverse(http_message_interconnect(response, request));
585
586 MAKE_STD_ZVAL(hist);
587 ZVAL_OBJVAL(hist, http_message_object_new_ex(http_message_object_ce, hist_msg, NULL), 0);
588 if (Z_TYPE_P(history) == IS_OBJECT) {
589 http_message_object_prepend(hist, history);
590 }
591 SET_PROP(history, hist);
592 zval_ptr_dtor(&hist);
593 } else {
594 http_message_free(&response);
595 http_message_free(&request);
596 }
597 }
598
599 UPD_PROP(long, responseCode, msg->http.info.response.code);
600 UPD_PROP(string, responseStatus, msg->http.info.response.status);
601
602 MAKE_STD_ZVAL(resp);
603 array_init(resp);
604 MAKE_STD_ZVAL(headers);
605 array_init(headers);
606 zend_hash_copy(Z_ARRVAL_P(headers), &msg->hdrs, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
607 add_assoc_zval(resp, "headers", headers);
608 phpstr_data(PHPSTR(msg), &body, &body_len);
609 add_assoc_stringl(resp, "body", body, body_len, 0);
610 SET_PROP(responseData, resp);
611 zval_ptr_dtor(&resp);
612
613 MAKE_STD_ZVAL(message);
614 ZVAL_OBJVAL(message, http_message_object_new_ex(http_message_object_ce, msg, NULL), 0);
615 SET_PROP(responseMessage, message);
616 zval_ptr_dtor(&message);
617
618 ret = SUCCESS;
619 } else {
620 /* update properties with empty values*/
621 zval *resp = GET_PROP(responseData), *znull;
622
623 MAKE_STD_ZVAL(znull);
624 ZVAL_NULL(znull);
625 SET_PROP(responseMessage, znull);
626 zval_ptr_dtor(&znull);
627
628 if (Z_TYPE_P(resp) == IS_ARRAY) {
629 zend_hash_clean(Z_ARRVAL_P(resp));
630 }
631
632 UPD_PROP(long, responseCode, 0);
633 UPD_PROP(string, responseStatus, "");
634
635 /* append request message to history */
636 if (zval_is_true(GET_PROP(recordHistory))) {
637 http_message *request;
638
639 if ((request = http_message_parse(PHPSTR_VAL(&obj->request->conv.request), PHPSTR_LEN(&obj->request->conv.request)))) {
640 zval *hist, *history = GET_PROP(history);
641
642 MAKE_STD_ZVAL(hist);
643 ZVAL_OBJVAL(hist, http_message_object_new_ex(http_message_object_ce, request, NULL), 0);
644 if (Z_TYPE_P(history) == IS_OBJECT) {
645 http_message_object_prepend(hist, history);
646 }
647 SET_PROP(history, hist);
648 zval_ptr_dtor(&hist);
649 }
650 }
651
652 ret = FAILURE;
653 }
654
655 if (zend_hash_exists(&Z_OBJCE_P(getThis())->function_table, "onfinish", sizeof("onfinish"))) {
656 zval *param;
657
658 MAKE_STD_ZVAL(param);
659 ZVAL_BOOL(param, ret == SUCCESS);
660 zend_call_method_with_1_params(&getThis(), Z_OBJCE_P(getThis()), NULL, "onfinish", NULL, param);
661 zval_ptr_dtor(&param);
662 }
663
664 return ret;
665 }
666
667 #define http_request_object_set_options_subr(key, ow) \
668 _http_request_object_set_options_subr(INTERNAL_FUNCTION_PARAM_PASSTHRU, (key), sizeof(key), (ow))
669 static inline void _http_request_object_set_options_subr(INTERNAL_FUNCTION_PARAMETERS, char *key, size_t len, int overwrite)
670 {
671 zval *old_opts, *new_opts, *opts = NULL, **entry;
672
673 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|a/!", &opts)) {
674 RETURN_FALSE;
675 }
676
677 MAKE_STD_ZVAL(new_opts);
678 array_init(new_opts);
679 old_opts = GET_PROP(options);
680 if (Z_TYPE_P(old_opts) == IS_ARRAY) {
681 array_copy(old_opts, new_opts);
682 }
683
684 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(new_opts), key, len, (void **) &entry)) {
685 if (overwrite) {
686 zend_hash_clean(Z_ARRVAL_PP(entry));
687 }
688 if (opts && zend_hash_num_elements(Z_ARRVAL_P(opts))) {
689 if (overwrite) {
690 array_copy(opts, *entry);
691 } else {
692 array_merge(opts, *entry);
693 }
694 }
695 } else if (opts) {
696 ZVAL_ADDREF(opts);
697 add_assoc_zval(new_opts, key, opts);
698 }
699 SET_PROP(options, new_opts);
700 zval_ptr_dtor(&new_opts);
701
702 RETURN_TRUE;
703 }
704
705 #define http_request_object_get_options_subr(key) \
706 _http_request_get_options_subr(INTERNAL_FUNCTION_PARAM_PASSTHRU, (key), sizeof(key))
707 static inline void _http_request_get_options_subr(INTERNAL_FUNCTION_PARAMETERS, char *key, size_t len)
708 {
709 NO_ARGS;
710
711 IF_RETVAL_USED {
712 zval *opts, **options;
713
714 opts = GET_PROP(options);
715 array_init(return_value);
716
717 if ( (Z_TYPE_P(opts) == IS_ARRAY) &&
718 (SUCCESS == zend_hash_find(Z_ARRVAL_P(opts), key, len, (void **) &options))) {
719 convert_to_array(*options);
720 array_copy(*options, return_value);
721 }
722 }
723 }
724
725
726 /* ### USERLAND ### */
727
728 /* {{{ proto void HttpRequest::__construct([string url[, int request_method = HTTP_METH_GET[, array options]]])
729 *
730 * Instantiate a new HttpRequest object.
731 *
732 * Accepts a string as optional parameter containing the target request url.
733 * Additionally accepts an optional int parameter specifying the request method
734 * to use and an associative array as optional third parameter which will be
735 * passed to HttpRequest::setOptions().
736 *
737 * Throws HttpException.
738 */
739 PHP_METHOD(HttpRequest, __construct)
740 {
741 char *URL = NULL;
742 int URL_len;
743 long meth = -1;
744 zval *options = NULL;
745
746 SET_EH_THROW_HTTP();
747 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sla", &URL, &URL_len, &meth, &options)) {
748 if (URL) {
749 UPD_STRL(url, URL, URL_len);
750 }
751 if (meth > -1) {
752 UPD_PROP(long, method, meth);
753 }
754 if (options) {
755 zend_call_method_with_1_params(&getThis(), Z_OBJCE_P(getThis()), NULL, "setoptions", NULL, options);
756 }
757 }
758 SET_EH_NORMAL();
759 }
760 /* }}} */
761
762 /* {{{ proto bool HttpRequest::setOptions([array options])
763 *
764 * Set the request options to use. See http_get() for a full list of available options.
765 *
766 * Accepts an array as optional parameters, which values will overwrite the
767 * currently set request options. If the parameter is empty or omitted,
768 * the options of the HttpRequest object will be reset.
769 *
770 * Returns TRUE on success, or FALSE on failure.
771 */
772 PHP_METHOD(HttpRequest, setOptions)
773 {
774 char *key = NULL;
775 ulong idx = 0;
776 HashPosition pos;
777 zval *opts = NULL, *old_opts, *new_opts, *add_opts, **opt;
778
779 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|a!/", &opts)) {
780 RETURN_FALSE;
781 }
782
783 MAKE_STD_ZVAL(new_opts);
784 array_init(new_opts);
785
786 if (!opts || !zend_hash_num_elements(Z_ARRVAL_P(opts))) {
787 SET_PROP(options, new_opts);
788 zval_ptr_dtor(&new_opts);
789 RETURN_TRUE;
790 }
791
792 MAKE_STD_ZVAL(add_opts);
793 array_init(add_opts);
794 /* some options need extra attention -- thus cannot use array_merge() directly */
795 FOREACH_KEYVAL(pos, opts, key, idx, opt) {
796 if (key) {
797 if (!strcmp(key, "headers")) {
798 zend_call_method_with_1_params(&getThis(), Z_OBJCE_P(getThis()), NULL, "addheaders", NULL, *opt);
799 } else if (!strcmp(key, "cookies")) {
800 zend_call_method_with_1_params(&getThis(), Z_OBJCE_P(getThis()), NULL, "addcookies", NULL, *opt);
801 } else if (!strcmp(key, "ssl")) {
802 zend_call_method_with_1_params(&getThis(), Z_OBJCE_P(getThis()), NULL, "addssloptions", NULL, *opt);
803 } else if ((!strcasecmp(key, "url")) || (!strcasecmp(key, "uri"))) {
804 zend_call_method_with_1_params(&getThis(), Z_OBJCE_P(getThis()), NULL, "seturl", NULL, *opt);
805 } else if (!strcmp(key, "method")) {
806 zend_call_method_with_1_params(&getThis(), Z_OBJCE_P(getThis()), NULL, "setmethod", NULL, *opt);
807 } else {
808 ZVAL_ADDREF(*opt);
809 add_assoc_zval(add_opts, key, *opt);
810 }
811 /* reset */
812 key = NULL;
813 }
814 }
815
816 old_opts = GET_PROP(options);
817 if (Z_TYPE_P(old_opts) == IS_ARRAY) {
818 array_copy(old_opts, new_opts);
819 }
820 array_merge(add_opts, new_opts);
821 SET_PROP(options, new_opts);
822 zval_ptr_dtor(&new_opts);
823 zval_ptr_dtor(&add_opts);
824
825 RETURN_TRUE;
826 }
827 /* }}} */
828
829 /* {{{ proto array HttpRequest::getOptions()
830 *
831 * Get currently set options.
832 *
833 * Returns an associative array containing currently set options.
834 */
835 PHP_METHOD(HttpRequest, getOptions)
836 {
837 NO_ARGS;
838
839 IF_RETVAL_USED {
840 RETURN_PROP(options);
841 }
842 }
843 /* }}} */
844
845 /* {{{ proto bool HttpRequest::setSslOptions([array options])
846 *
847 * Set SSL options.
848 *
849 * Accepts an associative array as parameter containing any SSL specific options.
850 * If the parameter is empty or omitted, the SSL options will be reset.
851 *
852 * Returns TRUE on success, or FALSE on failure.
853 */
854 PHP_METHOD(HttpRequest, setSslOptions)
855 {
856 http_request_object_set_options_subr("ssl", 1);
857 }
858 /* }}} */
859
860 /* {{{ proto bool HttpRequest::addSslOptions(array options)
861 *
862 * Set additional SSL options.
863 *
864 * Expects an associative array as parameter containing additional SSL specific options.
865 *
866 * Returns TRUE on success, or FALSE on failure.
867 */
868 PHP_METHOD(HttpRequest, addSslOptions)
869 {
870 http_request_object_set_options_subr("ssl", 0);
871 }
872 /* }}} */
873
874 /* {{{ proto array HttpRequest::getSslOtpions()
875 *
876 * Get previously set SSL options.
877 *
878 * Returns an associative array containing any previously set SSL options.
879 */
880 PHP_METHOD(HttpRequest, getSslOptions)
881 {
882 http_request_object_get_options_subr("ssl");
883 }
884 /* }}} */
885
886 /* {{{ proto bool HttpRequest::addHeaders(array headers)
887 *
888 * Add request header name/value pairs.
889 *
890 * Expects an associative array as parameter containing additional header
891 * name/value pairs.
892 *
893 * Returns TRUE on success, or FALSE on failure.
894 */
895 PHP_METHOD(HttpRequest, addHeaders)
896 {
897 http_request_object_set_options_subr("headers", 0);
898 }
899
900 /* {{{ proto bool HttpRequest::setHeaders([array headers])
901 *
902 * Set request header name/value pairs.
903 *
904 * Accepts an associative array as parameter containing header name/value pairs.
905 * If the parameter is empty or omitted, all previously set headers will be unset.
906 *
907 * Returns TRUE on success, or FALSE on failure.
908 */
909 PHP_METHOD(HttpRequest, setHeaders)
910 {
911 http_request_object_set_options_subr("headers", 1);
912 }
913 /* }}} */
914
915 /* {{{ proto array HttpRequest::getHeaders()
916 *
917 * Get previously set request headers.
918 *
919 * Returns an associative array containing all currently set headers.
920 */
921 PHP_METHOD(HttpRequest, getHeaders)
922 {
923 http_request_object_get_options_subr("headers");
924 }
925 /* }}} */
926
927 /* {{{ proto bool HttpRequest::setCookies([array cookies])
928 *
929 * Set cookies.
930 *
931 * Accepts an associative array as parameter containing cookie name/value pairs.
932 * If the parameter is empty or omitted, all previously set cookies will be unset.
933 *
934 * Returns TRUE on success, or FALSE on failure.
935 */
936 PHP_METHOD(HttpRequest, setCookies)
937 {
938 http_request_object_set_options_subr("cookies", 1);
939 }
940 /* }}} */
941
942 /* {{{ proto bool HttpRequest::addCookies(array cookies)
943 *
944 * Add cookies.
945 *
946 * Expects an associative array as parameter containing any cookie name/value
947 * pairs to add.
948 *
949 * Returns TRUE on success, or FALSE on failure.
950 */
951 PHP_METHOD(HttpRequest, addCookies)
952 {
953 http_request_object_set_options_subr("cookies", 0);
954 }
955 /* }}} */
956
957 /* {{{ proto array HttpRequest::getCookies()
958 *
959 * Get previously set cookies.
960 *
961 * Returns an associative array containing any previously set cookies.
962 */
963 PHP_METHOD(HttpRequest, getCookies)
964 {
965 http_request_object_get_options_subr("cookies");
966 }
967 /* }}} */
968
969 /* {{{ proto bool HttpRequest::setUrl(string url)
970 *
971 * Set the request URL.
972 *
973 * Expects a string as parameter specifying the request url.
974 *
975 * Returns TRUE on success, or FALSE on failure.
976 */
977 PHP_METHOD(HttpRequest, setUrl)
978 {
979 char *URL = NULL;
980 int URL_len;
981
982 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &URL, &URL_len)) {
983 RETURN_FALSE;
984 }
985
986 UPD_STRL(url, URL, URL_len);
987 RETURN_TRUE;
988 }
989 /* }}} */
990
991 /* {{{ proto string HttpRequest::getUrl()
992 *
993 * Get the previously set request URL.
994 *
995 * Returns the currently set request url as string.
996 */
997 PHP_METHOD(HttpRequest, getUrl)
998 {
999 NO_ARGS;
1000
1001 IF_RETVAL_USED {
1002 RETURN_PROP(url);
1003 }
1004 }
1005 /* }}} */
1006
1007 /* {{{ proto bool HttpRequest::setMethod(int request_method)
1008 *
1009 * Set the request method.
1010 *
1011 * Expects an int as parameter specifying the request method to use.
1012 * In PHP 5.1+ HttpRequest::METH_*, otherwise the HTTP_METH_* constants can be used.
1013 *
1014 * Returns TRUE on success, or FALSE on failure.
1015 */
1016 PHP_METHOD(HttpRequest, setMethod)
1017 {
1018 long meth;
1019
1020 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &meth)) {
1021 RETURN_FALSE;
1022 }
1023
1024 UPD_PROP(long, method, meth);
1025 RETURN_TRUE;
1026 }
1027 /* }}} */
1028
1029 /* {{{ proto int HttpRequest::getMethod()
1030 *
1031 * Get the previously set request method.
1032 *
1033 * Returns the currently set request method.
1034 */
1035 PHP_METHOD(HttpRequest, getMethod)
1036 {
1037 NO_ARGS;
1038
1039 IF_RETVAL_USED {
1040 RETURN_PROP(method);
1041 }
1042 }
1043 /* }}} */
1044
1045 /* {{{ proto bool HttpRequest::setContentType(string content_type)
1046 *
1047 * Set the content type the post request should have.
1048 *
1049 * Expects a string as parameters containing the content type of the request
1050 * (primary/secondary).
1051 *
1052 * Returns TRUE on success, or FALSE if the content type does not seem to
1053 * contain a primary and a secondary part.
1054 */
1055 PHP_METHOD(HttpRequest, setContentType)
1056 {
1057 char *ctype;
1058 int ct_len;
1059
1060 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &ctype, &ct_len)) {
1061 RETURN_FALSE;
1062 }
1063
1064 HTTP_CHECK_CONTENT_TYPE(ctype, RETURN_FALSE);
1065 UPD_STRL(contentType, ctype, ct_len);
1066 RETURN_TRUE;
1067 }
1068 /* }}} */
1069
1070 /* {{{ proto string HttpRequest::getContentType()
1071 *
1072 * Get the previously content type.
1073 *
1074 * Returns the previously set content type as string.
1075 */
1076 PHP_METHOD(HttpRequest, getContentType)
1077 {
1078 NO_ARGS;
1079
1080 IF_RETVAL_USED {
1081 RETURN_PROP(contentType);
1082 }
1083 }
1084 /* }}} */
1085
1086 /* {{{ proto bool HttpRequest::setQueryData([mixed query_data])
1087 *
1088 * Set the URL query parameters to use, overwriting previously set query parameters.
1089 * Affects any request types.
1090 *
1091 * Accepts a string or associative array parameter containing the pre-encoded
1092 * query string or to be encoded query fields. If the parameter is empty or
1093 * omitted, the query data will be unset.
1094 *
1095 * Returns TRUE on success, or FALSE on failure.
1096 */
1097 PHP_METHOD(HttpRequest, setQueryData)
1098 {
1099 zval *qdata = NULL;
1100
1101 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z!", &qdata)) {
1102 RETURN_FALSE;
1103 }
1104
1105 if ((!qdata) || Z_TYPE_P(qdata) == IS_NULL) {
1106 UPD_STRL(queryData, "", 0);
1107 } else if ((Z_TYPE_P(qdata) == IS_ARRAY) || (Z_TYPE_P(qdata) == IS_OBJECT)) {
1108 char *query_data = NULL;
1109
1110 if (SUCCESS != http_urlencode_hash(HASH_OF(qdata), &query_data)) {
1111 RETURN_FALSE;
1112 }
1113
1114 UPD_PROP(string, queryData, query_data);
1115 efree(query_data);
1116 } else {
1117 zval *orig = qdata;
1118
1119 convert_to_string_ex(&qdata);
1120 UPD_STRL(queryData, Z_STRVAL_P(qdata), Z_STRLEN_P(qdata));
1121 if (orig != qdata) {
1122 zval_ptr_dtor(&qdata);
1123 }
1124 }
1125 RETURN_TRUE;
1126 }
1127 /* }}} */
1128
1129 /* {{{ proto string HttpRequest::getQueryData()
1130 *
1131 * Get the current query data in form of an urlencoded query string.
1132 *
1133 * Returns a string containing the urlencoded query.
1134 */
1135 PHP_METHOD(HttpRequest, getQueryData)
1136 {
1137 NO_ARGS;
1138
1139 IF_RETVAL_USED {
1140 RETURN_PROP(queryData);
1141 }
1142 }
1143 /* }}} */
1144
1145 /* {{{ proto bool HttpRequest::addQueryData(array query_params)
1146 *
1147 * Add parameters to the query parameter list, leaving previously set unchanged.
1148 * Affects any request type.
1149 *
1150 * Expects an associative array as parameter containing the query fields to add.
1151 *
1152 * Returns TRUE on success, or FALSE on failure.
1153 */
1154 PHP_METHOD(HttpRequest, addQueryData)
1155 {
1156 zval *qdata, *old_qdata;
1157 char *query_data = NULL;
1158 size_t query_data_len = 0;
1159
1160 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a/", &qdata)) {
1161 RETURN_FALSE;
1162 }
1163
1164 old_qdata = GET_PROP(queryData);
1165
1166 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)) {
1167 RETURN_FALSE;
1168 }
1169
1170 UPD_STRL(queryData, query_data, query_data_len);
1171 efree(query_data);
1172
1173 RETURN_TRUE;
1174 }
1175 /* }}} */
1176
1177 /* {{{ proto bool HttpRequest::addPostFields(array post_data)
1178 *
1179 * Adds POST data entries, leaving previously set unchanged, unless a
1180 * post entry with the same name already exists.
1181 * Affects only POST and custom requests.
1182 *
1183 * Expects an associative array as parameter containing the post fields.
1184 *
1185 * Returns TRUE on success, or FALSE on failure.
1186 */
1187 PHP_METHOD(HttpRequest, addPostFields)
1188 {
1189 zval *post_data, *old_post, *new_post;
1190
1191 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a/", &post_data)) {
1192 RETURN_FALSE;
1193 }
1194
1195 if (zend_hash_num_elements(Z_ARRVAL_P(post_data))) {
1196 MAKE_STD_ZVAL(new_post);
1197 array_init(new_post);
1198 old_post = GET_PROP(postFields);
1199 if (Z_TYPE_P(old_post) == IS_ARRAY) {
1200 array_copy(old_post, new_post);
1201 }
1202 array_merge(post_data, new_post);
1203 SET_PROP(postFields, new_post);
1204 zval_ptr_dtor(&new_post);
1205 }
1206
1207 RETURN_TRUE;
1208 }
1209 /* }}} */
1210
1211 /* {{{ proto bool HttpRequest::setPostFields([array post_data])
1212 *
1213 * Set the POST data entries, overwriting previously set POST data.
1214 * Affects only POST and custom requests.
1215 *
1216 * Accepts an associative array as parameter containing the post fields.
1217 * If the parameter is empty or omitted, the post data will be unset.
1218 *
1219 * Returns TRUE on success, or FALSE on failure.
1220 */
1221 PHP_METHOD(HttpRequest, setPostFields)
1222 {
1223 zval *post, *post_data = NULL;
1224
1225 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a/!", &post_data)) {
1226 RETURN_FALSE;
1227 }
1228
1229 MAKE_STD_ZVAL(post);
1230 array_init(post);
1231 if (post_data && zend_hash_num_elements(Z_ARRVAL_P(post_data))) {
1232 array_copy(post_data, post);
1233 }
1234 SET_PROP(postFields, post);
1235 zval_ptr_dtor(&post);
1236
1237 RETURN_TRUE;
1238 }
1239 /* }}}*/
1240
1241 /* {{{ proto array HttpRequest::getPostFields()
1242 *
1243 * Get previously set POST data.
1244 *
1245 * Returns the currently set post fields as associative array.
1246 */
1247 PHP_METHOD(HttpRequest, getPostFields)
1248 {
1249 NO_ARGS;
1250
1251 IF_RETVAL_USED {
1252 RETURN_PROP(postFields);
1253 }
1254 }
1255 /* }}} */
1256
1257 /* {{{ proto bool HttpRequest::setRawPostData([string raw_post_data])
1258 *
1259 * Set raw post data to send, overwriting previously set raw post data. Don't
1260 * forget to specify a content type. Affects only POST and custom requests.
1261 * Only either post fields or raw post data can be used for each request.
1262 * Raw post data has higher precedence and will be used even if post fields
1263 * are set.
1264 *
1265 * Accepts a string as parameter containing the *raw* post data.
1266 *
1267 * Returns TRUE on success, or FALSE on failure.
1268 */
1269 PHP_METHOD(HttpRequest, setRawPostData)
1270 {
1271 char *raw_data = NULL;
1272 int data_len = 0;
1273
1274 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &raw_data, &data_len)) {
1275 RETURN_FALSE;
1276 }
1277
1278 if (!raw_data) {
1279 raw_data = "";
1280 }
1281
1282 UPD_STRL(rawPostData, raw_data, data_len);
1283 RETURN_TRUE;
1284 }
1285 /* }}} */
1286
1287 /* {{{ proto bool HttpRequest::addRawPostData(string raw_post_data)
1288 *
1289 * Add raw post data, leaving previously set raw post data unchanged.
1290 * Affects only POST and custom requests.
1291 *
1292 * Expects a string as parameter containing the raw post data to concatenate.
1293 *
1294 * Returns TRUE on success, or FALSE on failure.
1295 */
1296 PHP_METHOD(HttpRequest, addRawPostData)
1297 {
1298 char *raw_data;
1299 int data_len;
1300
1301 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &raw_data, &data_len)) {
1302 RETURN_FALSE;
1303 }
1304
1305 if (data_len) {
1306 zval *data = zval_copy(IS_STRING, GET_PROP(rawPostData));
1307
1308 Z_STRVAL_P(data) = erealloc(Z_STRVAL_P(data), (Z_STRLEN_P(data) += data_len) + 1);
1309 Z_STRVAL_P(data)[Z_STRLEN_P(data)] = '\0';
1310 memcpy(Z_STRVAL_P(data) + Z_STRLEN_P(data) - data_len, raw_data, data_len);
1311 SET_PROP(rawPostData, data);
1312 zval_free(&data);
1313 }
1314
1315 RETURN_TRUE;
1316 }
1317 /* }}} */
1318
1319 /* {{{ proto string HttpRequest::getRawPostData()
1320 *
1321 * Get previously set raw post data.
1322 *
1323 * Returns a string containing the currently set raw post data.
1324 */
1325 PHP_METHOD(HttpRequest, getRawPostData)
1326 {
1327 NO_ARGS;
1328
1329 IF_RETVAL_USED {
1330 RETURN_PROP(rawPostData);
1331 }
1332 }
1333 /* }}} */
1334
1335 /* {{{ proto bool HttpRequest::addPostFile(string name, string file[, string content_type = "application/x-octetstream"])
1336 *
1337 * Add a file to the POST request, leaving previously set files unchanged.
1338 * Affects only POST and custom requests. Cannot be used with raw post data.
1339 *
1340 * Expects a string parameter containing the form element name, and a string
1341 * paremeter containing the path to the file which should be uploaded.
1342 * Additionally accepts an optional string parameter which should contain
1343 * the content type of the file.
1344 *
1345 * Returns TRUE on success, or FALSE if the content type seems not to contain a
1346 * primary and a secondary content type part.
1347 */
1348 PHP_METHOD(HttpRequest, addPostFile)
1349 {
1350 zval *entry, *old_post, *new_post;
1351 char *name, *file, *type = NULL;
1352 int name_len, file_len, type_len = 0;
1353
1354 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|s", &name, &name_len, &file, &file_len, &type, &type_len)) {
1355 RETURN_FALSE;
1356 }
1357
1358 if (type_len) {
1359 HTTP_CHECK_CONTENT_TYPE(type, RETURN_FALSE);
1360 } else {
1361 type = "application/x-octetstream";
1362 type_len = sizeof("application/x-octetstream") - 1;
1363 }
1364
1365 MAKE_STD_ZVAL(entry);
1366 array_init(entry);
1367
1368 add_assoc_stringl(entry, "name", name, name_len, 1);
1369 add_assoc_stringl(entry, "type", type, type_len, 1);
1370 add_assoc_stringl(entry, "file", file, file_len, 1);
1371
1372 MAKE_STD_ZVAL(new_post);
1373 array_init(new_post);
1374 old_post = GET_PROP(postFiles);
1375 if (Z_TYPE_P(old_post) == IS_ARRAY) {
1376 array_copy(old_post, new_post);
1377 }
1378 add_next_index_zval(new_post, entry);
1379 SET_PROP(postFiles, new_post);
1380 zval_ptr_dtor(&new_post);
1381
1382 RETURN_TRUE;
1383 }
1384 /* }}} */
1385
1386 /* {{{ proto bool HttpRequest::setPostFiles([array post_files])
1387 *
1388 * Set files to post, overwriting previously set post files.
1389 * Affects only POST and requests. Cannot be used with raw post data.
1390 *
1391 * Accepts an array containing the files to post. Each entry should be an
1392 * associative array with "name", "file" and "type" keys. If the parameter
1393 * is empty or omitted the post files will be unset.
1394 *
1395 * Returns TRUE on success, or FALSE on failure.
1396 */
1397 PHP_METHOD(HttpRequest, setPostFiles)
1398 {
1399 zval *files = NULL, *post;
1400
1401 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a!/", &files)) {
1402 RETURN_FALSE;
1403 }
1404
1405 MAKE_STD_ZVAL(post);
1406 array_init(post);
1407 if (files && (Z_TYPE_P(files) == IS_ARRAY)) {
1408 array_copy(files, post);
1409 }
1410 SET_PROP(postFiles, post);
1411 zval_ptr_dtor(&post);
1412
1413 RETURN_TRUE;
1414 }
1415 /* }}} */
1416
1417 /* {{{ proto array HttpRequest::getPostFiles()
1418 *
1419 * Get all previously added POST files.
1420 *
1421 * Returns an array containing currently set post files.
1422 */
1423 PHP_METHOD(HttpRequest, getPostFiles)
1424 {
1425 NO_ARGS;
1426
1427 IF_RETVAL_USED {
1428 RETURN_PROP(postFiles);
1429 }
1430 }
1431 /* }}} */
1432
1433 /* {{{ proto bool HttpRequest::setPutFile([string file])
1434 *
1435 * Set file to put. Affects only PUT requests.
1436 *
1437 * Accepts a string as parameter referencing the path to file.
1438 * If the parameter is empty or omitted the put file will be unset.
1439 *
1440 * Returns TRUE on success, or FALSE on failure.
1441 */
1442 PHP_METHOD(HttpRequest, setPutFile)
1443 {
1444 char *file = "";
1445 int file_len = 0;
1446
1447 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &file, &file_len)) {
1448 RETURN_FALSE;
1449 }
1450
1451 UPD_STRL(putFile, file, file_len);
1452 RETURN_TRUE;
1453 }
1454 /* }}} */
1455
1456 /* {{{ proto string HttpRequest::getPutFile()
1457 *
1458 * Get previously set put file.
1459 *
1460 * Returns a string containing the path to the currently set put file.
1461 */
1462 PHP_METHOD(HttpRequest, getPutFile)
1463 {
1464 NO_ARGS;
1465
1466 IF_RETVAL_USED {
1467 RETURN_PROP(putFile);
1468 }
1469 }
1470 /* }}} */
1471
1472 /* {{{ proto array HttpRequest::getResponseData()
1473 *
1474 * Get all response data after the request has been sent.
1475 *
1476 * Returns an associative array with the key "headers" containing an associative
1477 * array holding all response headers, as well as the key "body" containing a
1478 * string with the response body.
1479 *
1480 * If redirects were allowed and several responses were received, the data
1481 * references the last received response.
1482 */
1483 PHP_METHOD(HttpRequest, getResponseData)
1484 {
1485 NO_ARGS;
1486
1487 IF_RETVAL_USED {
1488 RETURN_PROP(responseData);
1489 }
1490 }
1491 /* }}} */
1492
1493 /* {{{ proto mixed HttpRequest::getResponseHeader([string name])
1494 *
1495 * Get response header(s) after the request has been sent.
1496 *
1497 * Accepts an string as optional parameter specifying a certain header to read.
1498 * If the parameter is empty or omitted all response headers will be returned.
1499 *
1500 * Returns either a string with the value of the header matching name if requested,
1501 * FALSE on failure, or an associative array containing all response headers.
1502 *
1503 * If redirects were allowed and several responses were received, the data
1504 * references the last received response.
1505 */
1506 PHP_METHOD(HttpRequest, getResponseHeader)
1507 {
1508 IF_RETVAL_USED {
1509 zval *data, **headers, **header;
1510 char *header_name = NULL;
1511 int header_len = 0;
1512
1513 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &header_name, &header_len)) {
1514 RETURN_FALSE;
1515 }
1516
1517 data = GET_PROP(responseData);
1518 if ( (Z_TYPE_P(data) == IS_ARRAY) &&
1519 (SUCCESS == zend_hash_find(Z_ARRVAL_P(data), "headers", sizeof("headers"), (void **) &headers)) &&
1520 (Z_TYPE_PP(headers) == IS_ARRAY)) {
1521 if (!header_len || !header_name) {
1522 RETVAL_ZVAL(*headers, 1, 0);
1523 } else if (SUCCESS == zend_hash_find(Z_ARRVAL_PP(headers), pretty_key(header_name, header_len, 1, 1), header_len + 1, (void **) &header)) {
1524 RETVAL_ZVAL(*header, 1, 0);
1525 } else {
1526 RETVAL_FALSE;
1527 }
1528 } else {
1529 RETVAL_FALSE;
1530 }
1531 }
1532 }
1533 /* }}} */
1534
1535 /* {{{ proto array HttpRequest::getResponseCookies([int flags[, array allowed_extras]])
1536 *
1537 * Get response cookie(s) after the request has been sent.
1538 *
1539 * Returns an array of stdClass objects like http_parse_cookie would return.
1540 *
1541 * If redirects were allowed and several responses were received, the data
1542 * references the last received response.
1543 */
1544 PHP_METHOD(HttpRequest, getResponseCookies)
1545 {
1546 IF_RETVAL_USED {
1547 long flags = 0;
1548 zval *allowed_extras_array = NULL, *data, **headers;
1549
1550 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|la", &flags, &allowed_extras_array)) {
1551 RETURN_FALSE;
1552 }
1553
1554 data = GET_PROP(responseData);
1555 if ( (Z_TYPE_P(data) == IS_ARRAY) &&
1556 (SUCCESS == zend_hash_find(Z_ARRVAL_P(data), "headers", sizeof("headers"), (void **) &headers)) &&
1557 (Z_TYPE_PP(headers) == IS_ARRAY)) {
1558 int i = 0;
1559 ulong idx = 0;
1560 char *key = NULL, **allowed_extras = NULL;
1561 zval **header = NULL, **entry = NULL;
1562 HashPosition pos, pos1, pos2;
1563
1564 array_init(return_value);
1565
1566 if (allowed_extras_array) {
1567 allowed_extras = ecalloc(zend_hash_num_elements(Z_ARRVAL_P(allowed_extras_array)) + 1, sizeof(char *));
1568 FOREACH_VAL(pos, allowed_extras_array, entry) {
1569 ZVAL_ADDREF(*entry);
1570 convert_to_string_ex(entry);
1571 allowed_extras[i++] = estrndup(Z_STRVAL_PP(entry), Z_STRLEN_PP(entry));
1572 zval_ptr_dtor(entry);
1573 }
1574 }
1575
1576 FOREACH_HASH_KEYVAL(pos1, Z_ARRVAL_PP(headers), key, idx, header) {
1577 if (key && !strcasecmp(key, "Set-Cookie")) {
1578 http_cookie_list list;
1579
1580 if (Z_TYPE_PP(header) == IS_ARRAY) {
1581 zval **single_header;
1582
1583 FOREACH_VAL(pos2, *header, single_header) {
1584 ZVAL_ADDREF(*single_header);
1585 convert_to_string_ex(single_header);
1586 if (http_parse_cookie_ex(&list, Z_STRVAL_PP(single_header), flags, allowed_extras)) {
1587 zval *cookie;
1588
1589 MAKE_STD_ZVAL(cookie);
1590 object_init(cookie);
1591 http_cookie_list_tostruct(&list, cookie);
1592 add_next_index_zval(return_value, cookie);
1593 http_cookie_list_dtor(&list);
1594 }
1595 zval_ptr_dtor(single_header);
1596 }
1597 } else {
1598 ZVAL_ADDREF(*header);
1599 convert_to_string_ex(header);
1600 if (http_parse_cookie_ex(&list, Z_STRVAL_PP(header), flags, allowed_extras)) {
1601 zval *cookie;
1602
1603 MAKE_STD_ZVAL(cookie);
1604 object_init(cookie);
1605 http_cookie_list_tostruct(&list, cookie);
1606 add_next_index_zval(return_value, cookie);
1607 http_cookie_list_dtor(&list);
1608 }
1609 zval_ptr_dtor(header);
1610 }
1611 }
1612 /* reset key */
1613 key = NULL;
1614 }
1615
1616 if (allowed_extras) {
1617 for (i = 0; allowed_extras[i]; ++i) {
1618 efree(allowed_extras[i]);
1619 }
1620 efree(allowed_extras);
1621 }
1622 } else {
1623 RETURN_FALSE;
1624 }
1625 }
1626 }
1627 /* }}} */
1628
1629 /* {{{ proto string HttpRequest::getResponseBody()
1630 *
1631 * Get the response body after the request has been sent.
1632 *
1633 * Returns a string containing the response body.
1634 *
1635 * If redirects were allowed and several responses were received, the data
1636 * references the last received response.
1637 */
1638 PHP_METHOD(HttpRequest, getResponseBody)
1639 {
1640 NO_ARGS;
1641
1642 IF_RETVAL_USED {
1643 zval **body;
1644 zval *data = GET_PROP(responseData);
1645
1646 if ( (Z_TYPE_P(data) == IS_ARRAY) &&
1647 (SUCCESS == zend_hash_find(Z_ARRVAL_P(data), "body", sizeof("body"), (void **) &body))) {
1648 RETURN_ZVAL(*body, 1, 0);
1649 } else {
1650 RETURN_FALSE;
1651 }
1652 }
1653 }
1654 /* }}} */
1655
1656 /* {{{ proto int HttpRequest::getResponseCode()
1657 *
1658 * Get the response code after the request has been sent.
1659 *
1660 * Returns an int representing the response code.
1661 *
1662 * If redirects were allowed and several responses were received, the data
1663 * references the last received response.
1664 */
1665 PHP_METHOD(HttpRequest, getResponseCode)
1666 {
1667 NO_ARGS;
1668
1669 IF_RETVAL_USED {
1670 RETURN_PROP(responseCode);
1671 }
1672 }
1673 /* }}} */
1674
1675 /* {{{ proto string HttpRequest::getResponseStatus()
1676 *
1677 * Get the response status (i.e. the string after the response code) after the message has been sent.
1678 *
1679 * Returns a string containing the response status text.
1680 */
1681 PHP_METHOD(HttpRequest, getResponseStatus)
1682 {
1683 NO_ARGS;
1684
1685 IF_RETVAL_USED {
1686 RETURN_PROP(responseStatus);
1687 }
1688 }
1689 /* }}} */
1690
1691 /* {{{ proto mixed HttpRequest::getResponseInfo([string name])
1692 *
1693 * Get response info after the request has been sent.
1694 * See http_get() for a full list of returned info.
1695 *
1696 * Accepts a string as optional parameter specifying the info to read.
1697 * If the parameter is empty or omitted, an associative array containing
1698 * all available info will be returned.
1699 *
1700 * Returns either a scalar containing the value of the info matching name if
1701 * requested, FALSE on failure, or an associative array containing all
1702 * available info.
1703 *
1704 * If redirects were allowed and several responses were received, the data
1705 * references the last received response.
1706 */
1707 PHP_METHOD(HttpRequest, getResponseInfo)
1708 {
1709 IF_RETVAL_USED {
1710 zval *info, **infop;
1711 char *info_name = NULL;
1712 int info_len = 0;
1713
1714 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &info_name, &info_len)) {
1715 RETURN_FALSE;
1716 }
1717
1718 info = GET_PROP(responseInfo);
1719
1720 if (Z_TYPE_P(info) != IS_ARRAY) {
1721 RETURN_FALSE;
1722 }
1723
1724 if (info_len && info_name) {
1725 if (SUCCESS == zend_hash_find(Z_ARRVAL_P(info), pretty_key(info_name, info_len, 0, 0), info_len + 1, (void **) &infop)) {
1726 RETURN_ZVAL(*infop, 1, 0);
1727 } else {
1728 http_error_ex(HE_NOTICE, HTTP_E_INVALID_PARAM, "Could not find response info named %s", info_name);
1729 RETURN_FALSE;
1730 }
1731 } else {
1732 RETURN_ZVAL(info, 1, 0);
1733 }
1734 }
1735 }
1736 /* }}}*/
1737
1738 /* {{{ proto HttpMessage HttpRequest::getResponseMessage()
1739 *
1740 * Get the full response as HttpMessage object after the request has been sent.
1741 *
1742 * Returns an HttpMessage object of the response.
1743 *
1744 * If redirects were allowed and several responses were received, the data
1745 * references the last received response. Use HttpMessage::getParentMessage()
1746 * to access the data of previously received responses within this request
1747 * cycle.
1748 *
1749 * Throws HttpException.
1750 */
1751 PHP_METHOD(HttpRequest, getResponseMessage)
1752 {
1753 NO_ARGS;
1754
1755 IF_RETVAL_USED {
1756 zval *message;
1757
1758 SET_EH_THROW_HTTP();
1759 message = GET_PROP(responseMessage);
1760 if (Z_TYPE_P(message) == IS_OBJECT) {
1761 RETVAL_OBJECT(message, 1);
1762 } else {
1763 RETVAL_NULL();
1764 }
1765 SET_EH_NORMAL();
1766 }
1767 }
1768 /* }}} */
1769
1770 /* {{{ proto HttpMessage HttpRequest::getRequestMessage()
1771 *
1772 * Get sent HTTP message.
1773 *
1774 * Returns an HttpMessage object representing the sent request.
1775 *
1776 * If redirects were allowed and several responses were received, the data
1777 * references the last received response. Use HttpMessage::getParentMessage()
1778 * to access the data of previously sent requests within this request
1779 * cycle.
1780 *
1781 * Note that the internal request message is immutable, that means that the
1782 * request message received through HttpRequest::getRequestMessage() will
1783 * always look the same for the same request, regardless of any changes you
1784 * may have made to the returned object.
1785 *
1786 * Throws HttpMalformedHeadersException, HttpEncodingException.
1787 */
1788 PHP_METHOD(HttpRequest, getRequestMessage)
1789 {
1790 NO_ARGS;
1791
1792 IF_RETVAL_USED {
1793 http_message *msg;
1794 getObject(http_request_object, obj);
1795
1796 SET_EH_THROW_HTTP();
1797 if ((msg = http_message_parse(PHPSTR_VAL(&obj->request->conv.request), PHPSTR_LEN(&obj->request->conv.request)))) {
1798 RETVAL_OBJVAL(http_message_object_new_ex(http_message_object_ce, msg, NULL), 0);
1799 }
1800 SET_EH_NORMAL();
1801 }
1802 }
1803 /* }}} */
1804
1805 /* {{{ proto string HttpRequest::getRawRequestMessage()
1806 *
1807 * Get sent HTTP message.
1808 *
1809 * Returns an HttpMessage in a form of a string
1810 *
1811 */
1812 PHP_METHOD(HttpRequest, getRawRequestMessage)
1813 {
1814 NO_ARGS;
1815
1816 IF_RETVAL_USED {
1817 getObject(http_request_object, obj);
1818
1819 RETURN_PHPSTR_DUP(&obj->request->conv.request);
1820 }
1821 }
1822 /* }}} */
1823
1824 /* {{{ proto string HttpRequest::getRawResponseMessage()
1825 *
1826 * Get the entire HTTP response.
1827 *
1828 * Returns the complete web server response, including the headers in a form of a string.
1829 *
1830 */
1831 PHP_METHOD(HttpRequest, getRawResponseMessage)
1832 {
1833 NO_ARGS;
1834
1835 IF_RETVAL_USED {
1836 getObject(http_request_object, obj);
1837
1838 RETURN_PHPSTR_DUP(&obj->request->conv.response);
1839 }
1840 }
1841 /* }}} */
1842
1843 /* {{{ proto HttpMessage HttpRequest::getHistory()
1844 *
1845 * Get all sent requests and received responses as an HttpMessage object.
1846 *
1847 * If you want to record history, set the instance variable
1848 * HttpRequest::$recordHistory to TRUE.
1849 *
1850 * Returns an HttpMessage object representing the complete request/response
1851 * history.
1852 *
1853 * The object references the last received response, use HttpMessage::getParentMessage()
1854 * to access the data of previously sent requests and received responses.
1855 *
1856 * Throws HttpRuntimeException.
1857 */
1858 PHP_METHOD(HttpRequest, getHistory)
1859 {
1860 NO_ARGS;
1861
1862 IF_RETVAL_USED {
1863 zval *hist;
1864
1865 SET_EH_THROW_HTTP();
1866 hist = GET_PROP(history);
1867 if (Z_TYPE_P(hist) == IS_OBJECT) {
1868 RETVAL_OBJECT(hist, 1);
1869 } else {
1870 http_error(HE_WARNING, HTTP_E_RUNTIME, "The history is empty");
1871 }
1872 SET_EH_NORMAL();
1873 }
1874 }
1875 /* }}} */
1876
1877 /* {{{ proto void HttpRequest::clearHistory()
1878 *
1879 * Clear the history.
1880 */
1881 PHP_METHOD(HttpRequest, clearHistory)
1882 {
1883 NO_ARGS {
1884 zval *hist;
1885
1886 MAKE_STD_ZVAL(hist);
1887 ZVAL_NULL(hist);
1888 SET_PROP(history, hist);
1889 zval_ptr_dtor(&hist);
1890 }
1891 }
1892 /* }}} */
1893
1894 /* {{{ proto HttpMessage HttpRequest::send()
1895 *
1896 * Send the HTTP request.
1897 *
1898 * Returns the received response as HttpMessage object.
1899 *
1900 * NOTE: While an exception may be thrown, the transfer could have succeeded
1901 * at least partially, so you might want to check the return values of various
1902 * HttpRequest::getResponse*() methods.
1903 *
1904 * Throws HttpRuntimeException, HttpRequestException,
1905 * HttpMalformedHeaderException, HttpEncodingException.
1906 *
1907 * GET example:
1908 * <pre>
1909 * <?php
1910 * $r = new HttpRequest('http://example.com/feed.rss', HttpRequest::METH_GET);
1911 * $r->setOptions(array('lastmodified' => filemtime('local.rss')));
1912 * $r->addQueryData(array('category' => 3));
1913 * try {
1914 * $r->send();
1915 * if ($r->getResponseCode() == 200) {
1916 * file_put_contents('local.rss', $r->getResponseBody());
1917 * }
1918 * } catch (HttpException $ex) {
1919 * echo $ex;
1920 * }
1921 * ?>
1922 * </pre>
1923 *
1924 * POST example:
1925 * <pre>
1926 * <?php
1927 * $r = new HttpRequest('http://example.com/form.php', HttpRequest::METH_POST);
1928 * $r->setOptions(array('cookies' => array('lang' => 'de')));
1929 * $r->addPostFields(array('user' => 'mike', 'pass' => 's3c|r3t'));
1930 * $r->addPostFile('image', 'profile.jpg', 'image/jpeg');
1931 * try {
1932 * echo $r->send()->getBody();
1933 * } catch (HttpException $ex) {
1934 * echo $ex;
1935 * }
1936 * ?>
1937 * </pre>
1938 */
1939 PHP_METHOD(HttpRequest, send)
1940 {
1941 getObject(http_request_object, obj);
1942
1943 NO_ARGS;
1944
1945 SET_EH_THROW_HTTP();
1946
1947 RETVAL_FALSE;
1948
1949 if (obj->pool) {
1950 http_error(HE_WARNING, HTTP_E_RUNTIME, "Cannot perform HttpRequest::send() while attached to an HttpRequestPool");
1951 } else if (SUCCESS == http_request_object_requesthandler(obj, getThis())) {
1952 http_request_exec(obj->request);
1953 if (SUCCESS == http_request_object_responsehandler(obj, getThis())) {
1954 RETVAL_OBJECT(GET_PROP(responseMessage), 1);
1955 }
1956 }
1957
1958 SET_EH_NORMAL();
1959 }
1960 /* }}} */
1961
1962 #endif /* ZEND_ENGINE_2 && HTTP_HAVE_CURL */
1963
1964 /*
1965 * Local variables:
1966 * tab-width: 4
1967 * c-basic-offset: 4
1968 * End:
1969 * vim600: noet sw=4 ts=4 fdm=marker
1970 * vim<600: noet sw=4 ts=4
1971 */
1972