* tiny API adjustments
authorMichael Wallner <mike@php.net>
Sun, 6 Mar 2005 11:14:46 +0000 (11:14 +0000)
committerMichael Wallner <mike@php.net>
Sun, 6 Mar 2005 11:14:46 +0000 (11:14 +0000)
* fixed new http_asolute_uri()

http_api.c
http_functions.c
php_http_api.h

index 317e902ccac993dfc5dd6c9f338ced5255a08a73..0e4e604f8ea3226913dd3e03cb3325ba3f18abcf 100644 (file)
@@ -28,7 +28,6 @@
 #include "php_version.h"
 #include "php_streams.h"
 #include "snprintf.h"
-#include "spprintf.h"
 #include "ext/standard/md5.h"
 #include "ext/standard/url.h"
 #include "ext/standard/base64.h"
@@ -909,6 +908,7 @@ PHP_HTTP_API char *_http_absolute_uri_ex(
        furl.user               = purl->user;
        furl.pass               = purl->pass;
        furl.path               = purl->path;
+       furl.query              = purl->query;
        furl.fragment   = purl->fragment;
 
        if (proto) {
@@ -982,14 +982,18 @@ PHP_HTTP_API char *_http_absolute_uri_ex(
 
        if (furl.path) {
                HTTP_URI_STRLCATL(URL, full_len, furl.path);
-               if (furl.query) {
-                       HTTP_URI_STRLCATS(URL, full_len, "?");
-                       HTTP_URI_STRLCATL(URL, full_len, furl.query);
-               }
-               if (furl.fragment) {
-                       HTTP_URI_STRLCATS(URL, full_len, "#");
-                       HTTP_URI_STRLCATL(URL, full_len, furl.fragment);
-               }
+       } else {
+               HTTP_URI_STRLCATS(URL, full_len, "/");
+       }
+
+       if (furl.query) {
+               HTTP_URI_STRLCATS(URL, full_len, "?");
+               HTTP_URI_STRLCATL(URL, full_len, furl.query);
+       }
+
+       if (furl.fragment) {
+               HTTP_URI_STRLCATS(URL, full_len, "#");
+               HTTP_URI_STRLCATL(URL, full_len, furl.fragment);
        }
 
        if (scheme) {
@@ -1460,12 +1464,13 @@ PHP_HTTP_API STATUS _http_split_response_ex(char *response,
                *body = estrndup(*body, *body_len - 1);
        }
 
-       return http_parse_headers(header, *body ? *body - header : response_len, headers);
+       return http_parse_headers_ex(header, *body ? *body - header : response_len, headers, 1);
 }
 /* }}} */
 
 /* {{{ STATUS http_parse_headers(char *, long, zval *) */
-PHP_HTTP_API STATUS _http_parse_headers(char *header, int header_len, HashTable *headers TSRMLS_DC)
+PHP_HTTP_API STATUS _http_parse_headers_ex(char *header, int header_len, 
+       HashTable *headers, zend_bool prettify TSRMLS_DC)
 {
        char *colon = NULL, *line = NULL, *begin = header;
        zval array;
@@ -1500,6 +1505,11 @@ PHP_HTTP_API STATUS _http_parse_headers(char *header, int header_len, HashTable
                                        /* skip empty key */
                                        if (header != colon) {
                                                char *key = estrndup(header, colon - header);
+
+                                               if (prettify) {
+                                                       key = pretty_key(key, colon - header, 1, 1);
+                                               }
+
                                                value_len += line - colon - 1;
 
                                                /* skip leading ws */
@@ -1533,17 +1543,26 @@ PHP_HTTP_API STATUS _http_parse_headers(char *header, int header_len, HashTable
 }
 /* }}} */
 
-/* {{{ void http_get_request_headers(zval *) */
-PHP_HTTP_API void _http_get_request_headers(zval *array TSRMLS_DC)
+/* {{{ void http_get_request_headers_ex(HashTable *, zend_bool) */
+PHP_HTTP_API void _http_get_request_headers_ex(HashTable *headers, zend_bool prettify TSRMLS_DC)
 {
     char *key = NULL;
     long idx = 0;
+    zval array;
+    
+    Z_ARRVAL(array) = headers;
 
     FOREACH_HASH_KEY(HTTP_SERVER_VARS, key, idx) {
         if (key && !strncmp(key, "HTTP_", 5)) {
             zval **header;
+            
+            if (prettify) {
+               key = pretty_key(key + 5, strlen(key) - 5, 1, 1);
+            }
+            
             zend_hash_get_current_data(HTTP_SERVER_VARS, (void **) &header);
-            add_assoc_stringl(array, pretty_key(key + 5, strlen(key) - 5, 1, 1), Z_STRVAL_PP(header), Z_STRLEN_PP(header), 1);
+            add_assoc_stringl(&array, key, Z_STRVAL_PP(header), Z_STRLEN_PP(header), 1);
+            key = NULL;
         }
     }
 }
index 3ed49b22f6e8b8261a9737cba6c3d80793e31055..f4d32b202ef5a4313fe467a0d03db364543be8ad 100644 (file)
@@ -469,7 +469,7 @@ PHP_FUNCTION(http_redirect)
        }
 
        URI = http_absolute_uri(url);
-       
+
        if (query_len) {
                snprintf(LOC, HTTP_URI_MAXLEN + sizeof("Location: "), "Location: %s?%s", URI, query);
                sprintf(RED, "Redirecting to <a href=\"%s?%s\">%s?%s</a>.\n", URI, query, URI, query);
@@ -632,8 +632,8 @@ PHP_FUNCTION(http_parse_headers)
        if (rnrn = strstr(header, HTTP_CRLF HTTP_CRLF)) {
                header_len = rnrn - header + 2;
        }
-       if (SUCCESS != http_parse_headers(header, header_len, Z_ARRVAL_P(return_value))) {
-               php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not parse HTTP header");
+       if (SUCCESS != http_parse_headers(header, header_len, return_value)) {
+               php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not parse HTTP headers");
                zval_dtor(return_value);
                RETURN_FALSE;
        }
index 22f11d23b867f085627eb7c4f283c7e5d7ac0529..550f1d4e22af639d4ee4034b5b88d1362b77abbb 100644 (file)
@@ -135,11 +135,13 @@ PHP_HTTP_API STATUS _http_urlencode_hash_ex(HashTable *hash, int override_argsep
 #define http_split_response_ex(r, rl, h, b, bl) _http_split_response_ex((r), (rl), (h), (b), (bl) TSRMLS_CC)
 PHP_HTTP_API STATUS _http_split_response_ex(char *response, size_t repsonse_len, HashTable *headers, char **body, size_t *body_len TSRMLS_DC);
 
-#define http_parse_headers(h, l, a) _http_parse_headers((h), (l), (a) TSRMLS_CC)
-PHP_HTTP_API STATUS _http_parse_headers(char *header, int header_len, HashTable *headers TSRMLS_DC);
+#define http_parse_headers(h, l, a) _http_parse_headers_ex((h), (l), Z_ARRVAL_P(a), 1 TSRMLS_CC)
+#define http_parse_headers_ex(h, l, ht, p) _http_parse_headers_ex((h), (l), (ht), (p) TSRMLS_CC)
+PHP_HTTP_API STATUS _http_parse_headers_ex(char *header, int header_len, HashTable *headers, zend_bool prettify TSRMLS_DC);
 
-#define http_get_request_headers(h) _http_get_request_headers((h) TSRMLS_CC)
-PHP_HTTP_API void _http_get_request_headers(zval *array TSRMLS_DC);
+#define http_get_request_headers(h) _http_get_request_headers_ex(Z_ARRVAL_P(h), 1 TSRMLS_CC)
+#define http_get_request_headers_ex(h, p) _http_get_request_headers_ex((h), (s) TSRMLS_CC)
+PHP_HTTP_API void _http_get_request_headers_ex(HashTable *headers, zend_bool prettify TSRMLS_DC);
 
 #define http_auth_credentials(u, p) _http_auth_credentials((u), (p) TSRMLS_CC)
 PHP_HTTP_API STATUS _http_auth_credentials(char **user, char **pass TSRMLS_DC);