|
@@ -0,0 +1,380 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+
|
|
|
+ * This class is an experiment for the job of correctly detecting browsers and settings
|
|
|
+ * needed for them.
|
|
|
+ * - Detects the following browsers
|
|
|
+ * - Opera, Webkit, Firefox, Web_tv, Konqueror, IE, Gecko
|
|
|
+ * - Webkit variants: Chrome, iphone, blackberry, android, safari, ipad, ipod
|
|
|
+ * - Opera Versions: 6, 7, 8, 9, 10 and mobile mini and mobi
|
|
|
+ * - Firefox Versions: 1, 2, 3 .... 11 ...
|
|
|
+ * - Chrome Versions: 1 ... 18 ...
|
|
|
+ * - IE Versions: 4, 5, 5.5, 6, 7, 8, 9, 10 mobile and Mac
|
|
|
+ * - Nokia
|
|
|
+ */
|
|
|
+
|
|
|
+if (!defined('SMF'))
|
|
|
+ die('Hacking attempt...');
|
|
|
+
|
|
|
+class browser_detector
|
|
|
+{
|
|
|
+
|
|
|
+ * Holds all browsers information. Its contents will be placed into $context['browser'].
|
|
|
+ *
|
|
|
+ * @var array
|
|
|
+ */
|
|
|
+ private $_browsers = null;
|
|
|
+ private $_is_mobile = null;
|
|
|
+
|
|
|
+
|
|
|
+ * The main method of this class, you know the one that does the job: detect the thing.
|
|
|
+ * - determines the user agent (browser) as best it can.
|
|
|
+ */
|
|
|
+ function detectBrowser()
|
|
|
+ {
|
|
|
+ global $context, $user_info;
|
|
|
+
|
|
|
+
|
|
|
+ $this->_browsers = array();
|
|
|
+ $this->_is_mobile = false;
|
|
|
+
|
|
|
+
|
|
|
+ $this->_browsers['needs_size_fix'] = false;
|
|
|
+
|
|
|
+
|
|
|
+ if ($this->isOpera())
|
|
|
+ $this->setupOpera();
|
|
|
+
|
|
|
+ elseif ($this->isWebkit())
|
|
|
+ $this->setupWebkit();
|
|
|
+
|
|
|
+ elseif ($this->isFirefox())
|
|
|
+ $this->setupFirefox();
|
|
|
+
|
|
|
+ elseif ($this->isIe())
|
|
|
+ $this->setupIe();
|
|
|
+
|
|
|
+
|
|
|
+ $this->isOperaMini();
|
|
|
+ $this->isOperaMobi();
|
|
|
+
|
|
|
+
|
|
|
+ if ($user_info['possibly_robot'])
|
|
|
+ {
|
|
|
+
|
|
|
+ $this->_browsers['possibly_robot'] = !empty($user_info['possibly_robot']);
|
|
|
+
|
|
|
+
|
|
|
+ if ((isset($_REQUEST['action']) && in_array($_REQUEST['action'], array('login', 'login2', 'register'))) || !$user_info['is_guest'])
|
|
|
+ $this->_browsers['possibly_robot'] = false;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ $this->_browsers['possibly_robot'] = false;
|
|
|
+
|
|
|
+
|
|
|
+ $this->fillInformation();
|
|
|
+
|
|
|
+
|
|
|
+ $this->setupBrowserPriority();
|
|
|
+
|
|
|
+
|
|
|
+ $context['browser'] = $this->_browsers;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Determine if the browser is Opera or not
|
|
|
+ * @return boolean true if the browser is Opera otherwise false
|
|
|
+ */
|
|
|
+ function isOpera()
|
|
|
+ {
|
|
|
+ if (!isset($this->_browsers['is_opera']))
|
|
|
+ $this->_browsers['is_opera'] = strpos($_SERVER['HTTP_USER_AGENT'], 'Opera') !== false;
|
|
|
+ return $this->_browsers['is_opera'];
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Determine if the browser is IE or not
|
|
|
+ * @return boolean true if the browser is IE otherwise false
|
|
|
+ */
|
|
|
+ function isIe()
|
|
|
+ {
|
|
|
+
|
|
|
+ if (!isset($this->_browsers['is_ie']))
|
|
|
+ $this->_browsers['is_ie'] = !$this->isOpera() && !$this->isGecko() && !$this->isWebTv() && preg_match('~MSIE \d+~', $_SERVER['HTTP_USER_AGENT']) === 1;
|
|
|
+ return $this->_browsers['is_ie'];
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Determine if the browser is a Webkit based one or not
|
|
|
+ * @return boolean true if the browser is Webkit based otherwise false
|
|
|
+ */
|
|
|
+ function isWebkit()
|
|
|
+ {
|
|
|
+ if (!isset($this->_browsers['is_webkit']))
|
|
|
+ $this->_browsers['is_webkit'] = strpos($_SERVER['HTTP_USER_AGENT'], 'AppleWebKit') !== false;
|
|
|
+ return $this->_browsers['is_webkit'];
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Determine if the browser is Firefox or one of its variants
|
|
|
+ * @return boolean true if the browser is Firefox otherwise false
|
|
|
+ */
|
|
|
+ function isFirefox()
|
|
|
+ {
|
|
|
+ if (!isset($this->_browsers['is_firefox']))
|
|
|
+ $this->_browsers['is_firefox'] = preg_match('~(?:Firefox|Ice[wW]easel|IceCat|Shiretoko|Minefield)/~', $_SERVER['HTTP_USER_AGENT']) === 1;
|
|
|
+ return $this->_browsers['is_firefox'];
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Determine if the browser is WebTv or not
|
|
|
+ * @return boolean true if the browser is WebTv otherwise false
|
|
|
+ */
|
|
|
+ function isWebTv()
|
|
|
+ {
|
|
|
+ if (!isset($this->_browsers['is_web_tv']))
|
|
|
+ $this->_browsers['is_web_tv'] = strpos($_SERVER['HTTP_USER_AGENT'], 'WebTV') !== false;
|
|
|
+ return $this->_browsers['is_web_tv'];
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Determine if the browser is konqueror or not
|
|
|
+ * @return boolean true if the browser is konqueror otherwise false
|
|
|
+ */
|
|
|
+ function isKonqueror()
|
|
|
+ {
|
|
|
+ if (!isset($this->_browsers['is_konqueror']))
|
|
|
+ $this->_browsers['is_konqueror'] = strpos($_SERVER['HTTP_USER_AGENT'], 'Konqueror') !== false;
|
|
|
+ return $this->_browsers['is_konqueror'];
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Determine if the browser is Gecko or not
|
|
|
+ * @return boolean true if the browser is Gecko otherwise false
|
|
|
+ */
|
|
|
+ function isGecko()
|
|
|
+ {
|
|
|
+ if (!isset($this->_browsers['is_gecko']))
|
|
|
+ $this->_browsers['is_gecko'] = strpos($_SERVER['HTTP_USER_AGENT'], 'Gecko') !== false && !$this->isWebkit() && !$this->isKonqueror();
|
|
|
+ return $this->_browsers['is_gecko'];
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Determine if the browser is OperaMini or not
|
|
|
+ * @return boolean true if the browser is OperaMini otherwise false
|
|
|
+ */
|
|
|
+ function isOperaMini()
|
|
|
+ {
|
|
|
+ if (!isset($this->_browsers['is_opera_mini']))
|
|
|
+ $this->_browsers['is_opera_mini'] = (isset($_SERVER['HTTP_X_OPERAMINI_PHONE_UA']) || stripos($_SERVER['HTTP_USER_AGENT'], 'opera mini') !== false);
|
|
|
+ if ($this->_browsers['is_opera_mini'])
|
|
|
+ $this->_is_mobile = true;
|
|
|
+ return $this->_browsers['is_opera_mini'];
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Determine if the browser is OperaMobi or not
|
|
|
+ * @return boolean true if the browser is OperaMobi otherwise false
|
|
|
+ */
|
|
|
+ function isOperaMobi()
|
|
|
+ {
|
|
|
+ if (!isset($this->_browsers['is_opera_mobi']))
|
|
|
+ $this->_browsers['is_opera_mobi'] = stripos($_SERVER['HTTP_USER_AGENT'], 'opera mobi') !== false;
|
|
|
+ if ($this->_browsers['is_opera_mobi'])
|
|
|
+ $this->_is_mobile = true;
|
|
|
+ return $this->_browsers['is_opera_mini'];
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Detect Safari / Chrome / iP[ao]d / iPhone / Android / Blackberry from webkit.
|
|
|
+ * - set the browser version for Safari and Chrome
|
|
|
+ * - set the mobile flag for mobile based useragents
|
|
|
+ */
|
|
|
+ private function setupWebkit()
|
|
|
+ {
|
|
|
+ $this->_browsers += array(
|
|
|
+ 'is_chrome' => strpos($_SERVER['HTTP_USER_AGENT'], 'Chrome') !== false,
|
|
|
+ 'is_iphone' => (strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'iPod') !== false) && strpos($_SERVER['HTTP_USER_AGENT'], 'iPad') === false,
|
|
|
+ 'is_blackberry' => stripos($_SERVER['HTTP_USER_AGENT'], 'BlackBerry') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'PlayBook') !== false,
|
|
|
+ 'is_android' => strpos($_SERVER['HTTP_USER_AGENT'], 'Android') !== false,
|
|
|
+ 'is_nokia' => strpos($_SERVER['HTTP_USER_AGENT'], 'SymbianOS') !== false,
|
|
|
+ );
|
|
|
+
|
|
|
+
|
|
|
+ if ($this->_browsers['is_iphone'] || $this->_browsers['is_blackberry'] || $this->_browsers['is_android'] || $this->_browsers['is_nokia'])
|
|
|
+ $this->_is_mobile = true;
|
|
|
+
|
|
|
+
|
|
|
+ $this->_browsers['is_safari'] = strpos($_SERVER['HTTP_USER_AGENT'], 'Safari') !== false && !$this->_browsers['is_chrome'] && !$this->_browsers['is_iphone'];
|
|
|
+ $this->_browsers['is_ipad'] = strpos($_SERVER['HTTP_USER_AGENT'], 'iPad') !== false;
|
|
|
+
|
|
|
+
|
|
|
+ if ($this->_browsers['is_chrome'])
|
|
|
+ {
|
|
|
+ if (preg_match('~chrome[/]([0-9][0-9]?[.])~i', $_SERVER['HTTP_USER_AGENT'], $match) === 1)
|
|
|
+ $this->_browsers['is_chrome' . (int) $match[1]] = true;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if ($this->_browsers['is_safari'])
|
|
|
+ {
|
|
|
+ if (preg_match('~version/?(.*)safari.*~i', $_SERVER['HTTP_USER_AGENT'], $match) === 1)
|
|
|
+ $this->_browsers['is_safari' . (int) trim($match[1])] = true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Additional IE checks and settings.
|
|
|
+ * - determines the version of the IE browser in use
|
|
|
+ * - detects ie4 onward
|
|
|
+ * - attempts to distinguish between IE and IE in compatabilty view
|
|
|
+ * - checks for old IE on macs as well, since we can
|
|
|
+ */
|
|
|
+ private function setupIe()
|
|
|
+ {
|
|
|
+ $this->_browsers['is_ie_compat_view'] = false;
|
|
|
+
|
|
|
+
|
|
|
+ if (preg_match('~MSIE\s?([0-9][0-9]?.[0-9])~i', $_SERVER['HTTP_USER_AGENT'], $msie_match) === 1)
|
|
|
+ {
|
|
|
+ $msie_match[1] = trim($msie_match[1]);
|
|
|
+ $msie_match[1] = (($msie_match[1] - (int) $msie_match[1]) == 0) ? (int) $msie_match[1] : $msie_match[1];
|
|
|
+ $this->_browsers['is_ie' . $msie_match[1]] = true;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if (preg_match('~Trident/([0-9.])~i', $_SERVER['HTTP_USER_AGENT'], $trident_match) === 1)
|
|
|
+ {
|
|
|
+ $this->_browsers['is_ie' . ((int) $trident_match[1] + 4)] = true;
|
|
|
+
|
|
|
+
|
|
|
+ if (isset($msie_match[1]) && ($msie_match[1] < $trident_match[1] + 4))
|
|
|
+ $this->_browsers['is_ie_compat_view'] = true;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ $this->_browsers['is_ie7'] = !empty($this->_browsers['is_ie7']) && ($this->_browsers['is_ie_compat_view'] === false);
|
|
|
+ $this->_browsers['is_ie6'] = !empty($this->_browsers['is_ie6']) && ($this->_browsers['is_ie_compat_view'] === false);
|
|
|
+
|
|
|
+
|
|
|
+ if ((!empty($this->_browsers['is_ie7']) && strpos($_SERVER['HTTP_USER_AGENT'], 'IEMobile/7') !== false) || (!empty($this->_browsers['is_ie9']) && strpos($_SERVER['HTTP_USER_AGENT'], 'IEMobile/9') !== false))
|
|
|
+ {
|
|
|
+ $this->_browsers['is_ie_mobi'] = true;
|
|
|
+ $this->_is_mobile = true;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ $this->_browsers += array(
|
|
|
+ 'is_ie4' => !empty($this->_browsers['is_ie4']) && !$this->_browsers['is_web_tv'],
|
|
|
+ 'is_mac_ie' => strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 5.') !== false && strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false
|
|
|
+ );
|
|
|
+
|
|
|
+
|
|
|
+ $this->_browsers['ie_standards_fix'] = (($this->_browsers['is_ie6'] === true) || ($this->_browsers['is_ie7'] === true)) ? true : false;
|
|
|
+
|
|
|
+
|
|
|
+ $this->_browsers['needs_size_fix'] = (!empty($this->_browsers['is_ie5']) || !empty($this->_browsers['is_ie5.5']) || !empty($this->_browsers['is_ie4'])) && !$this->_browsers['is_mac_ie'];
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Additional firefox checks.
|
|
|
+ * - Gets the version of the FF browser in use
|
|
|
+ * - Considers all FF variants as FF including IceWeasel, IceCat, Shiretoko and Minefiled
|
|
|
+ */
|
|
|
+ private function setupFirefox()
|
|
|
+ {
|
|
|
+ if (preg_match('~(?:Firefox|Ice[wW]easel|IceCat|Shiretoko|Minefield)[\/ \(]([^ ;\)]+)~', $_SERVER['HTTP_USER_AGENT'], $match) === 1)
|
|
|
+ $this->_browsers['is_firefox' . (int) $match[1]] = true;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * More Opera checks if we are opera.
|
|
|
+ * - checks for the version of Opera in use
|
|
|
+ * - uses checks for 10 first and falls through to <9
|
|
|
+ */
|
|
|
+ private function setupOpera()
|
|
|
+ {
|
|
|
+
|
|
|
+ if (preg_match('~\sVersion/([0-9]+)\.[0-9]+(?:\s*|$)~', $_SERVER['HTTP_USER_AGENT'], $match))
|
|
|
+ $this->_browsers['is_opera' . (int) $match[1]] = true;
|
|
|
+
|
|
|
+ elseif (preg_match('~Opera[ /]([0-9]+)(?!\\.[89])~', $_SERVER['HTTP_USER_AGENT'], $match))
|
|
|
+ $this->_browsers['is_opera' . (int) $match[1]] = true;
|
|
|
+
|
|
|
+
|
|
|
+ $this->_browsers['needs_size_fix'] = !empty($this->_browsers['is_opera6']);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Get the browser name that we will use in the <body id="this_browser">
|
|
|
+ * - The order of each browser in $browser_priority is important
|
|
|
+ * - if you want to have id='ie6' and not id='ie' then it must appear first in the list of ie browsers
|
|
|
+ * - only sets browsers that may need some help via css for compatablity
|
|
|
+ */
|
|
|
+ private function setupBrowserPriority()
|
|
|
+ {
|
|
|
+ global $context;
|
|
|
+
|
|
|
+ if ($this->_is_mobile)
|
|
|
+ $context['browser_body_id'] = 'mobile';
|
|
|
+ else
|
|
|
+ {
|
|
|
+ $browser_priority = array(
|
|
|
+ 'is_ie6' => 'ie6',
|
|
|
+ 'is_ie7' => 'ie7',
|
|
|
+ 'is_ie' => 'ie',
|
|
|
+ 'is_firefox3' => 'firefox3',
|
|
|
+ 'is_firefox4' => 'firefox4',
|
|
|
+ 'is_firefox' => 'firefox',
|
|
|
+ 'is_chrome' => 'chrome',
|
|
|
+ 'is_safari' => 'safari',
|
|
|
+ 'is_opera8' => 'opera8',
|
|
|
+ 'is_opera9' => 'opera9',
|
|
|
+ 'is_opera10' => 'opera10',
|
|
|
+ 'is_konqueror' => 'konqueror',
|
|
|
+ );
|
|
|
+
|
|
|
+ $context['browser_body_id'] = 'smf';
|
|
|
+ $active = array_reverse(array_keys($this->_browsers, true));
|
|
|
+ foreach ($active as $key => $browser)
|
|
|
+ {
|
|
|
+ if (array_key_exists($browser, $browser_priority))
|
|
|
+ {
|
|
|
+ $context['browser_body_id'] = $browser_priority[$browser];
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Fill out the historical array
|
|
|
+ * - needed to support old mods that don't use isBrowser
|
|
|
+ */
|
|
|
+ function fillInformation()
|
|
|
+ {
|
|
|
+ $this->_browsers += array(
|
|
|
+ 'is_webkit' => false,
|
|
|
+ 'is_opera6' => false,
|
|
|
+ 'is_opera7' => false,
|
|
|
+ 'is_opera8' => false,
|
|
|
+ 'is_opera9' => false,
|
|
|
+ 'is_opera10' => false,
|
|
|
+ 'is_ie4' => false,
|
|
|
+ 'is_mac_ie' => false,
|
|
|
+ 'is_firefox1' => false,
|
|
|
+ 'is_firefox2' => false,
|
|
|
+ 'is_firefox3' => false,
|
|
|
+ 'is_iphone' => false,
|
|
|
+ 'is_android' => false,
|
|
|
+ 'is_chrome' => false,
|
|
|
+ 'is_safari' => false,
|
|
|
+ 'is_ie8' => false,
|
|
|
+ 'is_ie7' => false,
|
|
|
+ 'is_ie6' => false,
|
|
|
+ 'is_ie5.5' => false,
|
|
|
+ 'is_ie5' => false,
|
|
|
+ 'ie_standards_fix' => false,
|
|
|
+ );
|
|
|
+ }
|
|
|
+}
|