1999-04-17 08:37:12 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
1999-07-16 21:13:16 +08:00
|
|
|
| PHP version 4.0 |
|
1999-04-17 08:37:12 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-01-01 09:32:05 +08:00
|
|
|
| Copyright (c) 1997, 1998, 1999, 2000 The PHP Group |
|
1999-04-17 08:37:12 +08:00
|
|
|
+----------------------------------------------------------------------+
|
1999-07-16 21:13:16 +08:00
|
|
|
| This source file is subject to version 2.0 of the PHP license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
|
|
|
| http://www.php.net/license/2_0.txt. |
|
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
1999-04-17 08:37:12 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "php.h"
|
1999-12-05 03:19:57 +08:00
|
|
|
#include "php_browscap.h"
|
1999-04-17 08:37:12 +08:00
|
|
|
#include "php_ini.h"
|
|
|
|
|
|
|
|
#include "zend_globals.h"
|
|
|
|
|
|
|
|
#ifndef THREAD_SAFE
|
|
|
|
HashTable browser_hash;
|
|
|
|
static char *lookup_browser_name;
|
|
|
|
static pval *found_browser_entry;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
function_entry browscap_functions[] = {
|
1999-07-25 06:16:54 +08:00
|
|
|
PHP_FE(get_browser, NULL)
|
1999-04-17 08:37:12 +08:00
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
1999-12-18 04:55:31 +08:00
|
|
|
zend_module_entry browscap_module_entry = {
|
1999-07-27 04:09:08 +08:00
|
|
|
"browscap", browscap_functions, PHP_MINIT(browscap), PHP_MSHUTDOWN(browscap),
|
|
|
|
NULL, NULL, NULL, STANDARD_MODULE_PROPERTIES
|
1999-04-17 08:37:12 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int browser_reg_compare(pval *browser)
|
|
|
|
{
|
|
|
|
pval *browser_name;
|
|
|
|
regex_t r;
|
|
|
|
|
1999-04-24 08:12:00 +08:00
|
|
|
if (found_browser_entry) { /* already found */
|
1999-04-17 08:37:12 +08:00
|
|
|
return 0;
|
|
|
|
}
|
1999-08-03 03:17:14 +08:00
|
|
|
zend_hash_find(browser->value.ht,"browser_name_pattern",sizeof("browser_name_pattern"),(void **) &browser_name);
|
1999-04-17 08:37:12 +08:00
|
|
|
if (!strchr(browser_name->value.str.val,'*')) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (regcomp(&r,browser_name->value.str.val,REG_NOSUB)!=0) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-24 08:12:00 +08:00
|
|
|
if (regexec(&r,lookup_browser_name,0,NULL,0)==0) {
|
|
|
|
found_browser_entry = browser;
|
1999-04-17 08:37:12 +08:00
|
|
|
}
|
|
|
|
regfree(&r);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-05-16 19:19:26 +08:00
|
|
|
PHP_FUNCTION(get_browser)
|
1999-04-17 08:37:12 +08:00
|
|
|
{
|
1999-12-20 10:09:58 +08:00
|
|
|
pval **agent_name,**agent,tmp;
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
if (!INI_STR("browscap")) {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(ARG_COUNT(ht)) {
|
|
|
|
case 0:
|
1999-08-03 03:17:14 +08:00
|
|
|
if (zend_hash_find(&EG(symbol_table), "HTTP_USER_AGENT", sizeof("HTTP_USER_AGENT"), (void **) &agent_name)==FAILURE) {
|
1999-12-20 10:09:58 +08:00
|
|
|
*agent_name = &tmp;
|
|
|
|
var_reset(*agent_name);
|
1999-04-17 08:37:12 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
1999-12-20 10:09:58 +08:00
|
|
|
if (zend_get_parameters_ex(1,&agent_name)==FAILURE) {
|
1999-04-17 08:37:12 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-20 10:09:58 +08:00
|
|
|
convert_to_string_ex(agent_name);
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-20 10:09:58 +08:00
|
|
|
if (zend_hash_find(&browser_hash, (*agent_name)->value.str.val,(*agent_name)->value.str.len+1, (void **) &agent)==FAILURE) {
|
|
|
|
lookup_browser_name = (*agent_name)->value.str.val;
|
1999-04-24 08:12:00 +08:00
|
|
|
found_browser_entry = NULL;
|
1999-08-03 03:17:14 +08:00
|
|
|
zend_hash_apply(&browser_hash,(int (*)(void *)) browser_reg_compare);
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-04-24 08:12:00 +08:00
|
|
|
if (found_browser_entry) {
|
1999-12-20 10:09:58 +08:00
|
|
|
*agent = found_browser_entry;
|
1999-08-03 03:17:14 +08:00
|
|
|
} else if (zend_hash_find(&browser_hash, "Default Browser", sizeof("Default Browser"), (void **) &agent)==FAILURE) {
|
1999-04-17 08:37:12 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-20 10:09:58 +08:00
|
|
|
*return_value = **agent;
|
1999-04-17 08:37:12 +08:00
|
|
|
return_value->type = IS_OBJECT;
|
|
|
|
pval_copy_constructor(return_value);
|
1999-12-22 01:14:31 +08:00
|
|
|
return_value->value.ht->pDestructor = ZVAL_DESTRUCTOR;
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-20 10:09:58 +08:00
|
|
|
while (zend_hash_find((*agent)->value.ht, "parent",sizeof("parent"), (void **) &agent_name)==SUCCESS) {
|
|
|
|
if (zend_hash_find(&browser_hash,(*agent_name)->value.str.val, (*agent_name)->value.str.len+1, (void **)&agent)==FAILURE) {
|
1999-04-17 08:37:12 +08:00
|
|
|
break;
|
|
|
|
}
|
1999-12-22 01:14:31 +08:00
|
|
|
zend_hash_merge(return_value->value.ht,(*agent)->value.ht, ZVAL_COPY_CTOR, (void *) &tmp, sizeof(pval), 0);
|
1999-04-17 08:37:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|