- add ob_(deflate|inflate)handler
[m6w6/ext-http] / http_request_body_api.c
index 467726bd84fccb90542416f32092ebb656b6106a..8476b63e48c9ee6f1afbbffafad0da8b6d457e6b 100644 (file)
@@ -25,8 +25,6 @@
 #include "php_http_url_api.h"
 #include "php_http_request_body_api.h"
 
-ZEND_EXTERN_MODULE_GLOBALS(http);
-
 /* {{{ http_request_body *http_request_body_new() */
 PHP_HTTP_API http_request_body *_http_request_body_init_ex(http_request_body *body, int type, void *data, size_t size, zend_bool free ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC TSRMLS_DC)
 {
@@ -55,8 +53,8 @@ PHP_HTTP_API http_request_body *_http_request_body_fill(http_request_body *body,
 
                /* normal data */
                FOREACH_HASH_KEYVAL(pos, fields, key, idx, data) {
-                       CURLcode err;
                        if (key) {
+                               CURLcode err;
                                zval *orig = *data;
                                
                                convert_to_string_ex(data);
@@ -93,12 +91,34 @@ PHP_HTTP_API http_request_body *_http_request_body_fill(http_request_body *body,
                                                SUCCESS != zend_hash_find(Z_ARRVAL_PP(data), "file", sizeof("file"), (void **) &file)) {
                                http_error(HE_NOTICE, HTTP_E_INVALID_PARAM, "Post file array entry misses either 'name', 'type' or 'file' entry");
                        } else {
-                               CURLcode err = curl_formadd(&http_post_data[0], &http_post_data[1],
+                               CURLcode err;
+                               const char *path;
+                               zval *ofile = *file, *otype = *type, *oname = *name;
+                               
+                               convert_to_string_ex(file);
+                               convert_to_string_ex(type);
+                               convert_to_string_ex(name);
+                               
+                               HTTP_CHECK_OPEN_BASEDIR(Z_STRVAL_PP(file), curl_formfree(http_post_data[0]); return NULL);
+                               
+                               /* this is blatant but should be sufficient for most cases */
+                               if (strncasecmp(Z_STRVAL_PP(file), "file://", lenof("file://"))) {
+                                       path = Z_STRVAL_PP(file);
+                               } else {
+                                       path = Z_STRVAL_PP(file) + lenof("file://");
+                               }
+                               
+                               err = curl_formadd(&http_post_data[0], &http_post_data[1],
                                        CURLFORM_COPYNAME,              Z_STRVAL_PP(name),
-                                       CURLFORM_FILE,                  Z_STRVAL_PP(file),
+                                       CURLFORM_FILE,                  path,
                                        CURLFORM_CONTENTTYPE,   Z_STRVAL_PP(type),
                                        CURLFORM_END
                                );
+                               
+                               if (ofile != *file) zval_ptr_dtor(file);
+                               if (otype != *type) zval_ptr_dtor(type);
+                               if (oname != *name) zval_ptr_dtor(name);
+                               
                                if (CURLE_OK != err) {
                                        http_error_ex(HE_WARNING, HTTP_E_ENCODING, "Could not encode post files: %s", curl_easy_strerror(err));
                                        curl_formfree(http_post_data[0]);
@@ -107,7 +127,7 @@ PHP_HTTP_API http_request_body *_http_request_body_fill(http_request_body *body,
                        }
                }
                
-               return http_request_body_init_ex(body, HTTP_REQUEST_BODY_CURLPOST, http_post_data[0], 0, 1);
+               return http_request_body_init_rel(body, HTTP_REQUEST_BODY_CURLPOST, http_post_data[0], 0, 1);
 
        } else {
                char *encoded;
@@ -118,31 +138,34 @@ PHP_HTTP_API http_request_body *_http_request_body_fill(http_request_body *body,
                        return NULL;
                }
                
-               return http_request_body_init_ex(body, HTTP_REQUEST_BODY_CSTRING, encoded, encoded_len, 1);
+               return http_request_body_init_rel(body, HTTP_REQUEST_BODY_CSTRING, encoded, encoded_len, 1);
        }
 }
-/* }}} */
+
 
 /* {{{ void http_request_body_dtor(http_request_body *) */
 PHP_HTTP_API void _http_request_body_dtor(http_request_body *body TSRMLS_DC)
 {
-       if (body && body->free) {
-               switch (body->type)
-               {
-                       case HTTP_REQUEST_BODY_CSTRING:
-                               if (body->data) {
-                                       efree(body->data);
-                               }
-                       break;
-
-                       case HTTP_REQUEST_BODY_CURLPOST:
-                               curl_formfree(body->data);
-                       break;
-
-                       case HTTP_REQUEST_BODY_UPLOADFILE:
-                               php_stream_close(body->data);
-                       break;
+       if (body) {
+               if (body->free) {
+                       switch (body->type)
+                       {
+                               case HTTP_REQUEST_BODY_CSTRING:
+                                       if (body->data) {
+                                               efree(body->data);
+                                       }
+                               break;
+       
+                               case HTTP_REQUEST_BODY_CURLPOST:
+                                       curl_formfree(body->data);
+                               break;
+       
+                               case HTTP_REQUEST_BODY_UPLOADFILE:
+                                       php_stream_close(body->data);
+                               break;
+                       }
                }
+               memset(body, 0, sizeof(http_request_body));
        }
 }
 /* }}} */