bbb6177617e957acb3762570bdd7c893e011e381
[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 #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, zend_bool override_argsep, char *pre_encoded_data, size_t pre_encoded_len, char **encoded_data, size_t *encoded_len TSRMLS_DC);
41 PHP_HTTP_API STATUS php_http_url_encode_hash_recursive(HashTable *ht, php_http_buffer *str, const char *arg_sep, size_t arg_sep_len, const char *prefix, size_t prefix_len TSRMLS_DC);
42
43 static inline php_url *php_http_url_from_struct(php_url *url, HashTable *ht TSRMLS_DC)
44 {
45 zval **e;
46
47 if (!url) {
48 url = emalloc(sizeof(*url));
49 }
50 memset(url, 0, sizeof(*url));
51
52 if (SUCCESS == zend_hash_find(ht, "scheme", sizeof("scheme"), (void *) &e)) {
53 zval *cpy = php_http_zsep(IS_STRING, *e);
54 url->scheme = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
55 zval_ptr_dtor(&cpy);
56 }
57 if (SUCCESS == zend_hash_find(ht, "user", sizeof("user"), (void *) &e)) {
58 zval *cpy = php_http_zsep(IS_STRING, *e);
59 url->user = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
60 zval_ptr_dtor(&cpy);
61 }
62 if (SUCCESS == zend_hash_find(ht, "pass", sizeof("pass"), (void *) &e)) {
63 zval *cpy = php_http_zsep(IS_STRING, *e);
64 url->pass = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
65 zval_ptr_dtor(&cpy);
66 }
67 if (SUCCESS == zend_hash_find(ht, "host", sizeof("host"), (void *) &e)) {
68 zval *cpy = php_http_zsep(IS_STRING, *e);
69 url->host = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
70 zval_ptr_dtor(&cpy);
71 }
72 if (SUCCESS == zend_hash_find(ht, "path", sizeof("path"), (void *) &e)) {
73 zval *cpy = php_http_zsep(IS_STRING, *e);
74 url->path = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
75 zval_ptr_dtor(&cpy);
76 }
77 if (SUCCESS == zend_hash_find(ht, "query", sizeof("query"), (void *) &e)) {
78 zval *cpy = php_http_zsep(IS_STRING, *e);
79 url->query = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
80 zval_ptr_dtor(&cpy);
81 }
82 if (SUCCESS == zend_hash_find(ht, "fragment", sizeof("fragment"), (void *) &e)) {
83 zval *cpy = php_http_zsep(IS_STRING, *e);
84 url->fragment = estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy));
85 zval_ptr_dtor(&cpy);
86 }
87 if (SUCCESS == zend_hash_find(ht, "port", sizeof("port"), (void *) &e)) {
88 zval *cpy = php_http_zsep(IS_LONG, *e);
89 url->port = (unsigned short) Z_LVAL_P(cpy);
90 zval_ptr_dtor(&cpy);
91 }
92
93 return url;
94 }
95
96 static inline HashTable *php_http_url_to_struct(php_url *url, zval *strct TSRMLS_DC)
97 {
98 zval arr;
99
100 if (strct) {
101 switch (Z_TYPE_P(strct)) {
102 default:
103 zval_dtor(strct);
104 array_init(strct);
105 case IS_ARRAY:
106 case IS_OBJECT:
107 INIT_PZVAL_ARRAY((&arr), HASH_OF(strct));
108 }
109 } else {
110 INIT_PZVAL(&arr);
111 array_init(&arr);
112 }
113
114 if (url) {
115 if (url->scheme) {
116 add_assoc_string(&arr, "scheme", url->scheme, 1);
117 }
118 if (url->user) {
119 add_assoc_string(&arr, "user", url->user, 1);
120 }
121 if (url->pass) {
122 add_assoc_string(&arr, "pass", url->pass, 1);
123 }
124 if (url->host) {
125 add_assoc_string(&arr, "host", url->host, 1);
126 }
127 if (url->port) {
128 add_assoc_long(&arr, "port", (long) url->port);
129 }
130 if (url->path) {
131 add_assoc_string(&arr, "path", url->path, 1);
132 }
133 if (url->query) {
134 add_assoc_string(&arr, "query", url->query, 1);
135 }
136 if (url->fragment) {
137 add_assoc_string(&arr, "fragment", url->fragment, 1);
138 }
139 }
140
141 return Z_ARRVAL(arr);
142 }
143
144 extern zend_class_entry *php_http_url_class_entry;
145 extern zend_function_entry php_http_url_method_entry[];
146
147 #define php_http_url_object_new php_http_object_new
148 #define php_http_url_object_new_ex php_http_object_new_ex
149
150 PHP_METHOD(HttpUrl, __construct);
151 PHP_METHOD(HttpUrl, toString);
152
153 extern PHP_MINIT_FUNCTION(http_url);
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