http\Env::parseParams()
[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-2010, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id: php_http_url_api.h 292841 2009-12-31 08:48:57Z mike $ */
14
15 #ifndef PHP_HTTP_URL_H
16 #define PHP_HTTP_URL_H
17
18 #include <ext/standard/url.h>
19
20 #define PHP_HTTP_URL_REPLACE 0x000
21 #define PHP_HTTP_URL_JOIN_PATH 0x001
22 #define PHP_HTTP_URL_JOIN_QUERY 0x002
23 #define PHP_HTTP_URL_STRIP_USER 0x004
24 #define PHP_HTTP_URL_STRIP_PASS 0x008
25 #define PHP_HTTP_URL_STRIP_AUTH (PHP_HTTP_URL_STRIP_USER|PHP_HTTP_URL_STRIP_PASS)
26 #define PHP_HTTP_URL_STRIP_PORT 0x020
27 #define PHP_HTTP_URL_STRIP_PATH 0x040
28 #define PHP_HTTP_URL_STRIP_QUERY 0x080
29 #define PHP_HTTP_URL_STRIP_FRAGMENT 0x100
30 #define PHP_HTTP_URL_STRIP_ALL ( \
31 PHP_HTTP_URL_STRIP_AUTH | \
32 PHP_HTTP_URL_STRIP_PORT | \
33 PHP_HTTP_URL_STRIP_PATH | \
34 PHP_HTTP_URL_STRIP_QUERY | \
35 PHP_HTTP_URL_STRIP_FRAGMENT \
36 )
37 #define PHP_HTTP_URL_FROM_ENV 0x1000
38
39 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);
40 PHP_HTTP_API char *php_http_url_absolute(const char *url, int flags TSRMLS_DC);
41
42 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);
43 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);
44
45 static inline void php_http_url_argsep(const char **str, size_t *len TSRMLS_DC)
46 {
47 *str = INI_STR("arg_separator.output");
48 *len = strlen(*str);
49
50 if (!*len) {
51 *str = PHP_HTTP_URL_ARGSEP;
52 *len = lenof(PHP_HTTP_URL_ARGSEP);
53 }
54 }
55
56 static inline php_url *php_http_url_from_struct(php_url *url, HashTable *ht TSRMLS_DC)
57 {
58 zval **e;
59
60 if (!url) {
61 url = emalloc(sizeof(*url));
62 }
63 memset(url, 0, sizeof(*url));
64
65 if (SUCCESS == zend_hash_find(ht, "scheme", sizeof("scheme"), (void *) &e)) {
66 zval *cpy = php_http_ztyp(IS_STRING, *e);
67 url->scheme = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
68 zval_ptr_dtor(&cpy);
69 }
70 if (SUCCESS == zend_hash_find(ht, "user", sizeof("user"), (void *) &e)) {
71 zval *cpy = php_http_ztyp(IS_STRING, *e);
72 url->user = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
73 zval_ptr_dtor(&cpy);
74 }
75 if (SUCCESS == zend_hash_find(ht, "pass", sizeof("pass"), (void *) &e)) {
76 zval *cpy = php_http_ztyp(IS_STRING, *e);
77 url->pass = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
78 zval_ptr_dtor(&cpy);
79 }
80 if (SUCCESS == zend_hash_find(ht, "host", sizeof("host"), (void *) &e)) {
81 zval *cpy = php_http_ztyp(IS_STRING, *e);
82 url->host = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
83 zval_ptr_dtor(&cpy);
84 }
85 if (SUCCESS == zend_hash_find(ht, "path", sizeof("path"), (void *) &e)) {
86 zval *cpy = php_http_ztyp(IS_STRING, *e);
87 url->path = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
88 zval_ptr_dtor(&cpy);
89 }
90 if (SUCCESS == zend_hash_find(ht, "query", sizeof("query"), (void *) &e)) {
91 zval *cpy = php_http_ztyp(IS_STRING, *e);
92 url->query = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
93 zval_ptr_dtor(&cpy);
94 }
95 if (SUCCESS == zend_hash_find(ht, "fragment", sizeof("fragment"), (void *) &e)) {
96 zval *cpy = php_http_ztyp(IS_STRING, *e);
97 url->fragment = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
98 zval_ptr_dtor(&cpy);
99 }
100 if (SUCCESS == zend_hash_find(ht, "port", sizeof("port"), (void *) &e)) {
101 zval *cpy = php_http_ztyp(IS_LONG, *e);
102 url->port = (unsigned short) Z_LVAL_P(cpy);
103 zval_ptr_dtor(&cpy);
104 }
105
106 return url;
107 }
108
109 static inline HashTable *php_http_url_to_struct(php_url *url, zval *strct TSRMLS_DC)
110 {
111 zval arr;
112
113 if (strct) {
114 switch (Z_TYPE_P(strct)) {
115 default:
116 zval_dtor(strct);
117 array_init(strct);
118 case IS_ARRAY:
119 case IS_OBJECT:
120 INIT_PZVAL_ARRAY((&arr), HASH_OF(strct));
121 }
122 } else {
123 INIT_PZVAL(&arr);
124 array_init(&arr);
125 }
126
127 if (url) {
128 if (url->scheme) {
129 add_assoc_string(&arr, "scheme", url->scheme, 1);
130 }
131 if (url->user) {
132 add_assoc_string(&arr, "user", url->user, 1);
133 }
134 if (url->pass) {
135 add_assoc_string(&arr, "pass", url->pass, 1);
136 }
137 if (url->host) {
138 add_assoc_string(&arr, "host", url->host, 1);
139 }
140 if (url->port) {
141 add_assoc_long(&arr, "port", (long) url->port);
142 }
143 if (url->path) {
144 add_assoc_string(&arr, "path", url->path, 1);
145 }
146 if (url->query) {
147 add_assoc_string(&arr, "query", url->query, 1);
148 }
149 if (url->fragment) {
150 add_assoc_string(&arr, "fragment", url->fragment, 1);
151 }
152 }
153
154 return Z_ARRVAL(arr);
155 }
156
157 extern zend_class_entry *php_http_url_class_entry;
158 extern zend_function_entry php_http_url_method_entry[];
159
160 #define php_http_url_object_new php_http_object_new
161 #define php_http_url_object_new_ex php_http_object_new_ex
162
163 PHP_METHOD(HttpUrl, __construct);
164 PHP_METHOD(HttpUrl, toString);
165
166 extern PHP_MINIT_FUNCTION(http_url);
167
168 #endif
169
170 /*
171 * Local variables:
172 * tab-width: 4
173 * c-basic-offset: 4
174 * End:
175 * vim600: noet sw=4 ts=4 fdm=marker
176 * vim<600: noet sw=4 ts=4
177 */
178