X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_curl_api.c;h=08d543dbae5c82acf53c0d077ffc813eb1bb612e;hp=b40b7218fb5cb1bc1f4d9e67833dee24995f3003;hb=161b5ccf180c69c7b1872c147d5bda6c0328b178;hpb=b6f1f30011e3834d4dc1ba8c93a2ece696bd6cbd diff --git a/http_curl_api.c b/http_curl_api.c index b40b721..08d543d 100644 --- a/http_curl_api.c +++ b/http_curl_api.c @@ -62,6 +62,15 @@ ZEND_DECLARE_MODULE_GLOBALS(http) http_curl_initbuf(); \ http_curl_setopts(ch, URL, options); +#define http_curl_perform(ch, clean_curl) \ + { \ + CURLcode result; \ + if (CURLE_OK != (result = curl_easy_perform(ch))) { \ + http_curl_cleanup(ch, clean_curl); \ + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not perform request: %s", curl_easy_strerror(result)); \ + return FAILURE; \ + } \ + } #define http_curl_cleanup(ch, clean_curl) \ http_curl_freestr(); \ @@ -95,9 +104,9 @@ ZEND_DECLARE_MODULE_GLOBALS(http) HTTP_G(curlbuf).size = 0; #define http_curl_copybuf(data, size) \ - * size = HTTP_G(curlbuf).used; \ - * data = ecalloc(1, HTTP_G(curlbuf).used + 1); \ - memcpy(* data, HTTP_G(curlbuf).data, * size); + *size = HTTP_G(curlbuf).used; \ + *data = ecalloc(1, HTTP_G(curlbuf).used + 1); \ + memcpy(*data, HTTP_G(curlbuf).data, HTTP_G(curlbuf).used); #define http_curl_sizebuf(for_size) \ { \ @@ -482,12 +491,7 @@ PHP_HTTP_API STATUS _http_get_ex(CURL *ch, const char *URL, HashTable *options, http_curl_startup(ch, clean_curl, URL, options); curl_easy_setopt(ch, CURLOPT_HTTPGET, 1); - - if (CURLE_OK != curl_easy_perform(ch)) { - http_curl_cleanup(ch, clean_curl); - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not perform request"); - return FAILURE; - } + http_curl_perform(ch, clean_curl); if (info) { http_curl_getinfo(ch, info); @@ -507,12 +511,7 @@ PHP_HTTP_API STATUS _http_head_ex(CURL *ch, const char *URL, HashTable *options, http_curl_startup(ch, clean_curl, URL, options); curl_easy_setopt(ch, CURLOPT_NOBODY, 1); - - if (CURLE_OK != curl_easy_perform(ch)) { - http_curl_cleanup(ch, clean_curl); - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not perform request"); - return FAILURE; - } + http_curl_perform(ch, clean_curl); if (info) { http_curl_getinfo(ch, info); @@ -535,12 +534,7 @@ PHP_HTTP_API STATUS _http_post_data_ex(CURL *ch, const char *URL, char *postdata curl_easy_setopt(ch, CURLOPT_POST, 1); curl_easy_setopt(ch, CURLOPT_POSTFIELDS, postdata); curl_easy_setopt(ch, CURLOPT_POSTFIELDSIZE, postdata_len); - - if (CURLE_OK != curl_easy_perform(ch)) { - http_curl_cleanup(ch, clean_curl); - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not perform request"); - return FAILURE; - } + http_curl_perform(ch, clean_curl); if (info) { http_curl_getinfo(ch, info); @@ -591,12 +585,7 @@ PHP_HTTP_API STATUS _http_post_curldata_ex(CURL *ch, const char *URL, http_curl_startup(ch, clean_curl, URL, options); curl_easy_setopt(ch, CURLOPT_POST, 1); curl_easy_setopt(ch, CURLOPT_HTTPPOST, curldata); - - if (CURLE_OK != curl_easy_perform(ch)) { - http_curl_cleanup(ch, clean_curl); - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not perform request"); - return FAILURE; - } + http_curl_perform(ch, clean_curl); if (info) { http_curl_getinfo(ch, info);