add preliminary support for Microsoft's Project Spartan and Edge engine
authorRobert Kaiser <kairo@kairo.at>
Fri, 3 Apr 2015 01:42:38 +0000 (03:42 +0200)
committerRobert Kaiser <kairo@kairo.at>
Fri, 3 Apr 2015 01:42:38 +0000 (03:42 +0200)
include/classes/useragent.php-class
testbed/ua_list_raw.txt

index ee9554368067844dea3fee35991dd5af25ff4102..f5a5f8db6b9f8158d0f343367245eae452fb6906 100755 (executable)
@@ -359,6 +359,11 @@ class userAgent {
       $this->version = $regs[1];
       $this->bot = false;
     }
       $this->version = $regs[1];
       $this->bot = false;
     }
+    elseif (preg_match('|Edge/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
+      $this->brand = 'Project Spartan';
+      $this->version = null;
+      $this->bot = false;
+    }
     elseif (preg_match('|Chromium/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
       $this->brand = 'Chromium';
       $this->version = $regs[1];
     elseif (preg_match('|Chromium/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
       $this->brand = 'Chromium';
       $this->version = $regs[1];
@@ -1055,6 +1060,10 @@ class userAgent {
             $this->uadata['eng_version'] = $regs[1];
           }
         }
             $this->uadata['eng_version'] = $regs[1];
           }
         }
+        elseif (preg_match('|Edge/([0-9\.]+)|', $this->uastring, $regs)) {
+          $this->uadata['engine'] = 'edge';
+          $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)) {
             $this->uadata['engine'] = 'tasman';
         elseif ((strpos($this->brand, 'Internet Explorer') !== false) ||  (strpos($this->brand, 'FrontPage') !== false)) {
           if ((strpos(strtolower($this->uastring), 'mac') !== false) && (intval($this->getVersion()) >= 5)) {
             $this->uadata['engine'] = 'tasman';
@@ -1225,6 +1234,11 @@ class userAgent {
             $this->uadata['eng_version'] = null;
           }
         }
             $this->uadata['eng_version'] = null;
           }
         }
+        elseif ($this->hasEngine('edge')) {
+          if (preg_match('#Mozilla/5.0 \(([^;]+); (WOW64|Win64); ([^\);]+)\)#', $this->uastring, $regs)) {
+            $this->uadata['os'] = $regs[1].' ('.$regs[2].')';
+          }
+        }
         elseif ($this->hasEngine('trident') || $this->hasEngine('tasman')) {
           if (preg_match('/Mozilla\/[^\(]+ \((IE [^;]+[^\)]*; )?((?:Mac|Win)[^;]+); ?(Win64|WOW64); ?Trident\/([^;\)]+);/i', $this->uastring, $regs)) {
             $this->uadata['eng_version'] = $regs[4];
         elseif ($this->hasEngine('trident') || $this->hasEngine('tasman')) {
           if (preg_match('/Mozilla\/[^\(]+ \((IE [^;]+[^\)]*; )?((?:Mac|Win)[^;]+); ?(Win64|WOW64); ?Trident\/([^;\)]+);/i', $this->uastring, $regs)) {
             $this->uadata['eng_version'] = $regs[4];
index 398c9954a1cbefeec8e284f28bf27b25318f89fb..40c1c4d3fe38cca2048e050456ef897ca23452bf 100755 (executable)
@@ -116,6 +116,7 @@ Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040402 Galeon/1.3.14
 Mozilla/5.0 (X11; U; Linux i686) Gecko/20040319 Galeon/1.3.7
 Mozilla/5.0 Galeon/1.2.7 (X11; Linux i686; U;) Gecko/20021204
 Galeon/1.3.7 (IE4 compatible; I; Windows XP) Galeon/1.3.7 Debian/1.3.7.20030803-1
 Mozilla/5.0 (X11; U; Linux i686) Gecko/20040319 Galeon/1.3.7
 Mozilla/5.0 Galeon/1.2.7 (X11; Linux i686; U;) Gecko/20021204
 Galeon/1.3.7 (IE4 compatible; I; Windows XP) Galeon/1.3.7 Debian/1.3.7.20030803-1
+Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36 Edge/12.0
 Microsoft Internet Explorer/4.0b1 (Windows 95)
 Mozilla/1.22 (compatible; MSIE 1.5; Windows NT)
 Mozilla/2.0 (compatible; MSIE 3.01; Windows 95)
 Microsoft Internet Explorer/4.0b1 (Windows 95)
 Mozilla/1.22 (compatible; MSIE 1.5; Windows NT)
 Mozilla/2.0 (compatible; MSIE 3.01; Windows 95)