package.xml updates
[m6w6/ext-http] / php_http_url_api.h
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-2007, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_HTTP_URL_API_H
16 #define PHP_HTTP_URL_API_H
17
18 #include "ext/standard/url.h"
19
20 extern PHP_MINIT_FUNCTION(http_url);
21
22 #define http_absolute_url(u) _http_absolute_url_ex((u), HTTP_URL_REPLACE TSRMLS_CC)
23 #define http_absolute_url_ex(u, f) _http_absolute_url_ex((u), (f) TSRMLS_CC)
24 PHP_HTTP_API char *_http_absolute_url_ex(const char *url, int flags TSRMLS_DC);
25
26 #define HTTP_URL_REPLACE 0x000
27 #define HTTP_URL_JOIN_PATH 0x001
28 #define HTTP_URL_JOIN_QUERY 0x002
29 #define HTTP_URL_STRIP_USER 0x004
30 #define HTTP_URL_STRIP_PASS 0x008
31 #define HTTP_URL_STRIP_AUTH (HTTP_URL_STRIP_USER|HTTP_URL_STRIP_PASS)
32 #define HTTP_URL_STRIP_PORT 0x020
33 #define HTTP_URL_STRIP_PATH 0x040
34 #define HTTP_URL_STRIP_QUERY 0x080
35 #define HTTP_URL_STRIP_FRAGMENT 0x100
36 #define HTTP_URL_STRIP_ALL ( \
37 HTTP_URL_STRIP_AUTH | \
38 HTTP_URL_STRIP_PORT | \
39 HTTP_URL_STRIP_PATH | \
40 HTTP_URL_STRIP_QUERY | \
41 HTTP_URL_STRIP_FRAGMENT \
42 )
43 #define HTTP_URL_FROM_ENV 0x1000
44
45 #define http_build_url(f, o, n, p, s, l) _http_build_url((f), (o), (n), (p), (s), (l) TSRMLS_CC)
46 PHP_HTTP_API void _http_build_url(int flags, const php_url *old_url, const php_url *new_url, php_url **url_ptr, char **url_str, size_t *url_len TSRMLS_DC);
47
48 #define http_urlencode_hash(h, q) _http_urlencode_hash_ex((h), 1, NULL, 0, (q), NULL TSRMLS_CC)
49 #define http_urlencode_hash_ex(h, o, p, pl, q, ql) _http_urlencode_hash_ex((h), (o), (p), (pl), (q), (ql) TSRMLS_CC)
50 PHP_HTTP_API STATUS _http_urlencode_hash_ex(HashTable *hash, zend_bool override_argsep, char *pre_encoded_data, size_t pre_encoded_len, char **encoded_data, size_t *encoded_len TSRMLS_DC);
51
52 #define http_urlencode_hash_recursive(ht, s, as, al, pr, pl) _http_urlencode_hash_recursive((ht), (s), (as), (al), (pr), (pl) TSRMLS_CC)
53 PHP_HTTP_API STATUS _http_urlencode_hash_recursive(HashTable *ht, phpstr *str, const char *arg_sep, size_t arg_sep_len, const char *prefix, size_t prefix_len TSRMLS_DC);
54
55 #define http_url_from_struct(u, ht) _http_url_from_struct((u), (ht) TSRMLS_CC)
56 static inline php_url *_http_url_from_struct(php_url *url, HashTable *ht TSRMLS_DC)
57 {
58 zval **e;
59
60 if (!url) {
61 url = ecalloc(1, sizeof(php_url));
62 }
63
64 if ((SUCCESS == zend_hash_find(ht, "scheme", sizeof("scheme"), (void *) &e))
65 && (Z_TYPE_PP(e) == IS_STRING) && Z_STRLEN_PP(e)) {
66 url->scheme = estrndup(Z_STRVAL_PP(e), Z_STRLEN_PP(e));
67 }
68 if ((SUCCESS == zend_hash_find(ht, "user", sizeof("user"), (void *) &e))
69 && (Z_TYPE_PP(e) == IS_STRING) && Z_STRLEN_PP(e)) {
70 url->user = estrndup(Z_STRVAL_PP(e), Z_STRLEN_PP(e));
71 }
72 if ((SUCCESS == zend_hash_find(ht, "pass", sizeof("pass"), (void *) &e))
73 && (Z_TYPE_PP(e) == IS_STRING) && Z_STRLEN_PP(e)) {
74 url->pass = estrndup(Z_STRVAL_PP(e), Z_STRLEN_PP(e));
75 }
76 if ((SUCCESS == zend_hash_find(ht, "host", sizeof("host"), (void *) &e))
77 && (Z_TYPE_PP(e) == IS_STRING) && Z_STRLEN_PP(e)) {
78 url->host = estrndup(Z_STRVAL_PP(e), Z_STRLEN_PP(e));
79 }
80 if ((SUCCESS == zend_hash_find(ht, "path", sizeof("path"), (void *) &e))
81 && (Z_TYPE_PP(e) == IS_STRING) && Z_STRLEN_PP(e)) {
82 url->path = estrndup(Z_STRVAL_PP(e), Z_STRLEN_PP(e));
83 }
84 if ((SUCCESS == zend_hash_find(ht, "query", sizeof("query"), (void *) &e))
85 && (Z_TYPE_PP(e) == IS_STRING) && Z_STRLEN_PP(e)) {
86 url->query = estrndup(Z_STRVAL_PP(e), Z_STRLEN_PP(e));
87 }
88 if ((SUCCESS == zend_hash_find(ht, "fragment", sizeof("fragment"), (void *) &e))
89 && (Z_TYPE_PP(e) == IS_STRING) && Z_STRLEN_PP(e)) {
90 url->fragment = estrndup(Z_STRVAL_PP(e), Z_STRLEN_PP(e));
91 }
92 if (SUCCESS == zend_hash_find(ht, "port", sizeof("port"), (void *) &e)) {
93 if (Z_TYPE_PP(e) == IS_LONG) {
94 url->port = (unsigned short) Z_LVAL_PP(e);
95 } else {
96 zval *o = http_zsep(IS_LONG, *e);
97
98 url->port = (unsigned short) Z_LVAL_P(o);
99 zval_ptr_dtor(&o);
100 }
101 }
102
103 return url;
104 }
105
106 #define http_url_tostruct(u, strct) _http_url_tostruct((u), (strct) TSRMLS_CC)
107 static inline HashTable *_http_url_tostruct(php_url *url, zval *strct TSRMLS_DC)
108 {
109 zval arr;
110
111 if (strct) {
112 switch (Z_TYPE_P(strct)) {
113 default:
114 zval_dtor(strct);
115 array_init(strct);
116 case IS_ARRAY:
117 case IS_OBJECT:
118 INIT_ZARR(arr, HASH_OF(strct));
119 }
120 } else {
121 INIT_PZVAL(&arr);
122 array_init(&arr);
123 }
124
125 if (url) {
126 if (url->scheme) {
127 add_assoc_string(&arr, "scheme", url->scheme, 1);
128 }
129 if (url->user) {
130 add_assoc_string(&arr, "user", url->user, 1);
131 }
132 if (url->pass) {
133 add_assoc_string(&arr, "pass", url->pass, 1);
134 }
135 if (url->host) {
136 add_assoc_string(&arr, "host", url->host, 1);
137 }
138 if (url->port) {
139 add_assoc_long(&arr, "port", (long) url->port);
140 }
141 if (url->path) {
142 add_assoc_string(&arr, "path", url->path, 1);
143 }
144 if (url->query) {
145 add_assoc_string(&arr, "query", url->query, 1);
146 }
147 if (url->fragment) {
148 add_assoc_string(&arr, "fragment", url->fragment, 1);
149 }
150 }
151
152 return Z_ARRVAL(arr);
153 }
154
155 #endif
156
157 /*
158 * Local variables:
159 * tab-width: 4
160 * c-basic-offset: 4
161 * End:
162 * vim600: noet sw=4 ts=4 fdm=marker
163 * vim<600: noet sw=4 ts=4
164 */
165