X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_headers_api.c;h=81181e5711e6141b9cf4c653c72506b8fd2e721f;hp=fad18e4b06c2dc713706bd8a603d43bf1be92ee2;hb=a960f6fd6e637ffa03a87985a7df3bc9c98a360b;hpb=c2b4f0332ead5425b183d2487ab5f25663f1009f diff --git a/http_headers_api.c b/http_headers_api.c index fad18e4..81181e5 100644 --- a/http_headers_api.c +++ b/http_headers_api.c @@ -248,11 +248,11 @@ PHP_HTTP_API STATUS _http_parse_headers_ex(const char *header, HashTable *header Z_ARRVAL(array) = headers; if (crlfcrlf = strstr(header, HTTP_CRLF HTTP_CRLF)) { - header_len = crlfcrlf - header; + header_len = crlfcrlf - header + lenof(HTTP_CRLF); } else { - header_len = strlen(header); + header_len = strlen(header) + 1; } - + if (header_len < 2 || !strchr(header, ':')) { http_error(E_WARNING, HTTP_E_PARSE, "Cannot parse too short or malformed HTTP headers"); @@ -309,31 +309,17 @@ PHP_HTTP_API STATUS _http_parse_headers_ex(const char *header, HashTable *header /* if we already have got such a header make an array of those */ if (SUCCESS == zend_hash_find(headers, key, keylen + 1, (void **) &previous)) { - /* already an array? - just add */ - if (Z_TYPE_PP(previous) == IS_ARRAY) { - add_next_index_stringl(*previous, value, value_len, 0); - } else { - /* create the array */ - zval *new_array; - MAKE_STD_ZVAL(new_array); - array_init(new_array); - - add_next_index_stringl(new_array, Z_STRVAL_PP(previous), Z_STRLEN_PP(previous), 1); - add_next_index_stringl(new_array, value, value_len, 0); - add_assoc_zval(&array, key, new_array); + /* convert to array */ + if (Z_TYPE_PP(previous) != IS_ARRAY) { + convert_to_array(*previous); } - - previous = NULL; + add_next_index_stringl(*previous, value, value_len, 0); } else { add_assoc_stringl(&array, key, value, value_len, 0); } efree(key); } } - /* stop at CRLF CRLF */ - if (!strncmp(HTTP_CRLF, line + 1, lenof(HTTP_CRLF))) { - return SUCCESS; - } colon = NULL; value_len = 0; header += line - header; @@ -478,6 +464,36 @@ PHP_HTTP_API void _http_get_request_headers_ex(HashTable *headers, zend_bool pre } /* }}} */ +/* {{{ zend_bool http_match_request_header(char *, char *) */ +PHP_HTTP_API zend_bool _http_match_request_header_ex(const char *header, const char *value, zend_bool match_case TSRMLS_DC) +{ + char *name, *key = NULL; + ulong idx; + zend_bool result = 0; + HashTable headers; + + name = pretty_key(estrdup(header), strlen(header), 1, 1); + zend_hash_init(&headers, 0, NULL, ZVAL_PTR_DTOR, 0); + http_get_request_headers_ex(&headers, 1); + + FOREACH_HASH_KEY(&headers, key, idx) { + if (key && (!strcmp(key, name))) { + zval **data; + + if (SUCCESS == zend_hash_get_current_data(&headers, (void **) &data)) { + result = (match_case ? strcmp(Z_STRVAL_PP(data), value) : strcasecmp(Z_STRVAL_PP(data), value)) ? 0 : 1; + } + break; + } + } + + zend_hash_destroy(&headers); + efree(name); + + return result; +} +/* }}} */ + /* * Local variables: