fix bad merge; keys were serialized twice
[m6w6/ext-http] / php_http.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-2014, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #include "php_http_api.h"
14
15 #include <php_ini.h>
16 #include <ext/standard/info.h>
17
18 #include <zlib.h>
19
20 #if PHP_HTTP_HAVE_CURL
21 # include <curl/curl.h>
22 # if PHP_HTTP_HAVE_EVENT
23 # if PHP_HTTP_HAVE_EVENT2
24 # include <event2/event.h>
25 # include <event2/event_struct.h>
26 # else
27 # include <event.h>
28 # endif
29 # endif
30 #endif
31 #if PHP_HTTP_HAVE_IDN2
32 # include <idn2.h>
33 #elif PHP_HTTP_HAVE_IDN
34 # include <idna.h>
35 #endif
36
37 ZEND_DECLARE_MODULE_GLOBALS(php_http);
38
39 #ifdef COMPILE_DL_HTTP
40 ZEND_GET_MODULE(http)
41 #endif
42
43 zend_function_entry http_functions[] = {
44 EMPTY_FUNCTION_ENTRY
45 };
46
47 PHP_MINIT_FUNCTION(http);
48 PHP_MSHUTDOWN_FUNCTION(http);
49 PHP_RSHUTDOWN_FUNCTION(http);
50 PHP_MINFO_FUNCTION(http);
51
52 static zend_module_dep http_module_deps[] = {
53 ZEND_MOD_REQUIRED("raphf")
54 ZEND_MOD_REQUIRED("propro")
55 ZEND_MOD_REQUIRED("spl")
56 #ifdef PHP_HTTP_HAVE_HASH
57 ZEND_MOD_REQUIRED("hash")
58 #endif
59 #ifdef PHP_HTTP_HAVE_ICONV
60 ZEND_MOD_REQUIRED("iconv")
61 #endif
62 {NULL, NULL, NULL, 0}
63 };
64
65 zend_module_entry http_module_entry = {
66 STANDARD_MODULE_HEADER_EX,
67 NULL,
68 http_module_deps,
69 "http",
70 http_functions,
71 PHP_MINIT(http),
72 PHP_MSHUTDOWN(http),
73 NULL,
74 PHP_RSHUTDOWN(http),
75 PHP_MINFO(http),
76 PHP_PECL_HTTP_VERSION,
77 STANDARD_MODULE_PROPERTIES
78 };
79
80 int http_module_number;
81
82 #if PHP_DEBUG && !HAVE_GCOV
83 void _dpf(int type, const char *data, size_t length)
84 {
85 static const char _sym[] = "><><><";
86 if (type) {
87 int nwp = 0;
88 for (fprintf(stderr, "%c ", _sym[type-1]); length--; data++) {
89 int ip = PHP_HTTP_IS_CTYPE(print, *data);
90 if (!ip && *data != '\r' && *data != '\n') nwp = 1;
91 fprintf(stderr, ip?"%c":"\\x%02x", (int) (*data & 0xff));
92 if (!nwp && *data == '\n' && length) {
93 fprintf(stderr, "\n%c ", _sym[type-1]);
94 }
95 }
96 fprintf(stderr, "\n");
97 } else {
98 fprintf(stderr, "# %.*s\n", (int) length, data);
99 }
100 }
101 #endif
102
103 static void php_http_globals_init_once(zend_php_http_globals *G)
104 {
105 memset(G, 0, sizeof(*G));
106 }
107
108 #if 0
109 static inline void php_http_globals_init(zend_php_http_globals *G TSRMLS_DC)
110 {
111 }
112
113 static inline void php_http_globals_free(zend_php_http_globals *G TSRMLS_DC)
114 {
115 }
116 #endif
117
118 PHP_INI_BEGIN()
119 STD_PHP_INI_ENTRY("http.etag.mode", "crc32b", PHP_INI_ALL, OnUpdateString, env.etag_mode, zend_php_http_globals, php_http_globals)
120 PHP_INI_END()
121
122 PHP_MINIT_FUNCTION(http)
123 {
124 http_module_number = module_number;
125 ZEND_INIT_MODULE_GLOBALS(php_http, php_http_globals_init_once, NULL);
126 REGISTER_INI_ENTRIES();
127
128 if (0
129 || SUCCESS != PHP_MINIT_CALL(http_object)
130 || SUCCESS != PHP_MINIT_CALL(http_exception)
131 || SUCCESS != PHP_MINIT_CALL(http_cookie)
132 || SUCCESS != PHP_MINIT_CALL(http_encoding)
133 || SUCCESS != PHP_MINIT_CALL(http_filter)
134 || SUCCESS != PHP_MINIT_CALL(http_header)
135 || SUCCESS != PHP_MINIT_CALL(http_header_parser)
136 || SUCCESS != PHP_MINIT_CALL(http_message)
137 || SUCCESS != PHP_MINIT_CALL(http_message_parser)
138 || SUCCESS != PHP_MINIT_CALL(http_message_body)
139 || SUCCESS != PHP_MINIT_CALL(http_querystring)
140 || SUCCESS != PHP_MINIT_CALL(http_client)
141 || SUCCESS != PHP_MINIT_CALL(http_client_request)
142 || SUCCESS != PHP_MINIT_CALL(http_client_response)
143 #if PHP_HTTP_HAVE_CURL
144 || SUCCESS != PHP_MINIT_CALL(http_curl)
145 || SUCCESS != PHP_MINIT_CALL(http_client_curl)
146 #endif
147 || SUCCESS != PHP_MINIT_CALL(http_url)
148 || SUCCESS != PHP_MINIT_CALL(http_env)
149 || SUCCESS != PHP_MINIT_CALL(http_env_request)
150 || SUCCESS != PHP_MINIT_CALL(http_env_response)
151 || SUCCESS != PHP_MINIT_CALL(http_params)
152 ) {
153 return FAILURE;
154 }
155
156 return SUCCESS;
157 }
158
159
160
161 PHP_MSHUTDOWN_FUNCTION(http)
162 {
163 UNREGISTER_INI_ENTRIES();
164
165 if (0
166 || SUCCESS != PHP_MSHUTDOWN_CALL(http_message)
167 #if PHP_HTTP_HAVE_CURL
168 || SUCCESS != PHP_MSHUTDOWN_CALL(http_client_curl)
169 || SUCCESS != PHP_MSHUTDOWN_CALL(http_curl)
170 #endif
171 || SUCCESS != PHP_MSHUTDOWN_CALL(http_client)
172 ) {
173 return FAILURE;
174 }
175
176 return SUCCESS;
177 }
178
179 PHP_RSHUTDOWN_FUNCTION(http)
180 {
181 if (0
182 || SUCCESS != PHP_RSHUTDOWN_CALL(http_env)
183 ) {
184 return FAILURE;
185 }
186
187 return SUCCESS;
188 }
189
190 PHP_MINFO_FUNCTION(http)
191 {
192 php_http_buffer_t buf;
193
194 php_http_buffer_init(&buf);
195
196 php_info_print_table_start();
197 php_info_print_table_header(2, "HTTP Support", "enabled");
198 php_info_print_table_row(2, "Extension Version", PHP_PECL_HTTP_VERSION);
199 php_info_print_table_end();
200
201 php_info_print_table_start();
202 php_info_print_table_header(3, "Used Library", "Compiled", "Linked");
203 php_info_print_table_row(3, "libz", ZLIB_VERSION, zlibVersion());
204 #if PHP_HTTP_HAVE_CURL
205 {
206 curl_version_info_data *cv = curl_version_info(CURLVERSION_NOW);
207 php_info_print_table_row(3, "libcurl", LIBCURL_VERSION, cv->version);
208 }
209 #else
210 php_info_print_table_row(3, "libcurl", "disabled", "disabled");
211 #endif
212
213 #if PHP_HTTP_HAVE_EVENT
214 php_info_print_table_row(3, "libevent",
215 # ifdef LIBEVENT_VERSION
216 LIBEVENT_VERSION,
217 # else
218 PHP_HTTP_EVENT_VERSION,
219 # endif
220 event_get_version());
221 #else
222 php_info_print_table_row(3, "libevent", "disabled", "disabled");
223 #endif
224
225 #if PHP_HTTP_HAVE_IDN2
226 php_info_print_table_row(3, "libidn2 (IDNA2008)", IDN2_VERSION, idn2_check_version(NULL));
227 #elif PHP_HTTP_HAVE_IDN
228 php_info_print_table_row(3, "libidn (IDNA2003)", PHP_HTTP_LIBIDN_VERSION, "unknown");
229 #endif
230
231 php_info_print_table_end();
232
233 DISPLAY_INI_ENTRIES();
234 }
235
236
237 /*
238 * Local variables:
239 * tab-width: 4
240 * c-basic-offset: 4
241 * End:
242 * vim600: noet sw=4 ts=4 fdm=marker
243 * vim<600: noet sw=4 ts=4
244 */
245