- cleanup
[m6w6/ext-http] / http_message_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_SAPI
16 #define HTTP_WANT_CURL
17 #include "php_http.h"
18
19 #ifdef ZEND_ENGINE_2
20
21 #include "zend_interfaces.h"
22 #include "ext/standard/url.h"
23
24 #include "php_http_api.h"
25 #include "php_http_send_api.h"
26 #include "php_http_url_api.h"
27 #include "php_http_message_api.h"
28 #include "php_http_message_object.h"
29 #include "php_http_exception_object.h"
30 #include "php_http_response_object.h"
31 #include "php_http_request_method_api.h"
32 #include "php_http_request_api.h"
33 #include "php_http_request_object.h"
34
35 #ifndef WONKY
36 # ifdef HAVE_SPL
37 /* SPL doesn't install its headers */
38 extern PHPAPI zend_class_entry *spl_ce_Countable;
39 # endif
40 #endif
41
42 #define HTTP_BEGIN_ARGS(method, req_args) HTTP_BEGIN_ARGS_EX(HttpMessage, method, 0, req_args)
43 #define HTTP_EMPTY_ARGS(method) HTTP_EMPTY_ARGS_EX(HttpMessage, method, 0)
44 #define HTTP_MESSAGE_ME(method, visibility) PHP_ME(HttpMessage, method, HTTP_ARGS(HttpMessage, method), visibility)
45
46 HTTP_BEGIN_ARGS(__construct, 0)
47 HTTP_ARG_VAL(message, 0)
48 HTTP_END_ARGS;
49
50 HTTP_BEGIN_ARGS(fromString, 1)
51 HTTP_ARG_VAL(message, 0)
52 HTTP_END_ARGS;
53
54 HTTP_EMPTY_ARGS(getBody);
55 HTTP_BEGIN_ARGS(setBody, 1)
56 HTTP_ARG_VAL(body, 0)
57 HTTP_END_ARGS;
58
59 HTTP_EMPTY_ARGS(getHeaders);
60 HTTP_BEGIN_ARGS(setHeaders, 1)
61 HTTP_ARG_VAL(headers, 0)
62 HTTP_END_ARGS;
63
64 HTTP_BEGIN_ARGS(addHeaders, 1)
65 HTTP_ARG_VAL(headers, 0)
66 HTTP_ARG_VAL(append, 0)
67 HTTP_END_ARGS;
68
69 HTTP_EMPTY_ARGS(getType);
70 HTTP_BEGIN_ARGS(setType, 1)
71 HTTP_ARG_VAL(type, 0)
72 HTTP_END_ARGS;
73
74 HTTP_EMPTY_ARGS(getResponseCode);
75 HTTP_BEGIN_ARGS(setResponseCode, 1)
76 HTTP_ARG_VAL(response_code, 0)
77 HTTP_END_ARGS;
78
79 HTTP_EMPTY_ARGS(getResponseStatus);
80 HTTP_BEGIN_ARGS(setResponseStatus, 1)
81 HTTP_ARG_VAL(response_status, 0)
82 HTTP_END_ARGS;
83
84 HTTP_EMPTY_ARGS(getRequestMethod);
85 HTTP_BEGIN_ARGS(setRequestMethod, 1)
86 HTTP_ARG_VAL(request_method, 0)
87 HTTP_END_ARGS;
88
89 HTTP_EMPTY_ARGS(getRequestUrl);
90 HTTP_BEGIN_ARGS(setRequestUrl, 1)
91 HTTP_ARG_VAL(url, 0)
92 HTTP_END_ARGS;
93
94 HTTP_EMPTY_ARGS(getHttpVersion);
95 HTTP_BEGIN_ARGS(setHttpVersion, 1)
96 HTTP_ARG_VAL(http_version, 0)
97 HTTP_END_ARGS;
98
99 HTTP_EMPTY_ARGS(getParentMessage);
100 HTTP_EMPTY_ARGS(send);
101 HTTP_BEGIN_ARGS(toString, 0)
102 HTTP_ARG_VAL(include_parent, 0)
103 HTTP_END_ARGS;
104
105 HTTP_EMPTY_ARGS(toMessageTypeObject);
106
107 HTTP_EMPTY_ARGS(count);
108
109 HTTP_EMPTY_ARGS(serialize);
110 HTTP_BEGIN_ARGS(unserialize, 1)
111 HTTP_ARG_VAL(serialized, 0)
112 HTTP_END_ARGS;
113
114 HTTP_EMPTY_ARGS(rewind);
115 HTTP_EMPTY_ARGS(valid);
116 HTTP_EMPTY_ARGS(key);
117 HTTP_EMPTY_ARGS(current);
118 HTTP_EMPTY_ARGS(next);
119
120 HTTP_EMPTY_ARGS(detach);
121 HTTP_BEGIN_ARGS(prepend, 1)
122 HTTP_ARG_OBJ(HttpMessage, message, 0)
123 HTTP_END_ARGS;
124 HTTP_EMPTY_ARGS(reverse);
125
126 #define http_message_object_read_prop _http_message_object_read_prop
127 static zval *_http_message_object_read_prop(zval *object, zval *member, int type TSRMLS_DC);
128 #define http_message_object_write_prop _http_message_object_write_prop
129 static void _http_message_object_write_prop(zval *object, zval *member, zval *value TSRMLS_DC);
130 #define http_message_object_get_props _http_message_object_get_props
131 static HashTable *_http_message_object_get_props(zval *object TSRMLS_DC);
132
133 #define OBJ_PROP_CE http_message_object_ce
134 zend_class_entry *http_message_object_ce;
135 zend_function_entry http_message_object_fe[] = {
136 HTTP_MESSAGE_ME(__construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
137 HTTP_MESSAGE_ME(getBody, ZEND_ACC_PUBLIC)
138 HTTP_MESSAGE_ME(setBody, ZEND_ACC_PUBLIC)
139 HTTP_MESSAGE_ME(getHeaders, ZEND_ACC_PUBLIC)
140 HTTP_MESSAGE_ME(setHeaders, ZEND_ACC_PUBLIC)
141 HTTP_MESSAGE_ME(addHeaders, ZEND_ACC_PUBLIC)
142 HTTP_MESSAGE_ME(getType, ZEND_ACC_PUBLIC)
143 HTTP_MESSAGE_ME(setType, ZEND_ACC_PUBLIC)
144 HTTP_MESSAGE_ME(getResponseCode, ZEND_ACC_PUBLIC)
145 HTTP_MESSAGE_ME(setResponseCode, ZEND_ACC_PUBLIC)
146 HTTP_MESSAGE_ME(getResponseStatus, ZEND_ACC_PUBLIC)
147 HTTP_MESSAGE_ME(setResponseStatus, ZEND_ACC_PUBLIC)
148 HTTP_MESSAGE_ME(getRequestMethod, ZEND_ACC_PUBLIC)
149 HTTP_MESSAGE_ME(setRequestMethod, ZEND_ACC_PUBLIC)
150 HTTP_MESSAGE_ME(getRequestUrl, ZEND_ACC_PUBLIC)
151 HTTP_MESSAGE_ME(setRequestUrl, ZEND_ACC_PUBLIC)
152 HTTP_MESSAGE_ME(getHttpVersion, ZEND_ACC_PUBLIC)
153 HTTP_MESSAGE_ME(setHttpVersion, ZEND_ACC_PUBLIC)
154 HTTP_MESSAGE_ME(getParentMessage, ZEND_ACC_PUBLIC)
155 HTTP_MESSAGE_ME(send, ZEND_ACC_PUBLIC)
156 HTTP_MESSAGE_ME(toString, ZEND_ACC_PUBLIC)
157 HTTP_MESSAGE_ME(toMessageTypeObject, ZEND_ACC_PUBLIC)
158
159 /* implements Countable */
160 HTTP_MESSAGE_ME(count, ZEND_ACC_PUBLIC)
161
162 /* implements Serializable */
163 HTTP_MESSAGE_ME(serialize, ZEND_ACC_PUBLIC)
164 HTTP_MESSAGE_ME(unserialize, ZEND_ACC_PUBLIC)
165
166 /* implements Iterator */
167 HTTP_MESSAGE_ME(rewind, ZEND_ACC_PUBLIC)
168 HTTP_MESSAGE_ME(valid, ZEND_ACC_PUBLIC)
169 HTTP_MESSAGE_ME(current, ZEND_ACC_PUBLIC)
170 HTTP_MESSAGE_ME(key, ZEND_ACC_PUBLIC)
171 HTTP_MESSAGE_ME(next, ZEND_ACC_PUBLIC)
172
173 ZEND_MALIAS(HttpMessage, __toString, toString, HTTP_ARGS(HttpMessage, toString), ZEND_ACC_PUBLIC)
174
175 HTTP_MESSAGE_ME(fromString, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
176
177 HTTP_MESSAGE_ME(detach, ZEND_ACC_PUBLIC)
178 HTTP_MESSAGE_ME(prepend, ZEND_ACC_PUBLIC)
179 HTTP_MESSAGE_ME(reverse, ZEND_ACC_PUBLIC)
180
181 EMPTY_FUNCTION_ENTRY
182 };
183 static zend_object_handlers http_message_object_handlers;
184
185 PHP_MINIT_FUNCTION(http_message_object)
186 {
187 HTTP_REGISTER_CLASS_EX(HttpMessage, http_message_object, NULL, 0);
188
189 #ifndef WONKY
190 # ifdef HAVE_SPL
191 zend_class_implements(http_message_object_ce TSRMLS_CC, 3, spl_ce_Countable, zend_ce_serializable, zend_ce_iterator);
192 # else
193 zend_class_implements(http_message_object_ce TSRMLS_CC, 2, zend_ce_serializable, zend_ce_iterator);
194 # endif
195 #else
196 zend_class_implements(http_message_object_ce TSRMLS_CC, 1, zend_ce_iterator);
197 #endif
198
199 http_message_object_handlers.clone_obj = _http_message_object_clone_obj;
200 http_message_object_handlers.read_property = http_message_object_read_prop;
201 http_message_object_handlers.write_property = http_message_object_write_prop;
202 http_message_object_handlers.get_properties = http_message_object_get_props;
203 http_message_object_handlers.get_property_ptr_ptr = NULL;
204
205 DCL_PROP(PROTECTED, long, type, HTTP_MSG_NONE);
206 DCL_PROP(PROTECTED, string, body, "");
207 DCL_PROP(PROTECTED, string, requestMethod, "");
208 DCL_PROP(PROTECTED, string, requestUrl, "");
209 DCL_PROP(PROTECTED, string, responseStatus, "");
210 DCL_PROP(PROTECTED, long, responseCode, 0);
211 DCL_PROP_N(PROTECTED, httpVersion);
212 DCL_PROP_N(PROTECTED, headers);
213 DCL_PROP_N(PROTECTED, parentMessage);
214
215 #ifndef WONKY
216 DCL_CONST(long, "TYPE_NONE", HTTP_MSG_NONE);
217 DCL_CONST(long, "TYPE_REQUEST", HTTP_MSG_REQUEST);
218 DCL_CONST(long, "TYPE_RESPONSE", HTTP_MSG_RESPONSE);
219 #endif
220
221 HTTP_LONG_CONSTANT("HTTP_MSG_NONE", HTTP_MSG_NONE);
222 HTTP_LONG_CONSTANT("HTTP_MSG_REQUEST", HTTP_MSG_REQUEST);
223 HTTP_LONG_CONSTANT("HTTP_MSG_RESPONSE", HTTP_MSG_RESPONSE);
224
225 return SUCCESS;
226 }
227
228 void _http_message_object_reverse(zval *this_ptr, zval *return_value TSRMLS_DC)
229 {
230 int i;
231 getObject(http_message_object, obj);
232
233 /* count */
234 http_message_count(i, obj->message);
235
236 if (i > 1) {
237 zval o;
238 zend_object_value *ovalues = NULL;
239 http_message_object **objects = NULL;
240 int last = i - 1;
241
242 objects = ecalloc(i, sizeof(http_message_object *));
243 ovalues = ecalloc(i, sizeof(zend_object_value));
244
245 /* we are the first message */
246 objects[0] = obj;
247 ovalues[0] = getThis()->value.obj;
248
249 /* fetch parents */
250 INIT_PZVAL(&o);
251 o.type = IS_OBJECT;
252 for (i = 1; obj->parent.handle; ++i) {
253 o.value.obj = obj->parent;
254 ovalues[i] = o.value.obj;
255 objects[i] = obj = zend_object_store_get_object(&o TSRMLS_CC);
256 }
257
258 /* reorder parents */
259 for (last = --i; i; --i) {
260 objects[i]->message->parent = objects[i-1]->message;
261 objects[i]->parent = ovalues[i-1];
262 }
263 objects[0]->message->parent = NULL;
264 objects[0]->parent.handle = 0;
265 objects[0]->parent.handlers = NULL;
266
267 /* add ref (why?) */
268 Z_OBJ_ADDREF_P(getThis());
269 RETVAL_OBJVAL(ovalues[last], 1);
270
271 efree(objects);
272 efree(ovalues);
273 } else {
274 RETURN_ZVAL(getThis(), 1, 0);
275 }
276 }
277
278 void _http_message_object_prepend_ex(zval *this_ptr, zval *prepend, zend_bool top TSRMLS_DC)
279 {
280 zval m;
281 http_message *save_parent_msg = NULL;
282 zend_object_value save_parent_obj = {0, NULL};
283 getObject(http_message_object, obj);
284 getObjectEx(http_message_object, prepend_obj, prepend);
285
286 INIT_PZVAL(&m);
287 m.type = IS_OBJECT;
288
289 if (!top) {
290 save_parent_obj = obj->parent;
291 save_parent_msg = obj->message->parent;
292 } else {
293 /* iterate to the most parent object */
294 while (obj->parent.handle) {
295 m.value.obj = obj->parent;
296 obj = zend_object_store_get_object(&m TSRMLS_CC);
297 }
298 }
299
300 /* prepend */
301 obj->parent = prepend->value.obj;
302 obj->message->parent = prepend_obj->message;
303
304 /* add ref */
305 zend_objects_store_add_ref(prepend TSRMLS_CC);
306 while (prepend_obj->parent.handle) {
307 m.value.obj = prepend_obj->parent;
308 zend_objects_store_add_ref(&m TSRMLS_CC);
309 prepend_obj = zend_object_store_get_object(&m TSRMLS_CC);
310 }
311
312 if (!top) {
313 prepend_obj->parent = save_parent_obj;
314 prepend_obj->message->parent = save_parent_msg;
315 }
316 }
317
318 zend_object_value _http_message_object_new(zend_class_entry *ce TSRMLS_DC)
319 {
320 return http_message_object_new_ex(ce, NULL, NULL);
321 }
322
323 zend_object_value _http_message_object_new_ex(zend_class_entry *ce, http_message *msg, http_message_object **ptr TSRMLS_DC)
324 {
325 zend_object_value ov;
326 http_message_object *o;
327
328 o = ecalloc(1, sizeof(http_message_object));
329 o->zo.ce = ce;
330
331 if (ptr) {
332 *ptr = o;
333 }
334
335 if (msg) {
336 o->message = msg;
337 if (msg->parent) {
338 o->parent = http_message_object_new_ex(ce, msg->parent, NULL);
339 }
340 }
341
342 ALLOC_HASHTABLE(OBJ_PROP(o));
343 zend_hash_init(OBJ_PROP(o), 0, NULL, ZVAL_PTR_DTOR, 0);
344
345 ov.handle = putObject(http_message_object, o);
346 ov.handlers = &http_message_object_handlers;
347
348 return ov;
349 }
350
351 zend_object_value _http_message_object_clone_obj(zval *this_ptr TSRMLS_DC)
352 {
353 getObject(http_message_object, obj);
354 return http_message_object_new_ex(Z_OBJCE_P(this_ptr), http_message_dup(obj->message), NULL);
355 }
356
357 void _http_message_object_free(zend_object *object TSRMLS_DC)
358 {
359 http_message_object *o = (http_message_object *) object;
360
361 if (OBJ_PROP(o)) {
362 zend_hash_destroy(OBJ_PROP(o));
363 FREE_HASHTABLE(OBJ_PROP(o));
364 }
365 if (o->message) {
366 http_message_dtor(o->message);
367 efree(o->message);
368 }
369 if (o->parent.handle) {
370 zval p;
371
372 INIT_PZVAL(&p);
373 p.type = IS_OBJECT;
374 p.value.obj = o->parent;
375 zend_objects_store_del_ref(&p TSRMLS_CC);
376 }
377 efree(o);
378 }
379
380 static zval *_http_message_object_read_prop(zval *object, zval *member, int type TSRMLS_DC)
381 {
382 getObjectEx(http_message_object, obj, object);
383 http_message *msg = obj->message;
384 zval *return_value;
385 #ifdef WONKY
386 ulong h = zend_get_hash_value(Z_STRVAL_P(member), Z_STRLEN_P(member)+1);
387 #else
388 zend_property_info *pinfo = zend_get_property_info(obj->zo.ce, member, 1 TSRMLS_CC);
389
390 if (!pinfo || ACC_PROP_PUBLIC(pinfo->flags)) {
391 return zend_get_std_object_handlers()->read_property(object, member, type TSRMLS_CC);
392 }
393 #endif
394
395 if (type == BP_VAR_W) {
396 zend_error(E_ERROR, "Cannot access HttpMessage properties by reference or array key/index");
397 return NULL;
398 }
399
400 ALLOC_ZVAL(return_value);
401 return_value->refcount = 0;
402 return_value->is_ref = 0;
403
404 #ifdef WONKY
405 switch (h)
406 #else
407 switch (pinfo->h)
408 #endif
409 {
410 case HTTP_MSG_PROPHASH_TYPE:
411 case HTTP_MSG_CHILD_PROPHASH_TYPE:
412 RETVAL_LONG(msg->type);
413 break;
414
415 case HTTP_MSG_PROPHASH_HTTP_VERSION:
416 case HTTP_MSG_CHILD_PROPHASH_HTTP_VERSION:
417 RETVAL_DOUBLE(msg->http.version);
418 break;
419
420 case HTTP_MSG_PROPHASH_BODY:
421 case HTTP_MSG_CHILD_PROPHASH_BODY:
422 phpstr_fix(PHPSTR(msg));
423 RETVAL_PHPSTR(PHPSTR(msg), 0, 1);
424 break;
425
426 case HTTP_MSG_PROPHASH_HEADERS:
427 case HTTP_MSG_CHILD_PROPHASH_HEADERS:
428 array_init(return_value);
429 zend_hash_copy(Z_ARRVAL_P(return_value), &msg->hdrs, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
430 break;
431
432 case HTTP_MSG_PROPHASH_PARENT_MESSAGE:
433 case HTTP_MSG_CHILD_PROPHASH_PARENT_MESSAGE:
434 if (msg->parent) {
435 RETVAL_OBJVAL(obj->parent, 1);
436 } else {
437 RETVAL_NULL();
438 }
439 break;
440
441 case HTTP_MSG_PROPHASH_REQUEST_METHOD:
442 case HTTP_MSG_CHILD_PROPHASH_REQUEST_METHOD:
443 if (HTTP_MSG_TYPE(REQUEST, msg) && msg->http.info.request.method) {
444 RETVAL_STRING(msg->http.info.request.method, 1);
445 } else {
446 RETVAL_NULL();
447 }
448 break;
449
450 case HTTP_MSG_PROPHASH_REQUEST_URL:
451 case HTTP_MSG_CHILD_PROPHASH_REQUEST_URL:
452 if (HTTP_MSG_TYPE(REQUEST, msg) && msg->http.info.request.url) {
453 RETVAL_STRING(msg->http.info.request.url, 1);
454 } else {
455 RETVAL_NULL();
456 }
457 break;
458
459 case HTTP_MSG_PROPHASH_RESPONSE_CODE:
460 case HTTP_MSG_CHILD_PROPHASH_RESPONSE_CODE:
461 if (HTTP_MSG_TYPE(RESPONSE, msg)) {
462 RETVAL_LONG(msg->http.info.response.code);
463 } else {
464 RETVAL_NULL();
465 }
466 break;
467
468 case HTTP_MSG_PROPHASH_RESPONSE_STATUS:
469 case HTTP_MSG_CHILD_PROPHASH_RESPONSE_STATUS:
470 if (HTTP_MSG_TYPE(RESPONSE, msg) && msg->http.info.response.status) {
471 RETVAL_STRING(msg->http.info.response.status, 1);
472 } else {
473 RETVAL_NULL();
474 }
475 break;
476
477 default:
478 #ifdef WONKY
479 return zend_get_std_object_handlers()->read_property(object, member, type TSRMLS_CC);
480 #else
481 RETVAL_NULL();
482 #endif
483 break;
484 }
485
486 return return_value;
487 }
488
489 static void _http_message_object_write_prop(zval *object, zval *member, zval *value TSRMLS_DC)
490 {
491 getObjectEx(http_message_object, obj, object);
492 http_message *msg = obj->message;
493 zval *cpy = NULL;
494 #ifdef WONKY
495 ulong h = zend_get_hash_value(Z_STRVAL_P(member), Z_STRLEN_P(member) + 1);
496 #else
497 zend_property_info *pinfo = zend_get_property_info(obj->zo.ce, member, 1 TSRMLS_CC);
498
499 if (!pinfo || ACC_PROP_PUBLIC(pinfo->flags)) {
500 zend_get_std_object_handlers()->write_property(object, member, value TSRMLS_CC);
501 return;
502 }
503 #endif
504
505 cpy = zval_copy(Z_TYPE_P(value), value);
506
507 #ifdef WONKY
508 switch (h)
509 #else
510 switch (pinfo->h)
511 #endif
512 {
513 case HTTP_MSG_PROPHASH_TYPE:
514 case HTTP_MSG_CHILD_PROPHASH_TYPE:
515 convert_to_long(cpy);
516 http_message_set_type(msg, Z_LVAL_P(cpy));
517 break;
518
519 case HTTP_MSG_PROPHASH_HTTP_VERSION:
520 case HTTP_MSG_CHILD_PROPHASH_HTTP_VERSION:
521 convert_to_double(cpy);
522 msg->http.version = Z_DVAL_P(cpy);
523 break;
524
525 case HTTP_MSG_PROPHASH_BODY:
526 case HTTP_MSG_CHILD_PROPHASH_BODY:
527 convert_to_string(cpy);
528 phpstr_dtor(PHPSTR(msg));
529 phpstr_from_string_ex(PHPSTR(msg), Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
530 break;
531
532 case HTTP_MSG_PROPHASH_HEADERS:
533 case HTTP_MSG_CHILD_PROPHASH_HEADERS:
534 convert_to_array(cpy);
535 zend_hash_clean(&msg->hdrs);
536 zend_hash_copy(&msg->hdrs, Z_ARRVAL_P(cpy), (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
537 break;
538
539 case HTTP_MSG_PROPHASH_PARENT_MESSAGE:
540 case HTTP_MSG_CHILD_PROPHASH_PARENT_MESSAGE:
541 if (Z_TYPE_P(value) == IS_OBJECT && instanceof_function(Z_OBJCE_P(value), http_message_object_ce TSRMLS_CC)) {
542 if (msg->parent) {
543 zval tmp;
544 tmp.value.obj = obj->parent;
545 Z_OBJ_DELREF(tmp);
546 }
547 Z_OBJ_ADDREF_P(value);
548 obj->parent = value->value.obj;
549 }
550 break;
551
552 case HTTP_MSG_PROPHASH_REQUEST_METHOD:
553 case HTTP_MSG_CHILD_PROPHASH_REQUEST_METHOD:
554 if (HTTP_MSG_TYPE(REQUEST, msg)) {
555 convert_to_string(cpy);
556 STR_SET(msg->http.info.request.method, estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy)));
557 }
558 break;
559
560 case HTTP_MSG_PROPHASH_REQUEST_URL:
561 case HTTP_MSG_CHILD_PROPHASH_REQUEST_URL:
562 if (HTTP_MSG_TYPE(REQUEST, msg)) {
563 convert_to_string(cpy);
564 STR_SET(msg->http.info.request.url, estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy)));
565 }
566 break;
567
568 case HTTP_MSG_PROPHASH_RESPONSE_CODE:
569 case HTTP_MSG_CHILD_PROPHASH_RESPONSE_CODE:
570 if (HTTP_MSG_TYPE(RESPONSE, msg)) {
571 convert_to_long(cpy);
572 msg->http.info.response.code = Z_LVAL_P(cpy);
573 }
574 break;
575
576 case HTTP_MSG_PROPHASH_RESPONSE_STATUS:
577 case HTTP_MSG_CHILD_PROPHASH_RESPONSE_STATUS:
578 if (HTTP_MSG_TYPE(RESPONSE, msg)) {
579 convert_to_string(cpy);
580 STR_SET(msg->http.info.response.status, estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy)));
581 }
582 break;
583
584 default:
585 #ifdef WONKY
586 zend_get_std_object_handlers()->write_property(object, member, value TSRMLS_CC);
587 #endif
588 break;
589 }
590 zval_free(&cpy);
591 }
592
593 static HashTable *_http_message_object_get_props(zval *object TSRMLS_DC)
594 {
595 zval *headers;
596 getObjectEx(http_message_object, obj, object);
597 http_message *msg = obj->message;
598 HashTable *props = OBJ_PROP(obj);
599 zval array, *parent;
600
601 INIT_ZARR(array, props);
602
603 #define ASSOC_PROP(array, ptype, name, val) \
604 { \
605 char *m_prop_name; \
606 int m_prop_len; \
607 zend_mangle_property_name(&m_prop_name, &m_prop_len, "*", 1, name, lenof(name), 0); \
608 add_assoc_ ##ptype## _ex(&array, m_prop_name, sizeof(name)+3, val); \
609 efree(m_prop_name); \
610 }
611 #define ASSOC_STRING(array, name, val) ASSOC_STRINGL(array, name, val, strlen(val))
612 #define ASSOC_STRINGL(array, name, val, len) \
613 { \
614 char *m_prop_name; \
615 int m_prop_len; \
616 zend_mangle_property_name(&m_prop_name, &m_prop_len, "*", 1, name, lenof(name), 0); \
617 add_assoc_stringl_ex(&array, m_prop_name, sizeof(name)+3, val, len, 1); \
618 efree(m_prop_name); \
619 }
620
621 ASSOC_PROP(array, long, "type", msg->type);
622 ASSOC_PROP(array, double, "httpVersion", msg->http.version);
623
624 switch (msg->type)
625 {
626 case HTTP_MSG_REQUEST:
627 ASSOC_PROP(array, long, "responseCode", 0);
628 ASSOC_STRINGL(array, "responseStatus", "", 0);
629 ASSOC_STRING(array, "requestMethod", msg->http.info.request.method);
630 ASSOC_STRING(array, "requestUrl", msg->http.info.request.url);
631 break;
632
633 case HTTP_MSG_RESPONSE:
634 ASSOC_PROP(array, long, "responseCode", msg->http.info.response.code);
635 ASSOC_STRING(array, "responseStatus", msg->http.info.response.status);
636 ASSOC_STRINGL(array, "requestMethod", "", 0);
637 ASSOC_STRINGL(array, "requestUrl", "", 0);
638 break;
639
640 case HTTP_MSG_NONE:
641 default:
642 ASSOC_PROP(array, long, "responseCode", 0);
643 ASSOC_STRINGL(array, "responseStatus", "", 0);
644 ASSOC_STRINGL(array, "requestMethod", "", 0);
645 ASSOC_STRINGL(array, "requestUrl", "", 0);
646 break;
647 }
648
649 MAKE_STD_ZVAL(headers);
650 array_init(headers);
651 zend_hash_copy(Z_ARRVAL_P(headers), &msg->hdrs, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
652 ASSOC_PROP(array, zval, "headers", headers);
653 ASSOC_STRINGL(array, "body", PHPSTR_VAL(msg), PHPSTR_LEN(msg));
654
655 MAKE_STD_ZVAL(parent);
656 if (msg->parent) {
657 ZVAL_OBJVAL(parent, obj->parent, 1);
658 } else {
659 ZVAL_NULL(parent);
660 }
661 ASSOC_PROP(array, zval, "parentMessage", parent);
662
663 return OBJ_PROP(obj);
664 }
665
666 /* ### USERLAND ### */
667
668 /* {{{ proto void HttpMessage::__construct([string message])
669 *
670 * Instantiate a new HttpMessage object.
671 *
672 * Accepts an optional string parameter containing a single or several
673 * consecutive HTTP messages. The constructed object will actually
674 * represent the *last* message of the passed string. If there were
675 * prior messages, those can be accessed by HttpMessage::getParentMessage().
676 *
677 * Throws HttpMalformedHeaderException.
678 */
679 PHP_METHOD(HttpMessage, __construct)
680 {
681 int length = 0;
682 char *message = NULL;
683
684 getObject(http_message_object, obj);
685
686 SET_EH_THROW_HTTP();
687 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &message, &length) && message && length) {
688 http_message *msg = obj->message;
689
690 http_message_dtor(msg);
691 if ((obj->message = http_message_parse_ex(msg, message, length))) {
692 if (obj->message->parent) {
693 obj->parent = http_message_object_new_ex(Z_OBJCE_P(getThis()), obj->message->parent, NULL);
694 }
695 } else {
696 obj->message = http_message_init(msg);
697 }
698 }
699 if (!obj->message) {
700 obj->message = http_message_new();
701 }
702 SET_EH_NORMAL();
703 }
704 /* }}} */
705
706 /* {{{ proto static HttpMessage HttpMessage::fromString(string raw_message[, string class_name = "HttpMessage"])
707 *
708 * Create an HttpMessage object from a string. Kind of a static constructor.
709 *
710 * Expects a string parameter containing a single or several consecutive
711 * HTTP messages. Accepts an optional string parameter specifying the class to use.
712 *
713 * Returns an HttpMessage object on success or NULL on failure.
714 *
715 * Throws HttpMalformedHeadersException.
716 */
717 PHP_METHOD(HttpMessage, fromString)
718 {
719 char *string = NULL, *class_name = NULL;
720 int length = 0, class_length = 0;
721 http_message *msg = NULL;
722
723 RETVAL_NULL();
724
725 SET_EH_THROW_HTTP();
726 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &string, &length, &class_name, &class_length)) {
727 if ((msg = http_message_parse(string, length))) {
728 zend_class_entry *ce = http_message_object_ce;
729
730 if (class_name && *class_name) {
731 ce = zend_fetch_class(class_name, class_length, ZEND_FETCH_CLASS_DEFAULT TSRMLS_CC);
732 if (ce && !instanceof_function(ce, http_message_object_ce TSRMLS_CC)) {
733 http_error_ex(HE_WARNING, HTTP_E_RUNTIME, "Class %s does not extend HttpMessage", class_name);
734 ce = NULL;
735 }
736 }
737 if (ce) {
738 RETVAL_OBJVAL(http_message_object_new_ex(ce, msg, NULL), 0);
739 }
740 }
741 }
742 SET_EH_NORMAL();
743 }
744 /* }}} */
745
746 /* {{{ proto string HttpMessage::getBody()
747 *
748 * Get the body of the parsed HttpMessage.
749 *
750 * Returns the message body as string.
751 */
752 PHP_METHOD(HttpMessage, getBody)
753 {
754 NO_ARGS;
755
756 IF_RETVAL_USED {
757 getObject(http_message_object, obj);
758 RETURN_PHPSTR(&obj->message->body, PHPSTR_FREE_NOT, 1);
759 }
760 }
761 /* }}} */
762
763 /* {{{ proto void HttpMessage::setBody(string body)
764 *
765 * Set the body of the HttpMessage.
766 * NOTE: Don't forget to update any headers accordingly.
767 *
768 * Expects a string parameter containing the new body of the message.
769 */
770 PHP_METHOD(HttpMessage, setBody)
771 {
772 char *body;
773 int len;
774 getObject(http_message_object, obj);
775
776 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &body, &len)) {
777 phpstr_dtor(PHPSTR(obj->message));
778 phpstr_from_string_ex(PHPSTR(obj->message), body, len);
779 }
780 }
781 /* }}} */
782
783 /* {{{ proto array HttpMessage::getHeaders()
784 *
785 * Get Message Headers.
786 *
787 * Returns an associative array containing the messages HTTP headers.
788 */
789 PHP_METHOD(HttpMessage, getHeaders)
790 {
791 NO_ARGS;
792
793 IF_RETVAL_USED {
794 zval headers;
795 getObject(http_message_object, obj);
796
797 INIT_ZARR(headers, &obj->message->hdrs);
798 array_init(return_value);
799 array_copy(&headers, return_value);
800 }
801 }
802 /* }}} */
803
804 /* {{{ proto void HttpMessage::setHeaders(array headers)
805 *
806 * Sets new headers.
807 *
808 * Expects an associative array as parameter containing the new HTTP headers,
809 * which will replace *all* previous HTTP headers of the message.
810 */
811 PHP_METHOD(HttpMessage, setHeaders)
812 {
813 zval *new_headers, old_headers;
814 getObject(http_message_object, obj);
815
816 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a/", &new_headers)) {
817 return;
818 }
819
820 zend_hash_clean(&obj->message->hdrs);
821 INIT_ZARR(old_headers, &obj->message->hdrs);
822 array_copy(new_headers, &old_headers);
823 }
824 /* }}} */
825
826 /* {{{ proto void HttpMessage::addHeaders(array headers[, bool append = false])
827 *
828 * Add headers. If append is true, headers with the same name will be separated, else overwritten.
829 *
830 * Expects an associative array as parameter containing the additional HTTP headers
831 * to add to the messages existing headers. If the optional bool parameter is true,
832 * and a header with the same name of one to add exists already, this respective
833 * header will be converted to an array containing both header values, otherwise
834 * it will be overwritten with the new header value.
835 */
836 PHP_METHOD(HttpMessage, addHeaders)
837 {
838 zval old_headers, *new_headers;
839 zend_bool append = 0;
840 getObject(http_message_object, obj);
841
842 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|b", &new_headers, &append)) {
843 return;
844 }
845
846 INIT_ZARR(old_headers, &obj->message->hdrs);
847 if (append) {
848 array_append(new_headers, &old_headers);
849 } else {
850 array_merge(new_headers, &old_headers);
851 }
852 }
853 /* }}} */
854
855 /* {{{ proto int HttpMessage::getType()
856 *
857 * Get Message Type. (HTTP_MSG_NONE|HTTP_MSG_REQUEST|HTTP_MSG_RESPONSE)
858 *
859 * Returns the HttpMessage::TYPE.
860 */
861 PHP_METHOD(HttpMessage, getType)
862 {
863 NO_ARGS;
864
865 IF_RETVAL_USED {
866 getObject(http_message_object, obj);
867 RETURN_LONG(obj->message->type);
868 }
869 }
870 /* }}} */
871
872 /* {{{ proto void HttpMessage::setType(int type)
873 *
874 * Set Message Type. (HTTP_MSG_NONE|HTTP_MSG_REQUEST|HTTP_MSG_RESPONSE)
875 *
876 * Expects an int parameter, the HttpMessage::TYPE.
877 */
878 PHP_METHOD(HttpMessage, setType)
879 {
880 long type;
881 getObject(http_message_object, obj);
882
883 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &type)) {
884 return;
885 }
886 http_message_set_type(obj->message, type);
887 }
888 /* }}} */
889
890 /* {{{ proto int HttpMessage::getResponseCode()
891 *
892 * Get the Response Code of the Message.
893 *
894 * Returns the HTTP response code if the message is of type
895 * HttpMessage::TYPE_RESPONSE, else FALSE.
896 */
897 PHP_METHOD(HttpMessage, getResponseCode)
898 {
899 NO_ARGS;
900
901 IF_RETVAL_USED {
902 getObject(http_message_object, obj);
903 HTTP_CHECK_MESSAGE_TYPE_RESPONSE(obj->message, RETURN_FALSE);
904 RETURN_LONG(obj->message->http.info.response.code);
905 }
906 }
907 /* }}} */
908
909 /* {{{ proto bool HttpMessage::setResponseCode(int code)
910 *
911 * Set the response code of an HTTP Response Message.
912 *
913 * Expects an int parameter with the HTTP response code.
914 *
915 * Returns TRUE on success, or FALSE if the message is not of type
916 * HttpMessage::TYPE_RESPONSE or the response code is out of range (100-510).
917 */
918 PHP_METHOD(HttpMessage, setResponseCode)
919 {
920 long code;
921 getObject(http_message_object, obj);
922
923 HTTP_CHECK_MESSAGE_TYPE_RESPONSE(obj->message, RETURN_FALSE);
924
925 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &code)) {
926 RETURN_FALSE;
927 }
928 if (code < 100 || code > 510) {
929 http_error_ex(HE_WARNING, HTTP_E_INVALID_PARAM, "Invalid response code (100-510): %ld", code);
930 RETURN_FALSE;
931 }
932
933 obj->message->http.info.response.code = code;
934 RETURN_TRUE;
935 }
936 /* }}} */
937
938 /* {{{ proto string HttpMessage::getResponseStatus()
939 *
940 * Get the Response Status of the message (i.e. the string following the response code).
941 *
942 * Returns the HTTP response status string if the message is of type
943 * HttpMessage::TYPE_RESPONSE, else FALSE.
944 */
945 PHP_METHOD(HttpMessage, getResponseStatus)
946 {
947 NO_ARGS;
948
949 IF_RETVAL_USED {
950 getObject(http_message_object, obj);
951 HTTP_CHECK_MESSAGE_TYPE_RESPONSE(obj->message, RETURN_FALSE);
952 RETURN_STRING(obj->message->http.info.response.status, 1);
953 }
954 }
955 /* }}} */
956
957 /* {{{ proto bool HttpMessage::setResponseStatus(string status)
958 *
959 * Set the Response Status of the HTTP message (i.e. the string following the response code).
960 *
961 * Expects a string parameter containing the response status text.
962 *
963 * Returns TRUE on success or FALSE if the message is not of type
964 * HttpMessage::TYPE_RESPONSE.
965 */
966 PHP_METHOD(HttpMessage, setResponseStatus)
967 {
968 char *status;
969 int status_len;
970 getObject(http_message_object, obj);
971
972 HTTP_CHECK_MESSAGE_TYPE_RESPONSE(obj->message, RETURN_FALSE);
973
974 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &status, &status_len)) {
975 RETURN_FALSE;
976 }
977 STR_SET(obj->message->http.info.response.status, estrdup(status));
978 RETURN_TRUE;
979 }
980 /* }}} */
981
982 /* {{{ proto string HttpMessage::getRequestMethod()
983 *
984 * Get the Request Method of the Message.
985 *
986 * Returns the request method name on success, or FALSE if the message is
987 * not of type HttpMessage::TYPE_REQUEST.
988 */
989 PHP_METHOD(HttpMessage, getRequestMethod)
990 {
991 NO_ARGS;
992
993 IF_RETVAL_USED {
994 getObject(http_message_object, obj);
995 HTTP_CHECK_MESSAGE_TYPE_REQUEST(obj->message, RETURN_FALSE);
996 RETURN_STRING(obj->message->http.info.request.method, 1);
997 }
998 }
999 /* }}} */
1000
1001 /* {{{ proto bool HttpMessage::setRequestMethod(string method)
1002 *
1003 * Set the Request Method of the HTTP Message.
1004 *
1005 * Expects a string parameter containing the request method name.
1006 *
1007 * Returns TRUE on success, or FALSE if the message is not of type
1008 * HttpMessage::TYPE_REQUEST or an invalid request method was supplied.
1009 */
1010 PHP_METHOD(HttpMessage, setRequestMethod)
1011 {
1012 char *method;
1013 int method_len;
1014 getObject(http_message_object, obj);
1015
1016 HTTP_CHECK_MESSAGE_TYPE_REQUEST(obj->message, RETURN_FALSE);
1017
1018 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &method, &method_len)) {
1019 RETURN_FALSE;
1020 }
1021 if (method_len < 1) {
1022 http_error(HE_WARNING, HTTP_E_INVALID_PARAM, "Cannot set HttpMessage::requestMethod to an empty string");
1023 RETURN_FALSE;
1024 }
1025 if (SUCCESS != http_check_method(method)) {
1026 http_error_ex(HE_WARNING, HTTP_E_REQUEST_METHOD, "Unkown request method: %s", method);
1027 RETURN_FALSE;
1028 }
1029
1030 STR_SET(obj->message->http.info.request.method, estrndup(method, method_len));
1031 RETURN_TRUE;
1032 }
1033 /* }}} */
1034
1035 /* {{{ proto string HttpMessage::getRequestUrl()
1036 *
1037 * Get the Request URL of the Message.
1038 *
1039 * Returns the request url as string on success, or FALSE if the message
1040 * is not of type HttpMessage::TYPE_REQUEST.
1041 */
1042 PHP_METHOD(HttpMessage, getRequestUrl)
1043 {
1044 NO_ARGS;
1045
1046 IF_RETVAL_USED {
1047 getObject(http_message_object, obj);
1048 HTTP_CHECK_MESSAGE_TYPE_REQUEST(obj->message, RETURN_FALSE);
1049 RETURN_STRING(obj->message->http.info.request.url, 1);
1050 }
1051 }
1052 /* }}} */
1053
1054 /* {{{ proto bool HttpMessage::setRequestUrl(string url)
1055 *
1056 * Set the Request URL of the HTTP Message.
1057 *
1058 * Expects a string parameters containing the request url.
1059 *
1060 * Returns TRUE on success, or FALSE if the message is not of type
1061 * HttpMessage::TYPE_REQUEST or supplied URL was empty.
1062 */
1063 PHP_METHOD(HttpMessage, setRequestUrl)
1064 {
1065 char *URI;
1066 int URIlen;
1067 getObject(http_message_object, obj);
1068
1069 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &URI, &URIlen)) {
1070 RETURN_FALSE;
1071 }
1072 HTTP_CHECK_MESSAGE_TYPE_REQUEST(obj->message, RETURN_FALSE);
1073 if (URIlen < 1) {
1074 http_error(HE_WARNING, HTTP_E_INVALID_PARAM, "Cannot set HttpMessage::requestUrl to an empty string");
1075 RETURN_FALSE;
1076 }
1077
1078 STR_SET(obj->message->http.info.request.url, estrndup(URI, URIlen));
1079 RETURN_TRUE;
1080 }
1081 /* }}} */
1082
1083 /* {{{ proto string HttpMessage::getHttpVersion()
1084 *
1085 * Get the HTTP Protocol Version of the Message.
1086 *
1087 * Returns the HTTP protocol version as string.
1088 */
1089 PHP_METHOD(HttpMessage, getHttpVersion)
1090 {
1091 NO_ARGS;
1092
1093 IF_RETVAL_USED {
1094 char ver[4] = {0};
1095 getObject(http_message_object, obj);
1096
1097 sprintf(ver, "%1.1lf", obj->message->http.version);
1098 RETURN_STRINGL(ver, 3, 1);
1099 }
1100 }
1101 /* }}} */
1102
1103 /* {{{ proto bool HttpMessage::setHttpVersion(string version)
1104 *
1105 * Set the HTTP Protocol version of the Message.
1106 *
1107 * Expects a string parameter containing the HTTP protocol version.
1108 *
1109 * Returns TRUE on success, or FALSE if supplied version is out of range (1.0/1.1).
1110 */
1111 PHP_METHOD(HttpMessage, setHttpVersion)
1112 {
1113 char v[4];
1114 zval *zv;
1115 getObject(http_message_object, obj);
1116
1117 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z/", &zv)) {
1118 return;
1119 }
1120
1121 convert_to_double(zv);
1122 sprintf(v, "%1.1lf", Z_DVAL_P(zv));
1123 if (strcmp(v, "1.0") && strcmp(v, "1.1")) {
1124 http_error_ex(HE_WARNING, HTTP_E_INVALID_PARAM, "Invalid HTTP protocol version (1.0 or 1.1): %s", v);
1125 RETURN_FALSE;
1126 }
1127
1128 obj->message->http.version = Z_DVAL_P(zv);
1129 RETURN_TRUE;
1130 }
1131 /* }}} */
1132
1133 /* {{{ proto HttpMessage HttpMessage::getParentMessage()
1134 *
1135 * Get parent Message.
1136 *
1137 * Returns the parent HttpMessage on success, or NULL if there's none.
1138 *
1139 * Throws HttpRuntimeException.
1140 */
1141 PHP_METHOD(HttpMessage, getParentMessage)
1142 {
1143 SET_EH_THROW_HTTP();
1144 NO_ARGS {
1145 getObject(http_message_object, obj);
1146
1147 if (obj->message->parent) {
1148 RETVAL_OBJVAL(obj->parent, 1);
1149 } else {
1150 http_error(HE_WARNING, HTTP_E_RUNTIME, "HttpMessage does not have a parent message");
1151 }
1152 }
1153 SET_EH_NORMAL();
1154 }
1155 /* }}} */
1156
1157 /* {{{ proto bool HttpMessage::send()
1158 *
1159 * Send the Message according to its type as Response or Request.
1160 * This provides limited functionality compared to HttpRequest and HttpResponse.
1161 *
1162 * Returns TRUE on success, or FALSE on failure.
1163 */
1164 PHP_METHOD(HttpMessage, send)
1165 {
1166 getObject(http_message_object, obj);
1167
1168 NO_ARGS;
1169
1170 RETURN_SUCCESS(http_message_send(obj->message));
1171 }
1172 /* }}} */
1173
1174 /* {{{ proto string HttpMessage::toString([bool include_parent = false])
1175 *
1176 * Get the string representation of the Message.
1177 *
1178 * Accepts a bool parameter which specifies whether the returned string
1179 * should also contain any parent messages.
1180 *
1181 * Returns the full message as string.
1182 */
1183 PHP_METHOD(HttpMessage, toString)
1184 {
1185 IF_RETVAL_USED {
1186 char *string;
1187 size_t length;
1188 zend_bool include_parent = 0;
1189 getObject(http_message_object, obj);
1190
1191 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &include_parent)) {
1192 RETURN_FALSE;
1193 }
1194
1195 if (include_parent) {
1196 http_message_serialize(obj->message, &string, &length);
1197 } else {
1198 http_message_tostring(obj->message, &string, &length);
1199 }
1200 RETURN_STRINGL(string, length, 0);
1201 }
1202 }
1203 /* }}} */
1204
1205 /* {{{ proto HttpRequest|HttpResponse HttpMessage::toMessageTypeObject(void)
1206 *
1207 * Creates an object regarding to the type of the message.
1208 *
1209 * Returns either an HttpRequest or HttpResponse object on success, or NULL on failure.
1210 *
1211 * Throws HttpRuntimeException, HttpMessageTypeException, HttpHeaderException.
1212 */
1213 PHP_METHOD(HttpMessage, toMessageTypeObject)
1214 {
1215 SET_EH_THROW_HTTP();
1216
1217 NO_ARGS;
1218
1219 IF_RETVAL_USED {
1220 getObject(http_message_object, obj);
1221
1222 switch (obj->message->type)
1223 {
1224 case HTTP_MSG_REQUEST:
1225 {
1226 #ifdef HTTP_HAVE_CURL
1227 int method;
1228 char *url;
1229 zval tmp, body, *array, *headers, *host = http_message_header(obj->message, "Host");
1230 php_url hurl, *purl = php_url_parse(obj->message->http.info.request.url);
1231
1232 MAKE_STD_ZVAL(array);
1233 array_init(array);
1234
1235 memset(&hurl, 0, sizeof(php_url));
1236 hurl.host = host ? Z_STRVAL_P(host) : NULL;
1237 http_build_url(HTTP_URL_REPLACE, purl, &hurl, NULL, &url, NULL);
1238 php_url_free(purl);
1239 add_assoc_string(array, "url", url, 0);
1240
1241 if ( (method = http_request_method_exists(1, 0, obj->message->http.info.request.method)) ||
1242 (method = http_request_method_register(obj->message->http.info.request.method, strlen(obj->message->http.info.request.method)))) {
1243 add_assoc_long(array, "method", method);
1244 }
1245
1246 if (10 == (int) (obj->message->http.version * 10)) {
1247 add_assoc_long(array, "protocol", CURL_HTTP_VERSION_1_0);
1248 }
1249
1250 MAKE_STD_ZVAL(headers);
1251 array_init(headers);
1252 INIT_ZARR(tmp, &obj->message->hdrs);
1253 array_copy(&tmp, headers);
1254 add_assoc_zval(array, "headers", headers);
1255
1256 object_init_ex(return_value, http_request_object_ce);
1257 zend_call_method_with_1_params(&return_value, http_request_object_ce, NULL, "setoptions", NULL, array);
1258 zval_ptr_dtor(&array);
1259
1260 INIT_PZVAL(&body);
1261 ZVAL_STRINGL(&body, PHPSTR_VAL(obj->message), PHPSTR_LEN(obj->message), 0);
1262 zend_call_method_with_1_params(&return_value, http_request_object_ce, NULL, "setrawpostdata", NULL, &body);
1263 #else
1264 http_error(HE_WARNING, HTTP_E_RUNTIME, "Cannot transform HttpMessage to HttpRequest (missing curl support)");
1265 #endif
1266 }
1267 break;
1268
1269 case HTTP_MSG_RESPONSE:
1270 {
1271 #ifndef WONKY
1272 HashPosition pos1, pos2;
1273 ulong idx;
1274 uint key_len;
1275 char *key = NULL;
1276 zval **header, **h, *body;
1277
1278 if (obj->message->http.info.response.code) {
1279 http_send_status(obj->message->http.info.response.code);
1280 }
1281
1282 object_init_ex(return_value, http_response_object_ce);
1283
1284 FOREACH_HASH_KEYLENVAL(pos1, &obj->message->hdrs, key, key_len, idx, header) {
1285 if (key) {
1286 zval zkey;
1287
1288 INIT_PZVAL(&zkey);
1289 ZVAL_STRINGL(&zkey, key, key_len, 0);
1290
1291 switch (Z_TYPE_PP(header))
1292 {
1293 case IS_ARRAY:
1294 case IS_OBJECT:
1295 FOREACH_HASH_VAL(pos2, HASH_OF(*header), h) {
1296 ZVAL_ADDREF(*h);
1297 zend_call_method_with_2_params(&return_value, http_response_object_ce, NULL, "setheader", NULL, &zkey, *h);
1298 zval_ptr_dtor(h);
1299 }
1300 break;
1301
1302 default:
1303 ZVAL_ADDREF(*header);
1304 zend_call_method_with_2_params(&return_value, http_response_object_ce, NULL, "setheader", NULL, &zkey, *header);
1305 zval_ptr_dtor(header);
1306 break;
1307 }
1308 key = NULL;
1309 }
1310 }
1311
1312 MAKE_STD_ZVAL(body);
1313 ZVAL_STRINGL(body, PHPSTR_VAL(obj->message), PHPSTR_LEN(obj->message), 1);
1314 zend_call_method_with_1_params(&return_value, http_response_object_ce, NULL, "setdata", NULL, body);
1315 zval_ptr_dtor(&body);
1316 #else
1317 http_error(HE_WARNING, HTTP_E_RUNTIME, "Cannot transform HttpMessage to HttpResponse (need PHP 5.1+)");
1318 #endif
1319 }
1320 break;
1321
1322 default:
1323 http_error(HE_WARNING, HTTP_E_MESSAGE_TYPE, "HttpMessage is neither of type HttpMessage::TYPE_REQUEST nor HttpMessage::TYPE_RESPONSE");
1324 break;
1325 }
1326 }
1327 SET_EH_NORMAL();
1328 }
1329 /* }}} */
1330
1331 /* {{{ proto int HttpMessage::count()
1332 *
1333 * Implements Countable.
1334 *
1335 * Returns the number of parent messages + 1.
1336 */
1337 PHP_METHOD(HttpMessage, count)
1338 {
1339 NO_ARGS {
1340 long i;
1341 getObject(http_message_object, obj);
1342
1343 http_message_count(i, obj->message);
1344 RETURN_LONG(i);
1345 }
1346 }
1347 /* }}} */
1348
1349 /* {{{ proto string HttpMessage::serialize()
1350 *
1351 * Implements Serializable.
1352 *
1353 * Returns the serialized representation of the HttpMessage.
1354 */
1355 PHP_METHOD(HttpMessage, serialize)
1356 {
1357 NO_ARGS {
1358 char *string;
1359 size_t length;
1360 getObject(http_message_object, obj);
1361
1362 http_message_serialize(obj->message, &string, &length);
1363 RETURN_STRINGL(string, length, 0);
1364 }
1365 }
1366 /* }}} */
1367
1368 /* {{{ proto void HttpMessage::unserialize(string serialized)
1369 *
1370 * Implements Serializable.
1371 *
1372 * Re-constructs the HttpMessage based upon the serialized string.
1373 */
1374 PHP_METHOD(HttpMessage, unserialize)
1375 {
1376 int length;
1377 char *serialized;
1378 getObject(http_message_object, obj);
1379
1380 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &serialized, &length)) {
1381 http_message_dtor(obj->message);
1382 if (!http_message_parse_ex(obj->message, serialized, (size_t) length)) {
1383 http_error(HE_ERROR, HTTP_E_RUNTIME, "Could not unserialize HttpMessage");
1384 http_message_init(obj->message);
1385 }
1386 }
1387 }
1388 /* }}} */
1389
1390 /* {{{ proto HttpMessage HttpMessage::detach(void)
1391 *
1392 * Returns a clone of an HttpMessage object detached from any parent messages.
1393 */
1394 PHP_METHOD(HttpMessage, detach)
1395 {
1396 http_info info;
1397 http_message *msg;
1398 getObject(http_message_object, obj);
1399
1400 NO_ARGS;
1401
1402 info.type = obj->message->type;
1403 memcpy(&HTTP_INFO(&info), &HTTP_INFO(obj->message), sizeof(struct http_info));
1404
1405 msg = http_message_new();
1406 http_message_set_info(msg, &info);
1407
1408 zend_hash_copy(&msg->hdrs, &obj->message->hdrs, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
1409 phpstr_append(&msg->body, PHPSTR_VAL(obj->message), PHPSTR_LEN(obj->message));
1410
1411 RETVAL_OBJVAL(http_message_object_new_ex(Z_OBJCE_P(getThis()), msg, NULL), 0);
1412 }
1413 /* }}} */
1414
1415 /* {{{ proto void HttpMessage::prepend(HttpMessage message[, bool top = true])
1416 *
1417 * Prepends message(s) to the HTTP message.
1418 *
1419 * Expects an HttpMessage object as parameter.
1420 *
1421 * Throws HttpInvalidParamException if the message is located within the same message chain.
1422 */
1423 PHP_METHOD(HttpMessage, prepend)
1424 {
1425 zval *prepend;
1426 zend_bool top = 1;
1427
1428 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|b", &prepend, http_message_object_ce, &top)) {
1429 http_message *msg[2];
1430 getObject(http_message_object, obj);
1431 getObjectEx(http_message_object, prepend_obj, prepend);
1432
1433 /* safety check */
1434 for (msg[0] = obj->message; msg[0]; msg[0] = msg[0]->parent) {
1435 for (msg[1] = prepend_obj->message; msg[1]; msg[1] = msg[1]->parent) {
1436 if (msg[0] == msg[1]) {
1437 http_error(HE_THROW, HTTP_E_INVALID_PARAM, "Cannot prepend a message located within the same message chain");
1438 return;
1439 }
1440 }
1441 }
1442
1443 http_message_object_prepend_ex(getThis(), prepend, top);
1444 }
1445 }
1446 /* }}} */
1447
1448 /* {{{ proto HttpMessage HttpMessage::reverse()
1449 *
1450 * Reorders the message chain in reverse order.
1451 *
1452 * Returns the most parent HttpMessage object.
1453 */
1454 PHP_METHOD(HttpMessage, reverse)
1455 {
1456 NO_ARGS {
1457 http_message_object_reverse(getThis(), return_value);
1458 }
1459 }
1460 /* }}} */
1461
1462 /* {{{ proto void HttpMessage::rewind(void)
1463 *
1464 * Implements Iterator.
1465 */
1466 PHP_METHOD(HttpMessage, rewind)
1467 {
1468 NO_ARGS {
1469 getObject(http_message_object, obj);
1470
1471 if (obj->iterator) {
1472 zval_ptr_dtor(&obj->iterator);
1473 }
1474 ZVAL_ADDREF(getThis());
1475 obj->iterator = getThis();
1476 }
1477 }
1478 /* }}} */
1479
1480 /* {{{ proto bool HttpMessage::valid(void)
1481 *
1482 * Implements Iterator.
1483 */
1484 PHP_METHOD(HttpMessage, valid)
1485 {
1486 NO_ARGS {
1487 getObject(http_message_object, obj);
1488
1489 RETURN_BOOL(obj->iterator != NULL);
1490 }
1491 }
1492 /* }}} */
1493
1494 /* {{{ proto void HttpMessage::next(void)
1495 *
1496 * Implements Iterator.
1497 */
1498 PHP_METHOD(HttpMessage, next)
1499 {
1500 NO_ARGS {
1501 getObject(http_message_object, obj);
1502 getObjectEx(http_message_object, itr, obj->iterator);
1503
1504 if (itr && itr->parent.handle) {
1505 zval *old = obj->iterator;
1506 MAKE_STD_ZVAL(obj->iterator);
1507 ZVAL_OBJVAL(obj->iterator, itr->parent, 1);
1508 zval_ptr_dtor(&old);
1509 } else {
1510 zval_ptr_dtor(&obj->iterator);
1511 obj->iterator = NULL;
1512 }
1513 }
1514 }
1515 /* }}} */
1516
1517 /* {{{ proto int HttpMessage::key(void)
1518 *
1519 * Implements Iterator.
1520 */
1521 PHP_METHOD(HttpMessage, key)
1522 {
1523 NO_ARGS {
1524 getObject(http_message_object, obj);
1525
1526 RETURN_LONG(obj->iterator ? obj->iterator->value.obj.handle:0);
1527 }
1528 }
1529 /* }}} */
1530
1531 /* {{{ proto HttpMessage HttpMessage::current(void)
1532 *
1533 * Implements Iterator.
1534 */
1535 PHP_METHOD(HttpMessage, current)
1536 {
1537 NO_ARGS {
1538 getObject(http_message_object, obj);
1539
1540 if (obj->iterator) {
1541 RETURN_ZVAL(obj->iterator, 1, 0);
1542 }
1543 }
1544 }
1545 /* }}} */
1546
1547 #endif /* ZEND_ENGINE_2 */
1548
1549 /*
1550 * Local variables:
1551 * tab-width: 4
1552 * c-basic-offset: 4
1553 * End:
1554 * vim600: noet sw=4 ts=4 fdm=marker
1555 * vim<600: noet sw=4 ts=4
1556 */
1557