1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
|
<?php
/**
* The Browser:: class provides capability information for the current
* web client. Browser identification is performed by examining the
* HTTP_USER_AGENT environmental variable provide by the web server.
*
* $Horde: horde/lib/Browser.php,v 1.21.2.19 2003/12/02 20:27:48 slusarz Exp $
*
* Copyright 1999-2003 Chuck Hagenbuch <chuck@horde.org>
* Copyright 1999-2003 Jon Parise <jon@horde.org>
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Jon Parise <jon@horde.org>
* @version $Revision: 1.21.2.19 $
* @since Horde 1.3
* @package horde
*/
class Browser {
/**
* General version numbers.
*
* @var integer $majorVersion
* @var integer $minorVersion
*/
var $majorVersion = 0;
var $minorVersion = 0;
/**
* Browser name.
*
* @var string $browser
*/
var $browser = '';
/**
* Full user agent
*
* @var string $agent
*/
var $agent = '';
/**
* Platform the browser is running on.
*
* @var string $platform
*/
var $platform = '';
/**
* Known robots.
*
* @var array $robots
*/
var $robots = array('ZyBorg', 'Googlebot', 'Scooter/',
'Slurp.so', 'MuscatFerret',
'ArchitextSpider', 'Arachnoidea',
'ExtractorPro', 'ia_archiver',
'webbandit', 'Gulliver/',
'Slurp/cat', 'geckobot',
'KIT-Fireball', 'InfoSeek',
'Lycos_Spider', 'fido/',
'LEIA/', 'polybot');
/**
* Features.
*
* @var array $features
*/
var $features = array('html' => true,
'hdml' => false,
'wml' => false,
'images' => true,
'frames' => true,
'tables' => true,
'java' => true,
'javascript' => true,
'dom' => false,
'utf' => false);
/**
* Quirks
*
* @var array $quirks
*/
var $quirks = array('must_cache_forms' => false,
'avoid_popup_windows' => false,
'cache_ssl_downloads' => false,
'break_disposition_header' => false,
'empty_file_input_value' => false,
'scrollbar_in_way' => false,
'cache_same_url' => false,
'no_filename_spaces' => false);
/**
* Create a browser instance (Constructor).
*
* @access public
*
* @param optional $userAgent The browser string to parse.
*/
function Browser($userAgent = null)
{
$this->match($userAgent);
}
/**
* Parses the user agent string and inititializes the object with
* all the known features and quirks for the given browser.
*
* @access public
*
* @param optional string $userAgent The browser string to parse.
*/
function match($userAgent = null)
{
if (!isset($userAgent)) {
if (array_key_exists('HTTP_USER_AGENT', $_SERVER)) {
$this->agent = trim($_SERVER['HTTP_USER_AGENT']);
}
} else {
$this->agent = $userAgent;
}
if (array_key_exists('HTTP_ACCEPT_CHARSET', $_SERVER)) {
$this->setFeature('utf', strstr(strtolower($_SERVER['HTTP_ACCEPT_CHARSET']), 'utf'));
}
if (!empty($this->agent)) {
$this->_setPlatform();
if ((preg_match('|MSIE ([0-9.]+)|', $this->agent, $version)) ||
(preg_match('|Internet Explorer/([0-9.]+)|', $this->agent, $version))) {
$this->setBrowser('msie');
$this->setQuirk('cache_ssl_downloads');
$this->setQuirk('cache_same_url');
if (strstr($version[1], '.')) {
list($this->majorVersion, $this->minorVersion) = explode('.', $version[1]);
} else {
$this->majorVersion = $version[1];
$this->minorVersion = 0;
}
switch ($this->majorVersion) {
case 6:
$this->setFeature('javascript', 1.4);
$this->setFeature('dom');
$this->setFeature('utf');
$this->setQuirk('scrollbar_in_way');
break;
case 5:
if ($this->getPlatform() == 'mac') {
$this->setFeature('javascript', 1.2);
} else {
// MSIE 5 for Windows.
$this->setFeature('javascript', 1.4);
$this->setFeature('dom');
}
$this->setFeature('utf');
if ($this->minorVersion == 5) {
$this->setQuirk('break_disposition_header');
}
break;
case 4:
$this->setFeature('javascript', 1.2);
if ($this->minorVersion > 0) {
$this->setFeature('utf');
}
break;
case 3:
$this->setFeature('javascript', 1.1);
$this->setQuirk('avoid_popup_windows');
break;
}
} elseif (preg_match('|Elaine/([0-9]+)|', $this->agent, $version) ||
preg_match('|Digital Paths|', $this->agent, $version)) {
$this->setBrowser('palm');
$this->setFeature('images', false);
$this->setFeature('frames', false);
$this->setFeature('javascript', false);
$this->setQuirk('avoid_popup_windows');
} elseif (preg_match('|ANTFresco/([0-9]+)|', $this->agent, $version)) {
$this->setBrowser('fresco');
$this->setFeature('javascript', 1.1);
$this->setQuirk('avoid_popup_windows');
} elseif (preg_match('|Konqueror/([0-9]+)|', $this->agent, $version)) {
$this->setBrowser('konqueror');
$this->setFeature('javascript', 1.1);
$this->setQuirk('empty_file_input_value');
$this->majorVersion = $version[1];
switch ($this->majorVersion) {
case 3:
$this->setFeature('dom');
break;
}
} elseif (preg_match('|Mozilla/([0-9.]+)|', $this->agent, $version)) {
$this->setBrowser('mozilla');
$this->setQuirk('must_cache_forms');
list($this->majorVersion, $this->minorVersion) = explode('.', $version[1]);
switch ($this->majorVersion) {
case 5:
$this->setFeature('javascript', 1.4);
$this->setFeature('dom');
break;
case 4:
$this->setFeature('javascript', 1.3);
break;
case 3:
default:
$this->setFeature('javascript', 1);
break;
}
} elseif (preg_match('|Lynx/([0-9]+)|', $this->agent, $version)) {
$this->setBrowser('lynx');
$this->setFeature('images', false);
$this->setFeature('frames', false);
$this->setFeature('javascript', false);
$this->setQuirk('avoid_popup_windows');
} elseif (preg_match('|Links \(([0-9]+)|', $this->agent, $version)) {
$this->setBrowser('links');
$this->setFeature('images', false);
$this->setFeature('frames', false);
$this->setFeature('javascript', false);
$this->setQuirk('avoid_popup_windows');
} elseif (preg_match('|HotJava/([0-9]+)|', $this->agent, $version)) {
$this->setBrowser('hotjava');
$this->setFeature('javascript', false);
} elseif (preg_match('|Opera/([0-9.]+)|', $this->agent, $version)) {
$this->setBrowser('opera');
list($this->majorVersion, $this->minorVersion) = explode('.', $version[1]);
$this->setFeature('javascript', true);
$this->setQuirk('no_filename_spaces');
switch ($this->majorVersion) {
case 7:
$this->setFeature('dom');
break;
}
} elseif (strstr($this->agent, 'UP') ||
strstr($this->agent, 'Wap')) {
$this->setBrowser('wap');
$this->setFeature('html', false);
$this->setFeature('javascript', false);
$this->setFeature('hdml');
$this->setFeature('wml');
}
}
}
/**
* Match the platform of the browser.
*
* This is a pretty simplistic implementation, but it's intended
* to let us tell what line breaks to send, so it's good enough
* for its purpose.
*
* @access public
* @since Horde 2.2
*/
function _setPlatform()
{
if (stristr($this->agent, 'wind')) {
$this->platform = 'win';
} elseif (stristr($this->agent, 'mac')) {
$this->platform = 'mac';
} else {
$this->platform = 'unix';
}
}
/**
* Return the currently matched platform.
*
* @return string The user's platform.
* @since Horde 2.2
*/
function getPlatform()
{
return $this->platform;
}
/**
* Sets the current browser.
*
* @access public
*
* @param string $browser The browser to set as current.
*/
function setBrowser($browser)
{
$this->browser = $browser;
}
/**
* Determine if the given browser is the same as the current.
*
* @access public
*
* @param string $browser The browser to check.
*
* @return boolean Is the given browser the same as the current?
*/
function isBrowser($browser)
{
return ($this->browser === $browser);
}
/**
* Retrieve the current browser.
*
* @access public
*
* @return string The current browser.
*/
function getBrowser()
{
return $this->browser;
}
/**
* Retrieve the current browser's major version.
*
* @access public
*
* @return int The current browser's major version.
*/
function getMajor()
{
return $this->majorVersion;
}
/**
* Retrieve the current browser's minor version.
*
* @access public
*
* @return int The current browser's minor version.
*/
function getMinor()
{
return $this->minorVersion;
}
/**
* Retrieve the current browser's version.
*
* @access public
*
* @return string The current browser's version.
*/
function getVer()
{
return $this->majorVersion . '.' . $this->minorVersion;
}
/**
* Set unique behavior for the current browser.
*
* @access public
*
* @param string $quirk The behavior to set.
* @param optional string $value Special behavior parameter.
*/
function setQuirk($quirk, $value = true)
{
$this->quirks[$quirk] = $value;
}
/**
* Check unique behavior for the current browser.
*
* @access public
*
* @param string $quirk The behavior to check.
*
* @return boolean Does the browser have the behavior set?
*/
function hasQuirk($quirk)
{
return !empty($this->quirks[$quirk]);
}
/**
* Retreive unique behavior for the current browser.
*
* @access public
*
* @param string $quirk The behavior to retreive.
*
* @return string The value for the requested behavior.
*/
function getQuirk($quirk)
{
return array_key_exists($quirk, $this->quirks)
? $this->quirks[$quirk]
: null;
}
/**
* Set capabilities for the current browser.
*
* @access public
*
* @param string $feature The capability to set.
* @param optional string $value Special capability parameter.
*/
function setFeature($feature, $value = true)
{
$this->features[$feature] = $value;
}
/**
* Check the current browser capabilities.
*
* @access public
*
* @param string $feature The capability to check.
*
* @return boolean Does the browser have the capability set?
*/
function hasFeature($feature)
{
return (array_key_exists($feature, $this->features) &&
!empty($this->features[$feature]));
}
/**
* Retreive the current browser capability.
*
* @access public
*
* @param string $feature The capability to retreive.
*
* @return string The value of the requested capability.
*/
function getFeature($feature)
{
return array_key_exists($feature, $this->features)
? $this->features[$feature]
: null;
}
/**
* Returns the headers for a browser download.
*
* @access public
*
* @param optional string $filename The filename of the download.
* @param optional string $cType The content-type description of the
* file.
* @param optional boolean $inline True if inline, false if attachment.
* @param optional string $cLength The content-length of this file.
*
* @since Horde 2.2
*/
function downloadHeaders($filename = 'unknown', $cType = null,
$inline = false, $cLength = null)
{
/* Some browsers don't like spaces in the filename. */
if ($this->hasQuirk('no_filename_spaces')) {
$filename = strtr($filename, ' ', '_');
}
/* Content-Type Header */
if (!is_null($cType)) {
header('Content-Type: ' . trim($cType));
} elseif ($this->browser == 'msie') {
header('Content-Type: application/x-unknown-octet-stream');
} else {
header('Content-Type: application/octet-stream');
}
/* Content-Disposition Header */
if ($inline) {
header('Content-Disposition: inline; filename="' . $filename . '"');
} else {
if ($this->hasQuirk('break_disposition_header')) {
header('Content-Disposition: filename="' . $filename . '"');
} else {
header('Content-Disposition: attachment; filename="' . $filename . '"');
}
}
/* Content-Length Header */
if (!is_null($cLength)) {
header('Content-Length: ' . $cLength);
}
/* Overwrite Pragma: and other caching headers for IE. */
if ($this->hasQuirk('cache_ssl_downloads')) {
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
}
}
}
|