function _record_user_agent in Browscap 7
Same name and namespace in other branches
- 6 record.inc \_record_user_agent()
Helper function to record a user agent().
Parameters
boolean $skip_futher_recording: Optional flag to denote if user agent monitoring should be skipped for the rest of the page request. If true, monitoring will be disabled.
boolean $bypass_monitoring: Optional flag to denote if the current user has permission to bypass monitoring
2 calls to _record_user_agent()
- browscap_exit in ./
browscap.module - Implements hook_exit().
- browscap_init in ./
browscap.module - Implements hook_init().
File
- ./
record.inc, line 16 - Browscap user agent recording functions.
Code
function _record_user_agent($skip_futher_recording = FALSE, $bypass_monitoring = FALSE) {
// Create a static variable to track the status of user agent monitoring for
// the entire page request
static $record_user_agent = TRUE;
// Record the current user agent if recording and logging are enabled and the
// user does not have permission to bypass monitoring
if ($record_user_agent == TRUE && $bypass_monitoring != TRUE && variable_get('browscap_enable_user_agent_log', FALSE) == TRUE) {
// Get browscap data about the current user agent
$user_agent = browscap_get_browser();
// Assume that the parent is unknown until proven otherwise
$parent = t('Unknown');
// Identify the parent using browscap data
// Otherwise, use the USER_AGENT header from the current request
if (!empty($user_agent['parent'])) {
$parent = substr(check_plain(trim($user_agent['parent'])), 0, 255);
}
elseif (isset($_SERVER['HTTP_USER_AGENT'])) {
$parent = substr(check_plain(trim($_SERVER['HTTP_USER_AGENT'])), 0, 255);
}
// Assume that the user agent is not a crawler until proven otherwise
$is_crawler = 0;
// Determine if the user agent is a crawler using browscap data
// Otherwise, assume that the user agent isn't a crawler
if (!empty($user_agent['crawler'])) {
$is_crawler = check_plain(trim($user_agent['crawler']));
}
// Record the user agent in the database
db_merge('browscap_statistics')
->key(array(
'parent' => $parent,
))
->fields(array(
'counter' => 1,
'is_crawler' => $is_crawler,
))
->expression('counter', 'counter + 1')
->execute();
}
// Change the status of user agent monitoring when necessary
if ($skip_futher_recording == TRUE) {
// Disable user agent monitoring for the rest of the page request
$record_user_agent = FALSE;
}
}