build and file maintenance
[m6w6/ext-http] / php_http_url.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-2011, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #ifndef PHP_HTTP_URL_H
14 #define PHP_HTTP_URL_H
15
16 #include <ext/standard/url.h>
17
18 #define PHP_HTTP_URL_REPLACE 0x000
19 #define PHP_HTTP_URL_JOIN_PATH 0x001
20 #define PHP_HTTP_URL_JOIN_QUERY 0x002
21 #define PHP_HTTP_URL_STRIP_USER 0x004
22 #define PHP_HTTP_URL_STRIP_PASS 0x008
23 #define PHP_HTTP_URL_STRIP_AUTH (PHP_HTTP_URL_STRIP_USER|PHP_HTTP_URL_STRIP_PASS)
24 #define PHP_HTTP_URL_STRIP_PORT 0x020
25 #define PHP_HTTP_URL_STRIP_PATH 0x040
26 #define PHP_HTTP_URL_STRIP_QUERY 0x080
27 #define PHP_HTTP_URL_STRIP_FRAGMENT 0x100
28 #define PHP_HTTP_URL_STRIP_ALL ( \
29 PHP_HTTP_URL_STRIP_AUTH | \
30 PHP_HTTP_URL_STRIP_PORT | \
31 PHP_HTTP_URL_STRIP_PATH | \
32 PHP_HTTP_URL_STRIP_QUERY | \
33 PHP_HTTP_URL_STRIP_FRAGMENT \
34 )
35 #define PHP_HTTP_URL_FROM_ENV 0x1000
36
37 PHP_HTTP_API void php_http_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);
38 PHP_HTTP_API char *php_http_url_absolute(const char *url, int flags TSRMLS_DC);
39
40 PHP_HTTP_API STATUS php_http_url_encode_hash(HashTable *hash, const char *pre_encoded_str, size_t pre_encoded_len, char **encoded_str, size_t *encoded_len TSRMLS_DC);
41 PHP_HTTP_API STATUS php_http_url_encode_hash_ex(HashTable *ht, php_http_buffer_t *str, const char *arg_sep_str, size_t arg_sep_len, const char *val_sep_str, size_t val_sep_len, const char *prefix_str, size_t prefix_len TSRMLS_DC);
42
43 static inline void php_http_url_argsep(const char **str, size_t *len TSRMLS_DC)
44 {
45 *str = INI_STR("arg_separator.output");
46 *len = strlen(*str);
47
48 if (!*len) {
49 *str = PHP_HTTP_URL_ARGSEP;
50 *len = lenof(PHP_HTTP_URL_ARGSEP);
51 }
52 }
53
54 static inline php_url *php_http_url_from_struct(php_url *url, HashTable *ht TSRMLS_DC)
55 {
56 zval **e;
57
58 if (!url) {
59 url = emalloc(sizeof(*url));
60 }
61 memset(url, 0, sizeof(*url));
62
63 if (SUCCESS == zend_hash_find(ht, "scheme", sizeof("scheme"), (void *) &e)) {
64 zval *cpy = php_http_ztyp(IS_STRING, *e);
65 url->scheme = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
66 zval_ptr_dtor(&cpy);
67 }
68 if (SUCCESS == zend_hash_find(ht, "user", sizeof("user"), (void *) &e)) {
69 zval *cpy = php_http_ztyp(IS_STRING, *e);
70 url->user = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
71 zval_ptr_dtor(&cpy);
72 }
73 if (SUCCESS == zend_hash_find(ht, "pass", sizeof("pass"), (void *) &e)) {
74 zval *cpy = php_http_ztyp(IS_STRING, *e);
75 url->pass = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
76 zval_ptr_dtor(&cpy);
77 }
78 if (SUCCESS == zend_hash_find(ht, "host", sizeof("host"), (void *) &e)) {
79 zval *cpy = php_http_ztyp(IS_STRING, *e);
80 url->host = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
81 zval_ptr_dtor(&cpy);
82 }
83 if (SUCCESS == zend_hash_find(ht, "path", sizeof("path"), (void *) &e)) {
84 zval *cpy = php_http_ztyp(IS_STRING, *e);
85 url->path = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
86 zval_ptr_dtor(&cpy);
87 }
88 if (SUCCESS == zend_hash_find(ht, "query", sizeof("query"), (void *) &e)) {
89 zval *cpy = php_http_ztyp(IS_STRING, *e);
90 url->query = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
91 zval_ptr_dtor(&cpy);
92 }
93 if (SUCCESS == zend_hash_find(ht, "fragment", sizeof("fragment"), (void *) &e)) {
94 zval *cpy = php_http_ztyp(IS_STRING, *e);
95 url->fragment = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
96 zval_ptr_dtor(&cpy);
97 }
98 if (SUCCESS == zend_hash_find(ht, "port", sizeof("port"), (void *) &e)) {
99 zval *cpy = php_http_ztyp(IS_LONG, *e);
100 url->port = (unsigned short) Z_LVAL_P(cpy);
101 zval_ptr_dtor(&cpy);
102 }
103
104 return url;
105 }
106
107 static inline HashTable *php_http_url_to_struct(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_PZVAL_ARRAY((&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 extern zend_class_entry *php_http_url_class_entry;
156 extern zend_function_entry php_http_url_method_entry[];
157
158 #define php_http_url_object_new php_http_object_new
159 #define php_http_url_object_new_ex php_http_object_new_ex
160
161 PHP_METHOD(HttpUrl, __construct);
162 PHP_METHOD(HttpUrl, toString);
163
164 extern PHP_MINIT_FUNCTION(http_url);
165
166 #endif
167
168 /*
169 * Local variables:
170 * tab-width: 4
171 * c-basic-offset: 4
172 * End:
173 * vim600: noet sw=4 ts=4 fdm=marker
174 * vim<600: noet sw=4 ts=4
175 */
176