X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Fuseragent.php-class;h=dffa0c8fe7633fcbb08b4d531b75384305f5d90d;hp=108649fb81c4d0169dd07e51aedb332599907adc;hb=52e23932d7b7146ce5cd84d611ad83c4b9441969;hpb=31fe75ccee14d470612d1f98c375031406975314 diff --git a/include/classes/useragent.php-class b/include/classes/useragent.php-class index 108649f..dffa0c8 100755 --- a/include/classes/useragent.php-class +++ b/include/classes/useragent.php-class @@ -965,6 +965,11 @@ class userAgent { $this->version = "10.0"; $this->bot = false; } + elseif (preg_match('|Trident\/[0-9a-zA-Z\.+]+; ([^\)]+; )?rv:([0-9\.+]+)|', $this->uastring, $regs)) { + $this->brand = 'Microsoft Internet Explorer'; + $this->version = $regs[2]; + $this->bot = false; + } elseif (preg_match('|MSIE ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { $this->brand = 'Microsoft Internet Explorer'; $this->version = $regs[1]; @@ -1037,7 +1042,13 @@ class userAgent { if (preg_match('|Gecko/([0-9\.]+)|', $this->uastring, $regs) && (strpos($this->brand, 'Opera') === false)) { $this->uadata['engine'] = 'gecko'; // If it looks like a version number, i.e. shorter than 4 chars or has a . in it, it's no date. - $this->uadata['geckodate'] = ((strlen($regs[1]) > 4) && (strpos($regs[1], '.') === false))?$regs[1]:null; + if ((strlen($regs[1]) > 4) && (strpos($regs[1], '.') === false)) { + $this->uadata['geckodate'] = $regs[1]; + } + else { + $this->uadata['geckodate'] = null; + $this->uadata['eng_version'] = $regs[1]; + } } elseif ((strpos($this->brand, 'Internet Explorer') !== false) || (strpos($this->brand, 'FrontPage') !== false)) { if ((strpos(strtolower($this->uastring), 'mac') !== false) && (intval($this->getVersion()) >= 5)) { @@ -1166,6 +1177,12 @@ class userAgent { $this->uadata['eng_version'] = $regs[3]; $this->mobile = ($regs[2] == 'Mobile'); } + elseif (preg_match('#Mozilla/5.0 \((Mobile|Tablet); [^;]+; rv:([^\);]+)\)#', $this->uastring, $regs)) { + $this->uadata['os'] = 'Firefox OS'; + $this->uadata['lang'] = null; + $this->uadata['eng_version'] = $regs[2]; + $this->mobile = ($regs[1] == 'Mobile'); + } elseif (preg_match('|Mozilla/5.0 \(([^;]+); ([^;]+); rv:([^\);]+)\)|', $this->uastring, $regs)) { if ((strpos($regs[2], 'Linux') !== false) && ($regs[1] != 'X11')) { $this->uadata['os'] = $regs[1].' ('.$regs[2].')'; @@ -1181,11 +1198,11 @@ class userAgent { $this->uadata['lang'] = null; $this->uadata['eng_version'] = null; } - elseif (preg_match('|Mozilla/5.0 \(Mobile; rv:([^\);]+)\)|', $this->uastring, $regs)) { + elseif (preg_match('#Mozilla/5.0 \((Mobile|Tablet); rv:([^\);]+)\)#', $this->uastring, $regs)) { $this->uadata['os'] = 'Firefox OS'; $this->uadata['lang'] = null; - $this->uadata['eng_version'] = $regs[1]; - $this->mobile = true; + $this->uadata['eng_version'] = $regs[2]; + $this->mobile = ($regs[1] == 'Mobile'); } elseif (preg_match('|Mozilla/5.0 \(([^;]+); rv:([^\);]+)\)|', $this->uastring, $regs)) { $this->uadata['os'] = $regs[1]; @@ -1204,7 +1221,17 @@ class userAgent { } } elseif ($this->hasEngine('trident') || $this->hasEngine('tasman')) { - if (preg_match('/Mozilla\/[^\(]+ \(compatible *; MSIE [^;]+[^\)]*; ?((?:Mac|Win)[^;]+); ?(Win64|WOW64)[^\)]*Trident\/([^;\)]+)[^\)]*\)/i', $this->uastring, $regs)) { + if (preg_match('/Mozilla\/[^\(]+ \((IE [^;]+[^\)]*; )?((?:Mac|Win)[^;]+); ?(Win64|WOW64); ?Trident\/([^;\)]+);/i', $this->uastring, $regs)) { + $this->uadata['eng_version'] = $regs[4]; + $this->uadata['os'] = $regs[2].' ('.$regs[3].')'; + $this->uadata['lang'] = null; + } + elseif (preg_match('/Mozilla\/[^\(]+ \((IE [^;]+[^\)]*; )?((?:Mac|Win)[^;]+); ?Trident\/([^;\)]+);/i', $this->uastring, $regs)) { + $this->uadata['eng_version'] = $regs[3]; + $this->uadata['os'] = $regs[2]; + $this->uadata['lang'] = null; + } + elseif (preg_match('/Mozilla\/[^\(]+ \(compatible *; MSIE [^;]+[^\)]*; ?((?:Mac|Win)[^;]+); ?(Win64|WOW64)[^\)]*Trident\/([^;\)]+)[^\)]*\)/i', $this->uastring, $regs)) { $this->uadata['eng_version'] = $regs[3]; $this->uadata['os'] = $regs[1].' ('.$regs[2].')'; $this->uadata['lang'] = null; @@ -1456,6 +1483,9 @@ class userAgent { elseif ($this->uadata['os'] == 'Windows NT 6.2') { $this->uadata['os'] = 'Windows 8'; } elseif ($this->uadata['os'] == 'Windows NT 6.2 (Win64)') { $this->uadata['os'] = 'Windows 8 (64bit)'; } elseif ($this->uadata['os'] == 'Windows NT 6.2 (WOW64)') { $this->uadata['os'] = 'Windows 8 (64bit)'; } + elseif ($this->uadata['os'] == 'Windows NT 6.3') { $this->uadata['os'] = 'Windows 8.1'; } + elseif ($this->uadata['os'] == 'Windows NT 6.3 (Win64)') { $this->uadata['os'] = 'Windows 8.1 (64bit)'; } + elseif ($this->uadata['os'] == 'Windows NT 6.3 (WOW64)') { $this->uadata['os'] = 'Windows 8.1 (64bit)'; } elseif ($this->uadata['os'] == 'Win95') { $this->uadata['os'] = 'Windows 95'; } elseif ($this->uadata['os'] == 'Win98') { $this->uadata['os'] = 'Windows 98'; } elseif ($this->uadata['os'] == 'WinNT') { $this->uadata['os'] = 'Windows NT'; } @@ -1510,7 +1540,7 @@ class userAgent { if (strpos($this->uadata['os'], 'Windows Phone OS') !== false) { $this->mobile = true; } elseif (strpos($this->uadata['os'], 'Gameboy') !== false) { $this->mobile = true; } - $this->uadata['lang'] = str_replace('_', '-', $this->uadata['lang']); + $this->uadata['lang'] = str_replace('_', '-', @$this->uadata['lang']); } } return $this->uadata['os'];