add mobile Edge support
[php-utility-classes.git] / include / classes / useragent.php-class
CommitLineData
31733e08 1<?php
a5813ca3 2/* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 *
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
9 *
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
14 *
15 * The Original Code is KaiRo's userAgent detection.
16 *
17 * The Initial Developer of the Original Code is
18 * KaiRo - Robert Kaiser.
c863ed1e 19 * Portions created by the Initial Developer are Copyright (C) 2003-2007
a5813ca3 20 * the Initial Developer. All Rights Reserved.
21 *
22 * Contributor(s): Robert Kaiser <kairo@kairo.at>
23 *
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
35 *
36 * ***** END LICENSE BLOCK ***** */
37
31733e08 38class userAgent {
39 // userAgent PHP class
40 // get user agent and tell us what Browser is accessing
41 //
3077a4f6 42 // function __construct([$ua_string])
1defa974 43 // CONSTRUCTOR; reads UA string (or takes the optional given UA string) and gets info from that into our variables.
31733e08 44 //
3077a4f6 45 // private $uastring
31733e08 46 // the plain User Agent string
3077a4f6 47 // private $brand
bf78d3ed 48 // the User Agent brand name
3077a4f6 49 // private $version
31733e08 50 // the User Agent version
3077a4f6 51 // private $bot
a8464009 52 // bool: true if this agent is a bot
31fe75cc
RK
53 // private $mobile
54 // bool: true if this agent is a mobile phone
3077a4f6 55 // private $uadata
f983aa36 56 // array of static user agent data (static vars in functions are set for all objects of this class!)
31733e08 57 //
3077a4f6 58 // public function getBrand()
23585ba2 59 // returns the User Agent Brand Name
bf78d3ed 60 //
3077a4f6 61 // public function getVersion()
23585ba2 62 // returns the User Agent version
63 //
3077a4f6 64 // public function getAcceptLanguages()
4210e7b0 65 // returns an associated array with the accepted languages of this UA
66 // keys are language codes, values are q factors (weights)
67 //
3077a4f6 68 // public function getUAString()
f983aa36 69 // returns the full User Agent string
70 //
3077a4f6 71 // public function getEngine()
bf78d3ed 72 // returns a string telling the detected rendering engine, null if we can't detect
c18a4476 73 // one of gecko|khtml|trident|tasman|nscp|presto|gzilla|gtkhtml|links|icestorm|unknown
bf78d3ed 74 //
3077a4f6 75 // public function hasEngine($rnd_engine)
bf78d3ed 76 // returns true if the given rendering engine was detected
77 //
3077a4f6 78 // public function getEngineVersion()
bf78d3ed 79 // returns a the version number for the rendering engine
80 // this may be the same as getVersion() for many engines, or null if we don't know
81 //
3077a4f6 82 // public function getOS()
bf78d3ed 83 // returns a string telling the detected operating system, null if we can't detect
84 // might be very verbose, uses no abbreviations for most names
85 //
3077a4f6 86 // public function getPlatform()
bf78d3ed 87 // returns a string telling the detected OS platform, null if we can't detect
ac9220c2 88 // one of windows|linux|mac|solaris|unknown
bf78d3ed 89 //
3077a4f6 90 // public function getLanguage() {
bf78d3ed 91 // returns a string telling the detected browser UI language, null if we can't detect
92 // should be an ISO code
93 //
3077a4f6 94 // public function isBot()
a8464009 95 // returns true if User Agent seems to be a bot
bf78d3ed 96 //
31fe75cc
RK
97 // public function isMobile()
98 // returns true if User Agent seems to be a mobile phone
99 //
bf78d3ed 100 // *** functions that only return useable info for some agents ***
101 //
3077a4f6 102 // public function getGeckoDate()
bf78d3ed 103 // returns the Gecko date for Gecko-based browsers, null for others
104 //
a3e499ad
RK
105 // public function getGeckoTime()
106 // returns the Gecko build date/time as a unix epoch time number for Gecko-based browsers, null for others
107 //
bf78d3ed 108 // *** functions for compat to older versions of this class ***
109 //
3077a4f6 110 // public function isns()
31733e08 111 // returns true if User Agent seems to be Netscape brand, false if not
3077a4f6 112 // public function isns4()
31733e08 113 // returns true if User Agent seems to be Netscape Communicator 4.x, false if not
3077a4f6 114 // public function isie()
31733e08 115 // returns true if User Agent seems to be a version of Internet Exploder, false if not
3077a4f6 116 // public function geckobased()
31733e08 117 // returns true if User Agent seems to be a Gecko-based browser, false if not
3077a4f6 118 // public function geckodate()
31733e08 119 // returns the Gecko date when it's a Gecko-based browser, 0 if not
3077a4f6 120 // public function khtmlbased()
1defa974 121 // returns true if User Agent seems to be a KHTML-based browser, false if not
122
123 // collection of some known User Agent Strings:
bf78d3ed 124 // *** see testbed/ua_list_raw.txt ***
125 // *** see also http://www.pgts.com.au/pgtsj/pgtsj0208c.html ***
31733e08 126
3077a4f6 127 private $uastring;
128 private $brand;
129 private $version;
130 private $bot = false;
31fe75cc 131 private $mobile = false;
3077a4f6 132 private $uadata = array();
31733e08 133
3077a4f6 134 function __construct($ua_string = '') {
31733e08 135 // *** constructor ***
1defa974 136 if (strlen($ua_string)) {
137 $this->uastring = $ua_string;
138 }
139 else {
140 // read raw UA string
4210e7b0 141 $this->uastring = $_SERVER['HTTP_USER_AGENT'];
1defa974 142 }
31733e08 143
144 // get UA brand and version
bf78d3ed 145 $this->brand = 'Unknown'; $this->version = null;
146 // find reasonable defaults
06c9b824 147 if (preg_match('|([0-9a-zA-Z\.:()_ -]+)/(\d[0-9a-zA-Z\._+-]*)|', $this->uastring, $regs)) {
bf78d3ed 148 $this->brand = trim($regs[1]);
149 $this->version = $regs[2];
150 }
06c9b824 151 elseif (preg_match('|^([a-zA-Z\._ -]+)[_ -][vV]?(\d[0-9a-zA-Z\.+]*)|', $this->uastring, $regs)) {
bf78d3ed 152 $this->brand = trim($regs[1]);
153 $this->version = $regs[2];
154 }
06c9b824 155 elseif (preg_match('|^([0-9a-zA-Z\._ -]+)|', $this->uastring, $regs)) {
bf78d3ed 156 $this->brand = trim($regs[1]);
157 $this->version = null;
158 }
81e72a3e 159 $this->bot = (strpos(strtolower($this->brand), 'bot') !== false)
160 || (strpos(strtolower($this->brand), 'crawler') !== false)
06c9b824
RK
161 || (strpos(strtolower($this->brand), 'spider') !== false)
162 || (strpos(strtolower($this->brand), 'search') !== false)
163 || (strpos(strtolower($this->brand), 'seek') !== false);
81e72a3e 164
bf78d3ed 165 // search for any real and/or special UAs
166 if (preg_match('|Netscape6/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
167 $this->brand = 'Netscape';
31733e08 168 $this->version = $regs[1];
81e72a3e 169 $this->bot = false;
31733e08 170 }
bf78d3ed 171 elseif (preg_match('|Netscape/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
172 $this->brand = 'Netscape';
31733e08 173 $this->version = $regs[1];
81e72a3e 174 $this->bot = false;
31733e08 175 }
208cf837
RK
176 elseif (preg_match('|Navigator/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
177 $this->brand = 'Netscape';
178 $this->version = $regs[1];
179 $this->bot = false;
180 }
bf78d3ed 181 elseif (preg_match('|Chimera/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
182 $this->brand = 'Chimera';
1defa974 183 $this->version = $regs[1];
81e72a3e 184 $this->bot = false;
1defa974 185 }
bf78d3ed 186 elseif (preg_match('|Camino/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
187 $this->brand = 'Camino';
a5813ca3 188 $this->version = $regs[1];
81e72a3e 189 $this->bot = false;
a5813ca3 190 }
bf78d3ed 191 elseif (preg_match('|Phoenix/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
192 $this->brand = 'Phoenix';
1defa974 193 $this->version = $regs[1];
81e72a3e 194 $this->bot = false;
1defa974 195 }
bf78d3ed 196 elseif (preg_match('|Mozilla Firebird/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
197 $this->brand = 'Mozilla Firebird';
23585ba2 198 $this->version = $regs[1];
81e72a3e 199 $this->bot = false;
23585ba2 200 }
c18a4476 201 elseif (preg_match('|Flock/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
202 $this->brand = 'Flock';
203 $this->version = $regs[1];
204 $this->bot = false;
205 }
b24eb888 206 elseif (preg_match('|SeaMonkey/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
207 $this->brand = 'SeaMonkey';
208 $this->version = $regs[1];
81e72a3e 209 $this->bot = false;
b24eb888 210 }
c18a4476 211 elseif (preg_match('|Iceape/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
9c17eb15 212 $this->brand = 'IceApe'; // Debian-rebranded SeaMonkey
c18a4476 213 $this->version = $regs[1];
214 $this->bot = false;
215 }
216 elseif (preg_match('|Iceweasel/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
9c17eb15
RK
217 $this->brand = 'IceWeasel'; // Debian-rebranded Firefox
218 $this->version = $regs[1];
219 $this->bot = false;
220 }
221 elseif (preg_match('|Icedove/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
222 $this->brand = 'IceDove'; // Debian-rebranded Thunderbird
c18a4476 223 $this->version = $regs[1];
224 $this->bot = false;
225 }
1c090da4 226 elseif (preg_match('|BonEcho/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
9c17eb15 227 $this->brand = 'Bon Echo'; // Firefox 2.0 code name
1c090da4
RK
228 $this->version = $regs[1];
229 $this->bot = false;
230 }
231 elseif (preg_match('|GranParadiso/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
9c17eb15 232 $this->brand = 'Gran Paradiso'; // Firefox 3.0 code name
1c090da4
RK
233 $this->version = $regs[1];
234 $this->bot = false;
235 }
236 elseif (preg_match('|Shiretoko/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
9c17eb15 237 $this->brand = 'Shiretoko'; // Firefox 3.5 code name
1c090da4
RK
238 $this->version = $regs[1];
239 $this->bot = false;
240 }
241 elseif (preg_match('|Namoroka/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
9c17eb15
RK
242 $this->brand = 'Namoroka'; // Firefox 3.6 code name
243 $this->version = $regs[1];
244 $this->bot = false;
245 }
246 elseif (preg_match('|Lorentz/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
247 $this->brand = 'Lorentz'; // Firefox 3.6 (with OOPP) code name
1c090da4
RK
248 $this->version = $regs[1];
249 $this->bot = false;
250 }
208cf837 251 elseif (preg_match('|Minefield/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
9c17eb15 252 $this->brand = 'Minefield'; // Firefox development nightly code name
208cf837
RK
253 $this->version = $regs[1];
254 $this->bot = false;
255 }
1c090da4
RK
256 elseif (preg_match('|PmWFx/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
257 $this->brand = 'PmW-Firefox';
258 $this->version = $regs[1];
259 $this->bot = false;
260 }
261 elseif (preg_match('|BeZillaBrowser/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
262 $this->brand = 'BeZillaBrowser';
263 $this->version = $regs[1];
264 $this->bot = false;
265 }
266 elseif (preg_match('|Songbird/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
267 $this->brand = 'Songbird';
268 $this->version = $regs[1];
269 $this->bot = false;
270 }
9c17eb15
RK
271 elseif (preg_match('|Lanikai/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
272 $this->brand = 'Lanikai'; // Thunderbird 3.1 code name
273 $this->version = $regs[1];
274 $this->bot = false;
275 }
1c090da4 276 elseif (preg_match('|Shredder/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
9c17eb15 277 $this->brand = 'Shredder'; // Thunderbird development nightly code name
1c090da4
RK
278 $this->version = $regs[1];
279 $this->bot = false;
280 }
281 elseif (preg_match('|prism/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
282 $this->brand = 'Prism';
283 $this->version = $regs[1];
284 $this->bot = false;
285 }
208cf837
RK
286 elseif (preg_match('|Minimo/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
287 $this->brand = 'Minimo';
288 $this->version = $regs[1];
289 $this->bot = false;
31fe75cc 290 $this->mobile = true;
208cf837 291 }
1c090da4 292 elseif (preg_match('|Fennec/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
9c17eb15 293 $this->brand = 'Fennec'; // Firefox mobile code name
1c090da4
RK
294 $this->version = $regs[1];
295 $this->bot = false;
31fe75cc 296 $this->mobile = true;
1c090da4 297 }
bf78d3ed 298 elseif (preg_match('|Galeon/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
299 $this->brand = 'Galeon';
31733e08 300 $this->version = $regs[1];
81e72a3e 301 $this->bot = false;
31733e08 302 }
6e783db6 303 elseif (preg_match('|Epiphany/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
304 $this->brand = 'Epiphany';
305 $this->version = $regs[1];
81e72a3e 306 $this->bot = false;
6e783db6 307 }
308 elseif (preg_match('|K-Meleon/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
309 $this->brand = 'K-Meleon';
310 $this->version = $regs[1];
81e72a3e 311 $this->bot = false;
6e783db6 312 }
313 elseif (preg_match('|AOL[/ ]([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
314 $this->brand = 'AOL';
315 $this->version = $regs[1];
81e72a3e 316 $this->bot = false;
6e783db6 317 }
646effd3
RK
318 elseif (preg_match('|Tablet browser ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
319 $this->brand = 'microB';
320 $this->version = $regs[1];
321 $this->bot = false;
31fe75cc 322 $this->mobile = true;
646effd3 323 }
fe42635c
RK
324 elseif (preg_match('|Maemo Browser ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
325 $this->brand = 'microB';
326 $this->version = $regs[1];
327 $this->bot = false;
31fe75cc 328 $this->mobile = true;
fe42635c 329 }
c18a4476 330 elseif (preg_match('|Opera\/([^\(]+) \(.*; Opera Mini; |', $this->uastring, $regs)) {
331 $this->brand = 'Opera Mini';
332 $this->version = $regs[1];
333 $this->bot = false;
31fe75cc 334 $this->mobile = true;
c18a4476 335 }
336 elseif (preg_match('/Opera\/[^\(]+ \(.*; Opera Mini\/([^;]+); /i', $this->uastring, $regs)) {
337 $this->brand = 'Opera Mini';
338 $this->version = $regs[1];
339 $this->bot = false;
31fe75cc 340 $this->mobile = true;
c18a4476 341 }
bf78d3ed 342 elseif (preg_match('|Opera[ /]([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
343 $this->brand = 'Opera';
31733e08 344 $this->version = $regs[1];
81e72a3e 345 $this->bot = false;
31733e08 346 }
c18a4476 347 elseif (preg_match('|OmniWeb/([0-9a-zA-Z\.+-]+)|', $this->uastring, $regs)) {
bf78d3ed 348 $this->brand = 'OmniWeb';
1defa974 349 $this->version = $regs[1];
81e72a3e 350 $this->bot = false;
1defa974 351 }
d7aaf1da 352 elseif (preg_match('|Konqueror/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
bf78d3ed 353 $this->brand = 'Konqueror';
31733e08 354 $this->version = $regs[1];
81e72a3e 355 $this->bot = false;
31733e08 356 }
c18a4476 357 elseif (preg_match('|Shiira/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
358 $this->brand = 'Shiira';
359 $this->version = $regs[1];
360 $this->bot = false;
361 }
3cd2b543 362 elseif (preg_match('|Edge/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
cbdcb617
RK
363 $this->brand = 'Edge';
364 $this->version = $regs[1];
3cd2b543 365 $this->bot = false;
d87e7412 366 $this->mobile = preg_match('| Mobile |', $this->uastring);
3cd2b543 367 }
d09178b6
RK
368 elseif (preg_match('|Chromium/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
369 $this->brand = 'Chromium';
370 $this->version = $regs[1];
371 $this->bot = false;
372 }
895f2433
RK
373 elseif (preg_match('|Chrome/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
374 $this->brand = 'Chrome';
375 $this->version = $regs[1];
376 $this->bot = false;
377 }
1c6b27e7
RK
378 elseif (preg_match('|NokiaBrowser/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
379 $this->brand = 'NokiaBrowser';
380 $this->version = $regs[1];
381 $this->bot = false;
382 }
ff8d4ab2
RK
383 elseif (preg_match('|wOSBrowser/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
384 $this->brand = 'webOS Browser';
385 $this->version = $regs[1];
386 $this->bot = false;
387 }
388 elseif (preg_match('|Silk/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
389 $this->brand = 'Silk';
390 $this->version = $regs[1];
391 $this->bot = false;
392 }
393 elseif (preg_match('|Kindle/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
394 $this->brand = 'Kindle';
395 $this->version = $regs[1];
396 $this->bot = false;
397 }
398 elseif (preg_match('|Pre/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
399 $this->brand = 'Pre';
400 $this->version = $regs[1];
401 $this->bot = false;
402 }
403 elseif (preg_match('|BOLT/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
404 $this->brand = 'BOLT';
405 $this->version = $regs[1];
406 $this->bot = false;
407 }
d09178b6
RK
408 elseif (preg_match('|Googlebot-Mobile/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { /* looks like Webkit! */
409 $this->brand = 'Googlebot-Mobile';
410 $this->version = $regs[1];
411 $this->bot = true;
412 $this->mobile = true;
413 }
38123d97
RK
414 elseif (preg_match('|FxiOS/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
415 $this->brand = 'Firefox for iOS';
416 $this->version = $regs[1];
417 $this->bot = false;
418 $this->mobile = true;
419 }
bf78d3ed 420 elseif (preg_match('|Safari/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
31fe75cc 421 if (preg_match('| Mobile(/[0-9a-zA-Z\.+]+)? ?Safari/|', $this->uastring)) {
ff8d4ab2 422 $this->brand = 'Mobile Safari';
31fe75cc 423 $this->mobile = true;
ff8d4ab2
RK
424 }
425 else {
426 $this->brand = 'Safari';
427 }
588763e6
RK
428 if (preg_match('|Version/([0-9a-zA-Z\.+]+)|', $this->uastring, $vregs)) {
429 $this->version = $vregs[1];
430 }
431 else {
432 $this->version = '('.$regs[1].')';
433 }
81e72a3e 434 $this->bot = false;
1defa974 435 }
bf78d3ed 436 elseif (preg_match('|AppleWebKit/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
437 $this->brand = 'AppleWebKit';
1defa974 438 $this->version = $regs[1];
81e72a3e 439 $this->bot = false;
1defa974 440 }
1c090da4
RK
441 elseif (preg_match('|Spinn3r ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { /* looks like Gecko! */
442 $this->brand = 'Spinn3r';
443 $this->version = $regs[1];
444 $this->bot = true;
445 }
446 elseif (preg_match('|Butterfly/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { /* looks like Gecko! */
447 $this->brand = 'Butterfly';
448 $this->version = $regs[1];
449 $this->bot = true;
450 }
451 elseif (preg_match('|Googlebot/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { /* looks like Gecko! */
452 $this->brand = 'Googlebot';
453 $this->version = $regs[1];
454 $this->bot = true;
455 }
208cf837
RK
456 elseif (preg_match('|Firefox/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
457 $this->brand = 'Firefox';
458 $this->version = $regs[1];
459 $this->bot = false;
460 }
1c090da4
RK
461 elseif (preg_match('|Thunderbird/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
462 $this->brand = 'Thunderbird';
463 $this->version = $regs[1];
464 $this->bot = false;
465 }
208cf837
RK
466 elseif (preg_match('|rv:([0-9a-zA-Z\.+]+)|', $this->uastring, $regs) &&
467 strstr($this->uastring, "Mozilla/") && strstr($this->uastring, "Gecko/")) {
468 $this->brand = 'Mozilla';
469 $this->version = $regs[1];
470 $this->bot = false;
471 }
472 elseif (preg_match('|m([0-9]+)\)|', $this->uastring, $regs) &&
473 strstr($this->uastring, "Mozilla/") && strstr($this->uastring, "Gecko/")) {
474 $this->brand = 'Mozilla';
475 $this->version = 'M'.$regs[1];
476 $this->bot = false;
477 }
1c090da4
RK
478 elseif (preg_match('|Baiduspider|i', $this->uastring)) {
479 $this->brand = 'BaiDuSpider';
480 $this->version = null;
481 $this->bot = true;
482 }
483 elseif (preg_match('|YodaoBot-Mobile/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { /* looks like Gecko! */
484 $this->brand = 'YodaoBot-Mobile';
485 $this->version = $regs[1];
486 $this->bot = true;
31fe75cc 487 $this->mobile = true;
1c090da4 488 }
1c090da4
RK
489 elseif (preg_match('|FASTMobileCrawl/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { /* looks like Gecko! */
490 $this->brand = 'FASTMobileCrawl';
491 $this->version = $regs[1];
492 $this->bot = true;
31fe75cc 493 $this->mobile = true;
1c090da4 494 }
bf78d3ed 495 elseif (preg_match('|MSFrontPage/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
496 $this->brand = 'Microsoft FrontPage';
f983aa36 497 $this->version = $regs[1];
81e72a3e 498 $this->bot = false;
f983aa36 499 }
bf78d3ed 500 elseif (preg_match('|iCab[/ ]([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
501 $this->brand = 'iCab';
a8464009 502 $this->version = $regs[1];
81e72a3e 503 $this->bot = false;
a8464009 504 }
bf78d3ed 505 elseif (preg_match('|IBrowse[/ ]([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
506 $this->brand = 'IBrowse';
a8464009 507 $this->version = $regs[1];
81e72a3e 508 $this->bot = false;
a8464009 509 }
c18a4476 510 elseif (preg_match('|ICEbrowser/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
511 $this->brand = 'ICEbrowser';
512 $this->version = $regs[1];
513 $this->bot = false;
514 }
515 elseif (preg_match('|ICE Browser/v([0-9a-zA-Z\._+]+)|', $this->uastring, $regs)) {
516 $this->brand = 'ICEbrowser';
517 $this->version = str_replace('_', '.', $regs[1]);
518 $this->bot = false;
519 }
520 elseif (preg_match('|NetPositive/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
521 $this->brand = 'NetPositive';
522 $this->version = $regs[1];
523 $this->bot = false;
524 }
525 elseif (preg_match('|WebPro/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
526 $this->brand = 'WebPro (Novarra)';
527 $this->version = $regs[1];
528 $this->bot = false;
529 }
530 elseif (preg_match('|; OffByOne;|', $this->uastring, $regs)) {
531 $this->brand = 'Off By One';
532 $this->version = null;
533 $this->bot = false;
534 }
535 elseif (preg_match('|PSP \(PlayStation Portable\); ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
536 $this->brand = 'PlayStation Portable';
537 $this->version = $regs[1];
538 $this->bot = false;
31fe75cc 539 $this->mobile = true;
c18a4476 540 }
b50f91ef 541 elseif (preg_match('|PLAYSTATION 3; ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
542 $this->brand = 'PlayStation 3';
543 $this->version = $regs[1];
544 $this->bot = false;
545 }
c18a4476 546 elseif (preg_match('|NetFront/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
547 $this->brand = 'NetFront';
a8464009 548 $this->version = $regs[1];
81e72a3e 549 $this->bot = false;
31fe75cc 550 $this->mobile = true;
a8464009 551 }
6e783db6 552 elseif (preg_match('|UP.Browser/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
553 $this->brand = 'UP.Browser';
554 $this->version = $regs[1];
81e72a3e 555 $this->bot = false;
31fe75cc 556 $this->mobile = true;
6e783db6 557 }
c18a4476 558 elseif (preg_match('|UP.Link/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
559 $this->brand = 'UP.Link';
560 $this->version = $regs[1];
561 $this->bot = false;
31fe75cc 562 $this->mobile = true;
c18a4476 563 }
564 elseif (preg_match('|AU-MIC-([0-9A-Z]+/[0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
565 $this->brand = 'Obigo';
566 $this->version = $regs[1];
567 $this->bot = false;
31fe75cc 568 $this->mobile = true;
c18a4476 569 }
1c090da4
RK
570 elseif (preg_match('|Browser/Obigo-([0-9A-Z]+/[0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
571 $this->brand = 'Obigo';
572 $this->version = $regs[1];
573 $this->bot = false;
31fe75cc 574 $this->mobile = true;
1c090da4 575 }
c18a4476 576 elseif (preg_match('|Nokia([0-9a-zA-Z]+/[0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
577 $this->brand = 'Nokia';
578 $this->version = $regs[1];
579 $this->bot = false;
31fe75cc 580 $this->mobile = true;
c18a4476 581 }
582 elseif (preg_match('|SonyEricsson([0-9a-zA-Z]+/[0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
583 $this->brand = 'SonyEricsson';
584 $this->version = $regs[1];
585 $this->bot = false;
31fe75cc 586 $this->mobile = true;
c18a4476 587 }
588 elseif (preg_match('|SIE-([0-9a-zA-Z]+/[0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
589 $this->brand = 'Siemens';
590 $this->version = $regs[1];
591 $this->bot = false;
31fe75cc 592 $this->mobile = true;
c18a4476 593 }
594 elseif (preg_match('|MOT-([0-9a-zA-Z]+/[0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
595 $this->brand = 'Motorola';
596 $this->version = $regs[1];
597 $this->bot = false;
31fe75cc 598 $this->mobile = true;
c18a4476 599 }
b50f91ef 600 elseif (preg_match('|IXI/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
601 $this->brand = 'IXI';
602 $this->version = $regs[1];
603 $this->bot = false;
31fe75cc 604 $this->mobile = true;
b50f91ef 605 }
1c090da4
RK
606 elseif (preg_match('|NewsFox/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
607 $this->brand = 'NewsFox';
608 $this->version = $regs[1];
609 $this->bot = false;
610 }
611 elseif (preg_match('|rdfbot/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
612 $this->brand = 'rdfbot';
613 $this->version = $regs[1];
614 $this->bot = false;
615 }
c18a4476 616 elseif (preg_match('|IBM-WebExplorer-DLL/v([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
617 $this->brand = 'WebExplorer';
618 $this->version = $regs[1];
619 $this->bot = false;
620 }
bf78d3ed 621 elseif (preg_match('|ELinks \(([0-9a-zA-Z\.+]+);|', $this->uastring, $regs)) {
622 $this->brand = 'ELinks';
a8464009 623 $this->version = $regs[1];
81e72a3e 624 $this->bot = false;
a8464009 625 }
6e783db6 626 elseif (preg_match('|Links \(([0-9a-zA-Z\.+]+);|', $this->uastring, $regs)) {
627 $this->brand = 'Links';
628 $this->version = $regs[1];
81e72a3e 629 $this->bot = false;
6e783db6 630 }
b50f91ef 631 elseif (preg_match('|WinHttp.WinHttpRequest.([0-9\.]+)|i', $this->uastring, $regs)) {
632 $this->brand = 'WinHttpRequest';
633 $this->version = $regs[1];
634 $this->bot = false;
635 }
636 elseif (preg_match('|alpha[/ ]06; AmigaOS|i', $this->uastring, $regs)) {
637 $this->brand = 'Alpha 06';
638 $this->version = null;
639 $this->bot = false;
640 }
641 elseif (preg_match('|; arexx[\);]|i', $this->uastring, $regs)) {
c18a4476 642 $this->brand = 'ARexx';
643 $this->version = null;
644 $this->bot = false;
645 }
b50f91ef 646 elseif (preg_match('|; Voyager; AmigaOS[\);]|i', $this->uastring, $regs)) {
647 $this->brand = 'AmigaVoyager';
648 $this->version = null;
649 $this->bot = false;
650 }
651 elseif (preg_match('|AWEB ([0-9a-zA-Z\.+ ]+)|', $this->uastring, $regs)) {
652 $this->brand = 'AWEB';
653 $this->version = $regs[1];
654 $this->bot = false;
655 }
656 elseif (preg_match('|X ([0-9a-zA-Z\.+ ]+); Commodore 64|', $this->uastring, $regs)) {
657 $this->brand = 'X';
658 $this->version = $regs[1];
659 $this->bot = false;
660 }
661 elseif (preg_match('|DB Browse ([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
662 $this->brand = 'DB Browse';
663 $this->version = $regs[1];
664 $this->bot = false;
665 }
bf78d3ed 666 elseif (preg_match('|ZyBorg/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
667 $this->brand = 'ZyBorg';
a8464009 668 $this->version = $regs[1];
669 $this->bot = true;
670 }
bf78d3ed 671 elseif (preg_match('|Ask Jeeves/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
672 $this->brand = 'Ask Jeeves';
a8464009 673 $this->version = $regs[1];
674 $this->bot = true;
675 }
4e8c44da 676 elseif (preg_match('|heritrix/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
677 $this->brand = 'Heritrix';
678 $this->version = $regs[1];
679 $this->bot = true;
680 }
1c090da4
RK
681 elseif (preg_match('|heritrix([0-9a-zA-Z\.+-]+)|', $this->uastring, $regs)) {
682 $this->brand = 'Heritrix';
683 $this->version = str_replace('-', '.', $regs[1]);
684 $this->bot = true;
685 }
686 elseif (preg_match('|SBSearch/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
687 $this->brand = 'SBSearch';
688 $this->version = $regs[1];
689 $this->bot = true;
690 }
691 elseif (preg_match('|Powermarks/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
692 $this->brand = 'Powermarks';
693 $this->version = $regs[1];
694 $this->bot = true;
695 }
696 elseif (preg_match('|TopBlogsInfo/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
697 $this->brand = 'TopBlogsInfo';
698 $this->version = $regs[1];
699 $this->bot = true;
700 }
701 elseif (preg_match('|picmole/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
702 $this->brand = 'picmole';
703 $this->version = $regs[1];
704 $this->bot = true;
705 }
706 elseif (preg_match('|([0-9a-zA-Z\._+-]+bot)/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
b50f91ef 707 $this->brand = $regs[1];
708 $this->version = $regs[2];
709 $this->bot = true;
710 }
711 elseif (preg_match('|VoilaBot ((BETA )?[0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
712 $this->brand = 'VoilaBot';
713 $this->version = $regs[1];
714 $this->bot = true;
715 }
c51ab9a2 716 elseif (preg_match('|Slurp|', $this->uastring, $regs)) {
bf78d3ed 717 $this->brand = 'Slurp';
c51ab9a2 718 $this->version = null;
a8464009 719 $this->bot = true;
720 }
b50f91ef 721 elseif (preg_match('|Check&amp;Get ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
722 $this->brand = 'Check&Get';
723 $this->version = $regs[1];
724 $this->bot = true;
725 }
726 elseif (preg_match('|WebCapture ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
727 $this->brand = 'WebCapture';
728 $this->version = $regs[1];
729 $this->bot = true;
730 }
731 elseif (preg_match('|WebMon ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
732 $this->brand = 'WebMon';
733 $this->version = $regs[1];
734 $this->bot = true;
735 }
bf78d3ed 736 elseif (preg_match('|Gulper Web Bot ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
737 $this->brand = 'Gulper Web Bot';
a8464009 738 $this->version = $regs[1];
739 $this->bot = true;
740 }
bf78d3ed 741 elseif (preg_match('|HTTrack ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
742 $this->brand = 'HTTrack';
a8464009 743 $this->version = $regs[1];
744 $this->bot = true;
745 }
1c090da4
RK
746 elseif (preg_match('|Advista Crawler ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
747 $this->brand = 'HTTrack';
748 $this->version = $regs[1];
749 $this->bot = true;
750 }
751 elseif (preg_match('|Seznam screenshot-generator ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
752 $this->brand = 'Seznam screenshot-generator';
753 $this->version = $regs[1];
754 $this->bot = true;
755 }
756 elseif (preg_match('|Yahoo! SearchMonkey ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
757 $this->brand = 'Yahoo! SearchMonkey';
758 $this->version = $regs[1];
759 $this->bot = true;
760 }
761 elseif (preg_match('|Yahoo Pipes ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
762 $this->brand = 'Yahoo! Pipes';
763 $this->version = $regs[1];
764 $this->bot = true;
765 }
766 elseif (preg_match('|Firebat ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
767 $this->brand = 'Firebat';
768 $this->version = $regs[1];
769 $this->bot = true;
770 }
b50f91ef 771 elseif (preg_match('|Twiceler-([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
772 $this->brand = 'Twiceler';
773 $this->version = $regs[1];
774 $this->bot = true;
775 }
1c090da4
RK
776 elseif (preg_match('|Nu_?tch-([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
777 $this->brand = 'Nutch';
778 $this->version = $regs[1];
779 $this->bot = true;
780 }
5b8eba2a 781 elseif (preg_match('|Microsoft URL Control - ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
782 $this->brand = 'Microsoft URL Control';
783 $this->version = $regs[1];
784 $this->bot = true;
785 }
81e72a3e 786 elseif (preg_match('|([0-9a-zA-Z\.+]+)_AC-Plug|', $this->uastring, $regs)) {
787 $this->brand = 'AC-Plug';
788 $this->version = $regs[1];
789 $this->bot = true;
790 }
bf78d3ed 791 elseif (preg_match('|^Internet Explorer 5.5|', $this->uastring)) {
792 $this->brand = 'Unknown bot (IE5.5)';
793 $this->version = null;
a8464009 794 $this->bot = true;
795 }
bf78d3ed 796 elseif (preg_match('|^Mozilla[\s ]*$|', $this->uastring)) {
797 $this->brand = 'Unknown bot (Mozilla)';
798 $this->version = null;
a8464009 799 $this->bot = true;
800 }
1c090da4
RK
801 elseif (preg_match('|ICCrawler|i', $this->uastring, $regs)) {
802 $this->brand = 'ICCrawler';
803 $this->version = null;
804 $this->bot = true;
805 }
806 elseif (preg_match('|KaloogaBot|', $this->uastring, $regs)) {
807 $this->brand = 'KaloogaBot';
808 $this->version = null;
809 $this->bot = true;
810 }
811 elseif (preg_match('|ScoutJet|', $this->uastring, $regs)) {
812 $this->brand = 'ScoutJet';
813 $this->version = null;
814 $this->bot = true;
815 }
b50f91ef 816 elseif (preg_match('|http://www.livedir.net|', $this->uastring, $regs)) {
817 $this->brand = 'livedir.net';
818 $this->version = null;
819 $this->bot = true;
820 }
821 elseif (preg_match('|WebClipping.com|', $this->uastring, $regs)) {
822 $this->brand = 'WebClipping.com';
823 $this->version = null;
824 $this->bot = true;
825 }
1c090da4
RK
826 elseif (preg_match('|newstin.com|', $this->uastring, $regs)) {
827 $this->brand = 'newstin.com';
828 $this->version = null;
829 $this->bot = true;
830 }
bf78d3ed 831 elseif (preg_match('|http://www.almaden.ibm.com/cs/crawler|', $this->uastring)) {
832 $this->brand = 'almaden crawler';
833 $this->version = null;
a8464009 834 $this->bot = true;
835 }
b50f91ef 836 elseif (preg_match('|B-l-i-t-z-B-O-T|', $this->uastring) ||
837 preg_match('|B l i t z B O T @ t r i c u s . n e t|', $this->uastring)) {
bf78d3ed 838 $this->brand = 'BlitzBOT';
839 $this->version = null;
a8464009 840 $this->bot = true;
841 }
b50f91ef 842 elseif (preg_match('|Really Gmane.org\'s favicon grabber|', $this->uastring)) {
843 $this->brand = 'Really Gmane.org\'s favicon grabber';
844 $this->version = null;
845 $this->bot = true;
846 }
bf78d3ed 847 elseif (preg_match('|Girafabot|', $this->uastring)) {
848 $this->brand = 'Girafabot';
849 $this->version = null;
a8464009 850 $this->bot = true;
851 }
b50f91ef 852 elseif (preg_match('|Arachmo|', $this->uastring)) {
853 $this->brand = 'Arachmo';
854 $this->version = null;
855 $this->bot = true;
856 }
857 elseif (preg_match('|OsO|', $this->uastring)) {
858 $this->brand = 'OsO';
859 $this->version = null;
860 $this->bot = true;
861 }
862 elseif (preg_match('|Yoono|', $this->uastring)) {
863 $this->brand = 'Yoono';
864 $this->version = null;
865 $this->bot = true;
866 }
bf78d3ed 867 elseif (preg_match('|efp@gmx.net|', $this->uastring)) {
868 $this->brand = 'efp';
869 $this->version = null;
a8464009 870 $this->bot = true;
871 }
81e72a3e 872 elseif (preg_match('|Indy Library|', $this->uastring)) {
873 $this->brand = 'Indy Library';
874 $this->version = null;
875 $this->bot = true;
876 }
b50f91ef 877 elseif (preg_match('|Linkman|', $this->uastring)) {
878 $this->brand = 'Linkman';
879 $this->version = null;
880 $this->bot = true;
881 }
882 elseif (preg_match('|Sage|', $this->uastring, $regs)) {
883 $this->brand = 'Sage';
884 $this->version = null;
885 $this->bot = true;
886 }
887 elseif (preg_match('|Google Desktop|', $this->uastring)) {
888 $this->brand = 'Google Desktop';
889 $this->version = null;
890 $this->bot = true;
891 }
bf78d3ed 892 elseif (preg_match('|^Firefly|', $this->uastring)) {
893 // comes here with correct value but would be detected as MSIE
a8464009 894 }
81e72a3e 895 elseif (preg_match('|Steganos Internet Anonym([0-9a-zA-Z\. +]*)|', $this->uastring, $regs)) {
896 $this->brand = 'Steganos Internet Anonym';
897 $this->version = $regs[1];
898 $this->bot = false;
899 }
b50f91ef 900 elseif (preg_match('|Steganos Internet Anonym([0-9a-zA-Z\. +]*)|', $this->uastring, $regs)) {
901 $this->brand = 'Steganos Internet Anonym';
902 $this->version = $regs[1];
903 $this->bot = false;
904 }
905 elseif (preg_match('|BorderManager ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
906 $this->brand = 'BorderManager';
907 $this->version = $regs[1];
908 $this->bot = false;
909 }
910 elseif (preg_match('|WebWasher ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
911 $this->brand = 'WebWasher';
912 $this->version = $regs[1];
913 $this->bot = false;
914 }
915 elseif (preg_match('|SaferSurf|', $this->uastring, $regs)) {
916 $this->brand = 'SaferSurf';
917 $this->version = null;
918 $this->bot = false;
919 }
bf78d3ed 920 elseif (preg_match('|Avant Browser[^/]|', $this->uastring)) {
921 $this->brand = 'Avant Browser';
922 $this->version = null;
81e72a3e 923 $this->bot = false;
a8464009 924 }
c18a4476 925 elseif (preg_match('|Browser[^/]+(http://www.avantbrowser.com)|', $this->uastring)) {
926 $this->brand = 'Avant Browser';
927 $this->version = null;
928 $this->bot = false;
929 }
6e783db6 930 elseif (preg_match('|Maxthon|', $this->uastring)) {
931 $this->brand = 'Maxthon';
932 $this->version = null;
81e72a3e 933 $this->bot = false;
6e783db6 934 }
935 elseif (preg_match('|MyIE2|', $this->uastring)) {
936 $this->brand = 'MyIE2';
937 $this->version = null;
81e72a3e 938 $this->bot = false;
6e783db6 939 }
bf78d3ed 940 elseif (preg_match('|Crazy Browser ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
941 $this->brand = 'Crazy Browser';
942 $this->version = $regs[1];
81e72a3e 943 $this->bot = false;
944 }
945 elseif (preg_match('|AvantGo ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
946 $this->brand = 'AvantGo';
947 $this->version = $regs[1];
948 $this->bot = false;
a8464009 949 }
bf78d3ed 950 elseif (preg_match('|MSN ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
951 $this->brand = 'MSN';
952 $this->version = $regs[1];
81e72a3e 953 $this->bot = false;
a8464009 954 }
c18a4476 955 elseif (preg_match('|America Online Browser [0-9a-zA-Z\.+]+; rev([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
956 $this->brand = 'AOL Browser';
957 $this->version = $regs[1];
958 $this->bot = false;
959 }
bf78d3ed 960 elseif (preg_match('|MS FrontPage ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
961 $this->brand = 'Microsoft FrontPage';
962 $this->version = $regs[1];
81e72a3e 963 $this->bot = false;
a8464009 964 }
c18a4476 965 elseif (preg_match('|Microsoft Internet Explorer/4.0b1|', $this->uastring, $regs)) {
966 $this->brand = 'Microsoft Internet Explorer';
967 $this->version = '1.0';
968 $this->bot = false;
969 }
ee2c4e9b
RK
970 elseif (preg_match('|MSIE 7\.0.+Trident/4.0|', $this->uastring, $regs)) {
971 $this->brand = 'Microsoft Internet Explorer';
972 $this->version = "8.0";
973 $this->bot = false;
974 }
975 elseif (preg_match('|MSIE 7\.0.+Trident/5.0|', $this->uastring, $regs)) {
976 $this->brand = 'Microsoft Internet Explorer';
977 $this->version = "9.0";
978 $this->bot = false;
979 }
d6672899
RK
980 elseif (preg_match('|MSIE 7\.0.+Trident/6.0|', $this->uastring, $regs)) {
981 $this->brand = 'Microsoft Internet Explorer';
982 $this->version = "10.0";
983 $this->bot = false;
984 }
63119c16
RK
985 elseif (preg_match('|Trident\/[0-9a-zA-Z\.+]+; ([^\)]+; )?rv:([0-9\.+]+)|', $this->uastring, $regs)) {
986 $this->brand = 'Microsoft Internet Explorer';
987 $this->version = $regs[2];
988 $this->bot = false;
989 }
bf78d3ed 990 elseif (preg_match('|MSIE ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
991 $this->brand = 'Microsoft Internet Explorer';
31733e08 992 $this->version = $regs[1];
81e72a3e 993 $this->bot = false;
31733e08 994 }
c18a4476 995 elseif (preg_match('|MSPIE ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
996 $this->brand = 'Microsoft Pocket Internet Explorer';
997 $this->version = $regs[1];
998 $this->bot = false;
31fe75cc 999 $this->mobile = true;
c18a4476 1000 }
b50f91ef 1001 elseif (preg_match('|Mozilla/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs) &&
1002 (strpos($this->uastring, 'compatible') === false) && (strpos($this->uastring, 'Gecko/') === false) &&
1003 (intval($regs[1]) < 5)) {
bf78d3ed 1004 $this->brand = 'Netscape';
1defa974 1005 $this->version = $regs[1];
bf78d3ed 1006 if (intval($this->version) == 4) { $this->brand .= ' Communicator'; }
81e72a3e 1007 $this->bot = false;
1008 }
b50f91ef 1009 elseif (preg_match('|Mozilla/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
1010 $this->brand = (strpos($this->uastring, 'compatible') !== false)?'Mozilla-compatible (unknown)':'Mozilla (unknown)';
81e72a3e 1011 $this->version = null;
1012 $this->bot = false;
1defa974 1013 }
a8464009 1014
06c9b824 1015 $botArray = array('Scooter','Spinne','Vagabondo','Firefly','Scrubby','NG','Pompos','Szukacz','Schmozilla','42_HAL',
81e72a3e 1016 'NetResearchServer','LinkWalker','Zeus','W3C_Validator','ZyBorg','Ask Jeeves','ia_archiver',
1017 'PingALink Monitoring Services','IlTrovatore-Setaccio','Nutch','Mercator','search.ch',
06c9b824 1018 'appie','larbin','NutchCVS','Webchat','Mediapartners-Google','sitecheck.internetseer.com',
1c090da4
RK
1019 'FavOrg','findlinks','DataCha0s','ichiro','Francis','CoralWebPrx','DoCoMo','Ocelli','Sogou Video',
1020 'Yandex','Yeti','Austronaut-URL-Checker');
a8464009 1021
1022 if (in_array($this->brand, $botArray)) {
1023 $this->bot = true;
1024 }
31fe75cc
RK
1025
1026 if (($this->brand == 'Microsoft Pocket Internet Explorer') ||
1027 (strpos($this->brand, 'BlackBerry') !== false)) {
1028 $this->mobile = true;
1029 }
31733e08 1030 }
1031
3077a4f6 1032 public function getBrand() { return $this->brand; }
1033 public function getVersion() { return $this->version; }
4210e7b0 1034
3077a4f6 1035 public function getAcceptLanguages() {
4210e7b0 1036 if (!isset($this->uadata['accept-languages'])) {
1037 $headers = getAllHeaders();
1038 $accLcomp = explode(',', $headers['Accept-Language']);
1039 $accLang = array();
1040 foreach ($accLcomp as $lcomp) {
1041 if (strlen($lcomp)) {
1042 $ldef = explode(';', $lcomp);
437e1c91 1043 $accLang[$ldef[0]] = (float)((strpos(@$ldef[1],'q=')===0)?substr($ldef[1],2):1);
4210e7b0 1044 }
1045 }
1046 $this->uadata['accept-languages'] = $accLang;
1047 }
1048 return $this->uadata['accept-languages'];
1049 }
1050
3077a4f6 1051 public function getUAString() { return $this->uastring; }
23585ba2 1052
3077a4f6 1053 public function getEngine() {
b50f91ef 1054 // return gecko|khtml|trident|tasman|nscp|presto|gzilla|gtkhtml|links|icestorm|netfront|unknown
bf78d3ed 1055 if (!isset($this->uadata['engine'])) {
ac9220c2 1056 $this->uadata['engine'] = 'unknown';
bf78d3ed 1057 $this->uadata['geckodate'] = null;
1c090da4 1058 if (!$this->bot) {
31fe75cc 1059 if (preg_match('|Gecko/([0-9\.]+)|', $this->uastring, $regs) && (strpos($this->brand, 'Opera') === false)) {
1c090da4 1060 $this->uadata['engine'] = 'gecko';
ff8d4ab2 1061 // If it looks like a version number, i.e. shorter than 4 chars or has a . in it, it's no date.
5cb2b864
RK
1062 if ((strlen($regs[1]) > 4) && (strpos($regs[1], '.') === false)) {
1063 $this->uadata['geckodate'] = $regs[1];
1064 }
1065 else {
1066 $this->uadata['geckodate'] = null;
1067 $this->uadata['eng_version'] = $regs[1];
1068 }
bf78d3ed 1069 }
3cd2b543 1070 elseif (preg_match('|Edge/([0-9\.]+)|', $this->uastring, $regs)) {
cbdcb617 1071 $this->uadata['engine'] = 'edgehtml';
3cd2b543
RK
1072 $this->uadata['eng_version'] = $regs[1];
1073 }
1c090da4
RK
1074 elseif ((strpos($this->brand, 'Internet Explorer') !== false) || (strpos($this->brand, 'FrontPage') !== false)) {
1075 if ((strpos(strtolower($this->uastring), 'mac') !== false) && (intval($this->getVersion()) >= 5)) {
1076 $this->uadata['engine'] = 'tasman';
1077 }
1078 else {
1079 $this->uadata['engine'] = 'trident';
1080 }
bf78d3ed 1081 }
ff8d4ab2 1082 elseif (preg_match('|WebKit/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
1c6b27e7 1083 $this->uadata['engine'] = 'webkit';
ff8d4ab2 1084 $this->uadata['eng_version'] = $regs[1];
1c6b27e7
RK
1085 }
1086 elseif ((strpos($this->brand, 'Konqueror') !== false) || (strpos($this->brand, 'OmniWeb') !== false)) {
1c090da4
RK
1087 $this->uadata['engine'] = 'khtml';
1088 }
1089 elseif (strpos($this->brand, 'Netscape') !== false) {
1090 // non-Gecko Netscape browsers
1091 if (intval($this->version) <= 4) {
1092 $this->uadata['engine'] = 'nscp';
1093 }
1094 elseif (strpos($this->uastring, 'MSIE') !== false) {
1095 $this->uadata['engine'] = 'trident';
1096 }
81e72a3e 1097 }
1c090da4
RK
1098 elseif (strpos($this->brand, 'Opera') !== false) {
1099 $this->uadata['engine'] = 'presto';
1100 }
ff8d4ab2
RK
1101 elseif ((strpos($this->brand, 'iTunes') !== false) || (strpos($this->brand, 'nook browser') !== false)) {
1102 $this->uadata['engine'] = 'webkit';
1103 }
1c090da4
RK
1104 elseif (strpos($this->brand, 'Dillo') !== false) {
1105 $this->uadata['engine'] = 'gzilla';
1106 }
1107 elseif ((strpos($this->brand, 'ELinks') !== false) || (strpos($this->brand, 'Links') !== false)) {
1108 $this->uadata['engine'] = 'links';
1109 }
1110 elseif ((strpos($this->brand, 'Lynx') !== false)) {
1111 $this->uadata['engine'] = 'lynx';
1112 }
1113 elseif ((strpos($this->brand, 'ICEbrowser') !== false) || (strpos($this->brand, 'ICE Browser') !== false)) {
1114 $this->uadata['engine'] = 'icestorm';
1115 }
ff8d4ab2
RK
1116 elseif (preg_match('|NetFront/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
1117 $this->uadata['engine'] = 'netfront';
1118 $this->uadata['eng_version'] = $regs[1];
1119 }
1c090da4
RK
1120 elseif ((strpos($this->brand, 'PlayStation') !== false) || (strpos($this->brand, 'NetFront') !== false)) {
1121 $this->uadata['engine'] = 'netfront';
1122 }
1123 elseif ((strpos($this->brand, 'Avant') !== false) || (strpos($this->brand, 'Crazy Browser') !== false) ||
1124 (strpos($this->brand, 'AOL') !== false) || (strpos($this->brand, 'MSN') !== false) ||
1125 (strpos($this->brand, 'MyIE2') !== false) || (strpos($this->brand, 'Maxthon') !== false)) {
81e72a3e 1126 $this->uadata['engine'] = 'trident';
1127 }
1c090da4
RK
1128 elseif (strpos($this->brand, 'Galeon') !== false) {
1129 $this->uadata['engine'] = 'gecko';
1130 }
1131 elseif (strpos($this->brand, 'WebPro') !== false) {
1132 $this->uadata['engine'] = 'nscp';
1133 }
c18a4476 1134 }
31733e08 1135 }
bf78d3ed 1136 return $this->uadata['engine'];
31733e08 1137 }
1138
3077a4f6 1139 public function hasEngine($rnd_engine) { return ($this->getEngine() == $rnd_engine); }
bf78d3ed 1140
3077a4f6 1141 public function getEngineVersion() {
bf78d3ed 1142 if (!isset($this->uadata['eng_version'])) {
1143 $this->uadata['eng_version'] = null;
1144 // getOS() should get the date for us
1145 $this->getOS();
31733e08 1146 }
bf78d3ed 1147 return $this->uadata['eng_version'];
31733e08 1148 }
1149
3077a4f6 1150 public function getOS() {
bf78d3ed 1151 if (!isset($this->uadata['os'])) {
1152 $this->uadata['os'] = null;
1c090da4
RK
1153 if (!$this->bot) {
1154 if ($this->hasEngine('gecko')) {
9c17eb15
RK
1155 if (preg_match('|Mozilla/5.0 \(([^;]+); [^;]+; ([^;]+); ([^;]+); ([^;]+); rv:([^\);]+)(; [^\)]+)?\)|', $this->uastring, $regs)) {
1156 $this->uadata['os'] = $regs[2].' ('.$regs[3].')';
1157 $this->uadata['lang'] = (strpos($regs[4],'chrome://')===false)?$regs[4]:null;
1158 $this->uadata['eng_version'] = $regs[5];
1159 }
1160 elseif (preg_match('|Mozilla/5.0 \(([^;]+); [^;]+; ([^;]+); ([^;]+); rv:([^\);]+)(; [^\)]+)?\)|', $this->uastring, $regs)) {
1c090da4
RK
1161 $this->uadata['os'] = $regs[2];
1162 $this->uadata['lang'] = (strpos($regs[3],'chrome://')===false)?$regs[3]:null;
1163 $this->uadata['eng_version'] = $regs[4];
1164 }
5cfa45a4 1165 elseif (preg_match('|Mozilla/5.0 \(([^;]+); [^;]; ([^;]+); rv:([^\);]+)(; [^\)]+)?\)|', $this->uastring, $regs)) {
1c090da4
RK
1166 $this->uadata['os'] = $regs[2];
1167 $this->uadata['lang'] = null;
1168 $this->uadata['eng_version'] = $regs[3];
1169 }
1c6b27e7
RK
1170 elseif (preg_match('|Mozilla/5.0 \(([^;]+); ([^;]+); x64; rv:([^\);]+)(; [^\)]+)?\)|', $this->uastring, $regs)) {
1171 $this->uadata['os'] = $regs[1].' ('.$regs[2].')';
1172 $this->uadata['lang'] = null;
1173 $this->uadata['eng_version'] = $regs[3];
1174 }
5cfa45a4
RK
1175 elseif (preg_match('|Mozilla/5.0 \(([^;]+); ([^;]+); ([^;]+); rv:([^\);]+)(; [^\)]+)?\)|', $this->uastring, $regs)) {
1176 $this->uadata['os'] = $regs[2];
1177 $this->uadata['lang'] = (strpos($regs[3],'chrome://')===false)?$regs[3]:null;
1178 $this->uadata['eng_version'] = $regs[4];
1179 }
1180 elseif (preg_match('|Mozilla/5.0 \(([^;]+); [^;]; ([^;]+); ([^;]+); m([^\);]+)\)|', $this->uastring, $regs)) {
1c090da4
RK
1181 $this->uadata['os'] = $regs[2];
1182 $this->uadata['lang'] = $regs[3];
1183 $this->uadata['eng_version'] = 'M'.$regs[4];
1184 }
5cfa45a4 1185 elseif (preg_match('|Mozilla/5.0 \(([^;]+); [^;]; ([^;]+); m([^\);]+)\)|', $this->uastring, $regs)) {
1c090da4
RK
1186 $this->uadata['os'] = $regs[1];
1187 $this->uadata['lang'] = $regs[2];
1188 $this->uadata['eng_version'] = 'M'.$regs[3];
1189 }
5cfa45a4 1190 elseif (preg_match('|Mozilla/5.0 \(([^;]+); [^;]; ([^;]+); ([^\);]+)\)|', $this->uastring, $regs)) {
1c090da4
RK
1191 $this->uadata['os'] = $regs[2];
1192 $this->uadata['lang'] = $regs[3];
1193 $this->uadata['eng_version'] = null;
1194 }
ff8d4ab2 1195 elseif (preg_match('#Mozilla/5.0 \(([^;]+); (WOW64|Mobile|Tablet); rv:([^\);]+)\)#', $this->uastring, $regs)) {
1c6b27e7
RK
1196 $this->uadata['os'] = $regs[1].' ('.$regs[2].')';
1197 $this->uadata['lang'] = null;
1198 $this->uadata['eng_version'] = $regs[3];
31fe75cc 1199 $this->mobile = ($regs[2] == 'Mobile');
1c6b27e7 1200 }
52e23932 1201 elseif (preg_match('#Mozilla/5.0 \((Mobile|Tablet); [^;]+; rv:([^\);]+)\)#', $this->uastring, $regs)) {
d09178b6 1202 $this->uadata['os'] = 'Firefox OS ('.$regs[1].')';
73adc61b 1203 $this->uadata['lang'] = null;
52e23932
RK
1204 $this->uadata['eng_version'] = $regs[2];
1205 $this->mobile = ($regs[1] == 'Mobile');
73adc61b 1206 }
1c090da4 1207 elseif (preg_match('|Mozilla/5.0 \(([^;]+); ([^;]+); rv:([^\);]+)\)|', $this->uastring, $regs)) {
1c6b27e7
RK
1208 if ((strpos($regs[2], 'Linux') !== false) && ($regs[1] != 'X11')) {
1209 $this->uadata['os'] = $regs[1].' ('.$regs[2].')';
1210 }
1211 else {
1212 $this->uadata['os'] = $regs[2];
1213 }
1c090da4
RK
1214 $this->uadata['lang'] = null;
1215 $this->uadata['eng_version'] = $regs[3];
1216 }
1217 elseif (preg_match('|Mozilla/5.0 \(([^;]+); [^;]+; ([^\);]+)\)|', $this->uastring, $regs)) {
1218 $this->uadata['os'] = $regs[2];
1219 $this->uadata['lang'] = null;
1220 $this->uadata['eng_version'] = null;
1221 }
52e23932 1222 elseif (preg_match('#Mozilla/5.0 \((Mobile|Tablet); rv:([^\);]+)\)#', $this->uastring, $regs)) {
d09178b6 1223 $this->uadata['os'] = 'Firefox OS ('.$regs[1].')';
7f0cf175 1224 $this->uadata['lang'] = null;
52e23932
RK
1225 $this->uadata['eng_version'] = $regs[2];
1226 $this->mobile = ($regs[1] == 'Mobile');
7f0cf175 1227 }
ee2c4e9b
RK
1228 elseif (preg_match('|Mozilla/5.0 \(([^;]+); rv:([^\);]+)\)|', $this->uastring, $regs)) {
1229 $this->uadata['os'] = $regs[1];
1230 $this->uadata['lang'] = null;
1231 $this->uadata['eng_version'] = $regs[2];
1232 }
1c090da4
RK
1233 elseif (preg_match('|Mozilla/5.0 Galeon/[^\(]+ \(([^;]+); ([^;]+);[^\)]+\)|', $this->uastring, $regs)) {
1234 $this->uadata['os'] = $regs[2];
1235 $this->uadata['lang'] = null;
1236 $this->uadata['eng_version'] = null;
1237 }
1238 elseif (preg_match('|Debian/|', $this->uastring, $regs)) {
1239 $this->uadata['os'] = 'Debian Linux';
1240 $this->uadata['lang'] = null;
1241 $this->uadata['eng_version'] = null;
1242 }
bf78d3ed 1243 }
645a7eb6 1244 elseif ($this->hasEngine('edgehtml')) {
3cd2b543
RK
1245 if (preg_match('#Mozilla/5.0 \(([^;]+); (WOW64|Win64); ([^\);]+)\)#', $this->uastring, $regs)) {
1246 $this->uadata['os'] = $regs[1].' ('.$regs[2].')';
1247 }
d87e7412
RK
1248 elseif (preg_match('#Mozilla/5.0 \(([^;]+Phone[^;]+); [^\)]+\)#i', $this->uastring, $regs)) {
1249 $this->uadata['os'] = $regs[1];
1250 }
3cd2b543 1251 }
1c090da4 1252 elseif ($this->hasEngine('trident') || $this->hasEngine('tasman')) {
63119c16
RK
1253 if (preg_match('/Mozilla\/[^\(]+ \((IE [^;]+[^\)]*; )?((?:Mac|Win)[^;]+); ?(Win64|WOW64); ?Trident\/([^;\)]+);/i', $this->uastring, $regs)) {
1254 $this->uadata['eng_version'] = $regs[4];
1255 $this->uadata['os'] = $regs[2].' ('.$regs[3].')';
1256 $this->uadata['lang'] = null;
1257 }
1258 elseif (preg_match('/Mozilla\/[^\(]+ \((IE [^;]+[^\)]*; )?((?:Mac|Win)[^;]+); ?Trident\/([^;\)]+);/i', $this->uastring, $regs)) {
1259 $this->uadata['eng_version'] = $regs[3];
1260 $this->uadata['os'] = $regs[2];
1261 $this->uadata['lang'] = null;
1262 }
1263 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible *; MSIE [^;]+[^\)]*; ?((?:Mac|Win)[^;]+); ?(Win64|WOW64)[^\)]*Trident\/([^;\)]+)[^\)]*\)/i', $this->uastring, $regs)) {
ee2c4e9b
RK
1264 $this->uadata['eng_version'] = $regs[3];
1265 $this->uadata['os'] = $regs[1].' ('.$regs[2].')';
1266 $this->uadata['lang'] = null;
1267 }
1268 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible *; MSIE [^;]+[^\)]*; ?((?:Mac|Win)[^;]+); ?[^\)]*Trident\/([^;\)]+)[^\)]*\)/i', $this->uastring, $regs)) {
1269 $this->uadata['eng_version'] = $regs[2];
1270 $this->uadata['os'] = $regs[1];
1271 $this->uadata['lang'] = null;
1272 }
1273 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible *; MSP?IE ([^;]+)[^\)]*; ?((?:Mac|Win)[^;]+); ?(Win64|WOW64)[^\)]*\)/i', $this->uastring, $regs)) {
1274 $this->uadata['eng_version'] = (strpos($this->uastring,'MSPIE')!==false)?null:"ie".$regs[1];
9c17eb15
RK
1275 $this->uadata['os'] = $regs[2].' ('.$regs[3].')';
1276 $this->uadata['lang'] = null;
31fe75cc 1277 $this->mobile = (strpos($this->uastring,'MSPIE') !== false);
9c17eb15
RK
1278 }
1279 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible *; MSP?IE ([^;]+)[^\)]*; ?((?:Mac|Win)[^;]+)[^\)]*\)/i', $this->uastring, $regs)) {
ee2c4e9b 1280 $this->uadata['eng_version'] = (strpos($this->uastring,'MSPIE')!==false)?null:"ie".$regs[1];
1c090da4
RK
1281 $this->uadata['os'] = $regs[2];
1282 $this->uadata['lang'] = null;
31fe75cc 1283 $this->mobile = (strpos($this->uastring,'MSPIE') !== false);
1c090da4
RK
1284 }
1285 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible *; MSIE ([^;]+)[^\)]*\)/i', $this->uastring, $regs)) {
ee2c4e9b 1286 $this->uadata['eng_version'] = "ie".$regs[1];
1c090da4
RK
1287 $this->uadata['os'] = null;
1288 $this->uadata['lang'] = null;
1289 }
1290 elseif (preg_match('/Microsoft Internet Explorer\/[^\s]+ \(((?:Mac|Win)[^;\)]+)\)/i', $this->uastring, $regs)) {
ee2c4e9b 1291 $this->uadata['eng_version'] = "ie".$this->getVersion();
1c090da4
RK
1292 $this->uadata['os'] = $regs[1];
1293 $this->uadata['lang'] = null;
1294 }
1295 elseif (preg_match('/Microsoft Pocket Internet Explorer\/[^\s]+/i', $this->uastring, $regs)) {
1296 $this->uadata['eng_version'] = null;
1297 $this->uadata['os'] = 'Windows CE';
1298 $this->uadata['lang'] = null;
1299 }
81e72a3e 1300 }
1c090da4
RK
1301 elseif ($this->hasEngine('khtml')) {
1302 if (preg_match('/Mozilla\/[^\(]+ \(compatible; Konqueror\/([^;]+); ([^;]+); ([^;]+); ([^;]+); ([^\);]+)\)(?: KHTML\/([0-9a-zA-Z\.+]+))?/i', $this->uastring, $regs)) {
1303 $this->uadata['eng_version'] = strlen($regs[6])?$regs[6]:$regs[1];
1304 $this->uadata['os'] = $regs[2];
1305 $this->uadata['lang'] = $regs[5];
1306 }
1307 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible; Konqueror\/([^;]+); ([^\);]+)[^\)]*\)(?: KHTML\/([0-9a-zA-Z\.+]+))?/i', $this->uastring, $regs)) {
1308 $this->uadata['eng_version'] = strlen($regs[3])?$regs[3]:$regs[1];
1309 $this->uadata['os'] = $regs[2];
1310 $this->uadata['lang'] = null;
1311 }
1c6b27e7
RK
1312 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible; [^;]+; ([^\);]+)\)/i', $this->uastring, $regs)) {
1313 $this->uadata['os'] = $regs[1];
1314 $this->uadata['lang'] = null;
1315 $this->uadata['eng_version'] = null;
1316 }
1317 }
1318 elseif ($this->hasEngine('webkit')) {
ff8d4ab2 1319 if (preg_match('|Mozilla/5.0 \(([^;]+); U; ([^\);]+); ([^\);]+); ([^\);]+)\)|', $this->uastring, $regs)) {
1c6b27e7
RK
1320 $this->uadata['os'] = $regs[2];
1321 $this->uadata['lang'] = $regs[3];
1c6b27e7 1322 }
ff8d4ab2 1323 elseif (preg_match('|Mozilla/5.0 \(([^;]+); U; ([^\);]+); ([^\);]+)\)|', $this->uastring, $regs)) {
1c090da4
RK
1324 if (strpos($regs[3], '/') !== false) {
1325 $this->uadata['os'] = $regs[1];
1326 $this->uadata['lang'] = null;
1c6b27e7 1327 }
1c090da4
RK
1328 else {
1329 $this->uadata['os'] = $regs[2];
1330 $this->uadata['lang'] = $regs[3];
1331 }
1c090da4 1332 }
ff8d4ab2
RK
1333 elseif (preg_match('|Mozilla/5.0 \(([^;]+); Linux; ([^;]+); U; ([^\);]+)\)|', $this->uastring, $regs)) {
1334 $this->uadata['os'] = $regs[2];
1335 $this->uadata['lang'] = $regs[3];
1336 }
1337 elseif (preg_match('|Mozilla/5.0 \(([^;]+); U; ([^\);]+)\)|', $this->uastring, $regs)) {
1c090da4
RK
1338 $this->uadata['os'] = $regs[1];
1339 $this->uadata['lang'] = $regs[2];
1c090da4 1340 }
fa6eb053
RK
1341 elseif (preg_match('|Mozilla/5.0 \(Linux; ([^;]+); ([^\);]+)\)|', $this->uastring, $regs)) {
1342 // (Chrome for) Android - $regs[2] is device
1343 $this->uadata['os'] = $regs[1];
1344 $this->uadata['lang'] = null;
1345 }
ff8d4ab2
RK
1346 elseif (preg_match('|Mozilla/5.0 \(([^\);]+); ([^\);]+)\)|', $this->uastring, $regs)) {
1347 if (($regs[1] == 'X11') || ($regs[1] == 'Macintosh') || ($regs[1] == 'iPhone')) {
1c6b27e7
RK
1348 $this->uadata['os'] = $regs[2];
1349 }
1350 else {
1351 $this->uadata['os'] = $regs[1];
1352 if ($regs[2] == 'NokiaN9') {
1353 $this->uadata['os'] .= ' Harmattan';
1354 }
1355 }
1356 $this->uadata['lang'] = null;
1c6b27e7 1357 }
ff8d4ab2 1358 elseif (preg_match('|Mozilla/5.0 \(([^\);]+)\)|', $this->uastring, $regs)) {
1c090da4
RK
1359 $this->uadata['os'] = $regs[1];
1360 $this->uadata['lang'] = null;
1c090da4 1361 }
ff8d4ab2 1362 elseif (preg_match('|Midori/[^\(]+ \((?:X11; )?([^;]+); U; ([^\)]+)\)|i', $this->uastring, $regs)) {
1c090da4
RK
1363 $this->uadata['os'] = $regs[1];
1364 $this->uadata['lang'] = $regs[2];
ff8d4ab2
RK
1365 }
1366 if ($this->brand == 'Silk') {
1367 // For some reason, Amazon spoofs us and tells us it's on MacOS X!
1368 $this->uadata['os'] = 'Android';
1c090da4 1369 }
31fe75cc
RK
1370 if (preg_match('| Mobile |', $this->uastring)) {
1371 $this->mobile = true;
1372 }
6e783db6 1373 }
1c090da4
RK
1374 elseif ($this->hasEngine('presto')) {
1375 // Opera < 8
1376 if (preg_match('/Opera\/[^\(]+ \((?:X11; )?([^;]+)[^\)]+\) +\[([a-z_-]+)\]/i', $this->uastring, $regs)) {
1377 $this->uadata['eng_version'] = $this->getVersion();
1378 $this->uadata['os'] = $regs[1];
1379 $this->uadata['lang'] = $regs[2];
1380 }
1381 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible; MSIE [^;]+; (?:X11; )?([^;\)]+)[^\)]*\) Opera [^ ]+\s+\[([a-z_-]+)\]/i', $this->uastring, $regs)) {
1382 $this->uadata['eng_version'] = $this->getVersion();
1383 $this->uadata['os'] = $regs[1];
1384 $this->uadata['lang'] = $regs[2];
1385 }
1386 elseif (preg_match('/Mozilla\/[^\(]+ \((?:X11; )?([^;]+);.+\) Opera [^ ]+\s+\[([a-z_-]+)\]/i', $this->uastring, $regs)) {
1387 $this->uadata['eng_version'] = $this->getVersion();
1388 $this->uadata['os'] = $regs[1];
1389 $this->uadata['lang'] = $regs[2];
1390 }
1391 // Opera mini
1392 elseif (preg_match('/Opera\/([^\(]+) \((?:X11; )?([^;]+); Opera Mini; ([a-z_-]+); /i', $this->uastring, $regs)) {
1393 $this->uadata['eng_version'] = null;
1394 $this->uadata['os'] = $regs[2];
1395 $this->uadata['lang'] = $regs[3];
1396 }
1397 elseif (preg_match('/Opera\/([^\(]+) \((?:X11; )?([^;]+); Opera Mini\/[^;]+; ([a-z_-]+); /i', $this->uastring, $regs)) {
1398 $this->uadata['eng_version'] = $regs[1];
1399 $this->uadata['os'] = $regs[2];
1400 $this->uadata['lang'] = $regs[3];
1401 }
1402 // Opera >= 8
1403 elseif (preg_match('/Opera\/[^\(]+ \((?:X11; )?([^;]+); [^\)]+; ([a-z_-]+)\)/i', $this->uastring, $regs)) {
1404 $this->uadata['eng_version'] = $this->getVersion();
1405 $this->uadata['os'] = $regs[1];
1406 $this->uadata['lang'] = $regs[2];
1407 }
1408 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible; MSIE [^;]+; (?:X11; )?([^;]+); ([a-z_-]+)\) Opera [^ ]+/i', $this->uastring, $regs)) {
1409 $this->uadata['eng_version'] = $this->getVersion();
1410 $this->uadata['os'] = $regs[1];
1411 $this->uadata['lang'] = $regs[2];
1412 }
1413 elseif (preg_match('/Mozilla\/[^\(]+ \((?:X11; )?([^;]+);.+; ([a-z_-]+)\) Opera [^ ]+/i', $this->uastring, $regs)) {
1414 $this->uadata['eng_version'] = $this->getVersion();
1415 $this->uadata['os'] = $regs[1];
1416 $this->uadata['lang'] = $regs[2];
1417 }
1418 // Opera 9 Firefox-spoofing
1419 elseif (preg_match('/Mozilla\/[^\(]+ \((?:X11; )?([^;]+);.+; ([a-z_-]+); rv:([^\);]+)\) Gecko\/\d+ Firefox\/[0-9a-zA-Z\.+]+ Opera [^ ]+/i', $this->uastring, $regs)) {
1420 $this->uadata['eng_version'] = $this->getVersion();
1421 $this->uadata['os'] = $regs[1];
1422 $this->uadata['lang'] = $regs[2];
1423 }
31fe75cc
RK
1424 if (preg_match('| Mobi|', $this->uastring)) {
1425 $this->mobile = true;
1426 }
bf78d3ed 1427 }
1c090da4
RK
1428 elseif ($this->hasEngine('nscp')) {
1429 if (preg_match('/Mozilla\/([0-9a-zA-Z\.+]+) (?:\[([a-z_-]+)\][^\(]+)?\(X11; [^;]+; ([^\)]+)\)/i', $this->uastring, $regs)) {
1430 $this->uadata['eng_version'] = $regs[1];
1431 $this->uadata['os'] = $regs[3];
1432 $this->uadata['lang'] = $regs[2];
1433 }
1434 elseif (preg_match('/Mozilla\/([0-9a-zA-Z\.+]+) (?:\[([a-z_-]+)\][^\(]+)?\(([^;]+);[^\)]+\)/i', $this->uastring, $regs)) {
1435 $this->uadata['eng_version'] = $regs[1];
1436 $this->uadata['os'] = $regs[3];
1437 $this->uadata['lang'] = $regs[2];
1438 }
1439 elseif (preg_match('/Mozilla\/([0-9a-zA-Z\.+]+)[^\(]+\(([^;]+);[^\)]+\)/i', $this->uastring, $regs)) {
1440 $this->uadata['eng_version'] = $regs[1];
1441 $this->uadata['os'] = $regs[2];
1442 $this->uadata['lang'] = null;
1443 }
bf78d3ed 1444 }
1c090da4 1445 elseif ($this->hasEngine('gzilla')) {
c18a4476 1446 $this->uadata['eng_version'] = $this->getVersion();
1c090da4 1447 $this->uadata['os'] = null;
bf78d3ed 1448 $this->uadata['lang'] = null;
6e783db6 1449 }
1c090da4
RK
1450 elseif ($this->hasEngine('links')) {
1451 if (preg_match('/E?Links[^\(]+\([^;]+; ([^;]+)[^\)]+\)/i', $this->uastring, $regs)) {
1452 $this->uadata['eng_version'] = null;
1453 $this->uadata['os'] = $regs[1];
1454 $this->uadata['lang'] = null;
1455 }
bf78d3ed 1456 }
1c090da4 1457 elseif ($this->hasEngine('lynx')) {
6e783db6 1458 $this->uadata['eng_version'] = $this->getVersion();
1c090da4 1459 $this->uadata['os'] = null;
c18a4476 1460 $this->uadata['lang'] = null;
1461 }
1c090da4
RK
1462 elseif ($this->hasEngine('icestorm')) {
1463 if (preg_match('/ICE Browser\/v?([0-9a-zA-Z\._+]+) \(Java [^;]+; ([^\)]+)\)/i', $this->uastring, $regs)) {
1464 $this->uadata['eng_version'] = str_replace('_', '.', $regs[1]);
1465 $this->uadata['os'] = $regs[2];
1466 $this->uadata['lang'] = null;
1467 }
1468 elseif (preg_match('/Mozilla\/[^\(]+ \((?:X11; )?([^;]+);.+; ([a-z_-]+)\).* ICEbrowser\/([0-9a-zA-Z\._+]+)/i', $this->uastring, $regs)) {
1469 $this->uadata['eng_version'] = $regs[3];
1470 $this->uadata['os'] = $regs[1];
1471 $this->uadata['lang'] = $regs[2];
1472 }
bf78d3ed 1473 }
1c090da4
RK
1474 else {
1475 $this->uadata['eng_version'] = null;
c18a4476 1476 $this->uadata['lang'] = null;
1c090da4
RK
1477 if (preg_match('/AmigaOS/i', $this->uastring, $regs)) {
1478 $this->uadata['os'] = 'AmigaOS';
1479 }
1480 if (preg_match('/Commodore 64/i', $this->uastring, $regs)) {
1481 $this->uadata['os'] = 'Commodore 64';
1482 }
1483 elseif (preg_match('/curl\/[^\(]+\(([^\);]+)/i', $this->uastring, $regs)) {
1484 $this->uadata['os'] = $regs[1];
1485 }
1486 elseif (preg_match('/NCSA[_ ]Mosaic\/[^\(]+\((?:.*;)?([^\);]+)/i', $this->uastring, $regs)) {
1487 $this->uadata['os'] = trim($regs[1]);
1488 }
1489 elseif (preg_match('/iCab.*(Mac[^\);]+).*?\)/i', $this->uastring, $regs)) {
1490 $this->uadata['os'] = trim($regs[1]);
1491 }
1492 elseif (preg_match('/SymbianOS\/([^ ]+)/i', $this->uastring, $regs)) {
1493 $this->uadata['os'] = 'SymbianOS '.$regs[1];
1494 }
c18a4476 1495 }
1c090da4
RK
1496 if ($this->uadata['os'] == 'Win 9x 4.90') { $this->uadata['os'] = 'Windows ME'; }
1497 elseif ($this->uadata['os'] == 'WinNT4.0') { $this->uadata['os'] = 'Windows NT 4.0'; }
1498 elseif ($this->uadata['os'] == 'Windows NT 5.0') { $this->uadata['os'] = 'Windows 2000'; }
1499 elseif ($this->uadata['os'] == 'Windows NT 5.1') { $this->uadata['os'] = 'Windows XP'; }
9c17eb15
RK
1500 elseif ($this->uadata['os'] == 'Windows NT 5.1 (Win64)') { $this->uadata['os'] = 'Windows XP (64bit)'; }
1501 elseif ($this->uadata['os'] == 'Windows NT 5.1 (WOW64)') { $this->uadata['os'] = 'Windows XP (64bit)'; }
1c090da4
RK
1502 elseif ($this->uadata['os'] == 'Windows NT 5.2') { $this->uadata['os'] = 'Windows 2003'; }
1503 elseif ($this->uadata['os'] == 'Windows NT 5.2 x64') { $this->uadata['os'] = 'Windows 2003 (64bit)'; }
9c17eb15
RK
1504 elseif ($this->uadata['os'] == 'Windows NT 5.2 (Win64)') { $this->uadata['os'] = 'Windows 2003 (64bit)'; }
1505 elseif ($this->uadata['os'] == 'Windows NT 5.2 (WOW64)') { $this->uadata['os'] = 'Windows 2003 (64bit)'; }
1c090da4 1506 elseif ($this->uadata['os'] == 'Windows NT 6.0') { $this->uadata['os'] = 'Windows Vista'; }
9c17eb15
RK
1507 elseif ($this->uadata['os'] == 'Windows NT 6.0 (Win64)') { $this->uadata['os'] = 'Windows Vista (64bit)'; }
1508 elseif ($this->uadata['os'] == 'Windows NT 6.0 (WOW64)') { $this->uadata['os'] = 'Windows Vista (64bit)'; }
1c090da4 1509 elseif ($this->uadata['os'] == 'Windows NT 6.1') { $this->uadata['os'] = 'Windows 7'; }
9c17eb15
RK
1510 elseif ($this->uadata['os'] == 'Windows NT 6.1 (Win64)') { $this->uadata['os'] = 'Windows 7 (64bit)'; }
1511 elseif ($this->uadata['os'] == 'Windows NT 6.1 (WOW64)') { $this->uadata['os'] = 'Windows 7 (64bit)'; }
d6672899
RK
1512 elseif ($this->uadata['os'] == 'Windows NT 6.2') { $this->uadata['os'] = 'Windows 8'; }
1513 elseif ($this->uadata['os'] == 'Windows NT 6.2 (Win64)') { $this->uadata['os'] = 'Windows 8 (64bit)'; }
1514 elseif ($this->uadata['os'] == 'Windows NT 6.2 (WOW64)') { $this->uadata['os'] = 'Windows 8 (64bit)'; }
63119c16
RK
1515 elseif ($this->uadata['os'] == 'Windows NT 6.3') { $this->uadata['os'] = 'Windows 8.1'; }
1516 elseif ($this->uadata['os'] == 'Windows NT 6.3 (Win64)') { $this->uadata['os'] = 'Windows 8.1 (64bit)'; }
1517 elseif ($this->uadata['os'] == 'Windows NT 6.3 (WOW64)') { $this->uadata['os'] = 'Windows 8.1 (64bit)'; }
a74f2d9d
RK
1518 elseif ($this->uadata['os'] == 'Windows NT 6.4') { $this->uadata['os'] = 'Windows 10'; }
1519 elseif ($this->uadata['os'] == 'Windows NT 6.4 (Win64)') { $this->uadata['os'] = 'Windows 10 (64bit)'; }
1520 elseif ($this->uadata['os'] == 'Windows NT 6.4 (WOW64)') { $this->uadata['os'] = 'Windows 10 (64bit)'; }
4d4532c4
RK
1521 elseif ($this->uadata['os'] == 'Windows NT 10.0') { $this->uadata['os'] = 'Windows 10'; }
1522 elseif ($this->uadata['os'] == 'Windows NT 10.0 (Win64)') { $this->uadata['os'] = 'Windows 10 (64bit)'; }
1523 elseif ($this->uadata['os'] == 'Windows NT 10.0 (WOW64)') { $this->uadata['os'] = 'Windows 10 (64bit)'; }
1c090da4
RK
1524 elseif ($this->uadata['os'] == 'Win95') { $this->uadata['os'] = 'Windows 95'; }
1525 elseif ($this->uadata['os'] == 'Win98') { $this->uadata['os'] = 'Windows 98'; }
1526 elseif ($this->uadata['os'] == 'WinNT') { $this->uadata['os'] = 'Windows NT'; }
1527 elseif ($this->uadata['os'] == 'Win32') { $this->uadata['os'] = 'Windows (32bit)'; }
1528 elseif ($this->uadata['os'] == 'Win64') { $this->uadata['os'] = 'Windows (64bit)'; }
1c6b27e7
RK
1529 elseif (preg_match('/iPhone OS ([\d_]+)/i', $this->uadata['os'], $regs)) { $this->uadata['os'] = 'iOS '.str_replace('_', '.', $regs[1]); }
1530 elseif (preg_match('/Mac ?OS ?X/i', $this->uadata['os'])) { $this->uadata['os'] = 'MacOS X'; }
1531 elseif (preg_match('/Mac_P(ower|)PC/i', $this->uadata['os'])) { $this->uadata['os'] = 'MacOS'; }
1c090da4
RK
1532 elseif (strpos($this->uadata['os'], 'darwin') !== false) { $this->uadata['os'] = 'MacOS X'; }
1533 elseif (strpos($this->uadata['os'], 'Darwin') !== false) { $this->uadata['os'] = 'MacOS X'; }
1534 elseif (strpos($this->uadata['os'], 'apple') !== false) { $this->uadata['os'] = 'MacOS'; }
1535 elseif (strpos($this->uadata['os'], 'Macintosh') !== false) { $this->uadata['os'] = 'MacOS'; }
ff8d4ab2 1536 elseif (preg_match('/(?:web|hpw)OS\/([0-9a-zA-Z\._+]+)/i', $this->uadata['os'], $regs)) { $this->uadata['os'] = 'webOS '.$regs[1]; }
1c6b27e7 1537 elseif (preg_match('/Android \(Linux (.+)\)/i', $this->uadata['os'], $regs)) { $this->uadata['os'] = 'Android '.$regs[1]; }
1c090da4
RK
1538 elseif (strpos($this->uadata['os'], 'linux') !== false) { $this->uadata['os'] = 'Linux'; }
1539 elseif (preg_match('/SymbianOS[\/ ]([0-9a-zA-Z\._+]+)/i', $this->uastring, $regs)) { $this->uadata['os'] = 'SymbianOS '.$regs[1]; }
1c6b27e7 1540 elseif (preg_match('/Symbian ?OS/i', $this->uadata['os'])) { $this->uadata['os'] = 'SymbianOS'; }
bf78d3ed 1541
1c090da4
RK
1542 if (strpos($this->uadata['os'], 'Win') !== false) { $this->uadata['platform'] = 'Windows'; }
1543 elseif (strpos($this->uadata['os'], 'Mac') !== false) { $this->uadata['platform'] = 'Macintosh'; }
1c6b27e7 1544 elseif (strpos($this->uadata['os'], 'iOS') !== false) { $this->uadata['platform'] = 'Macintosh'; }
1c090da4 1545 elseif (strpos($this->uadata['os'], 'Linux') !== false) { $this->uadata['platform'] = 'Linux'; }
1c6b27e7 1546 elseif (strpos($this->uadata['os'], 'MeeGo') !== false) { $this->uadata['platform'] = 'Linux'; }
ff8d4ab2 1547 elseif (strpos($this->uadata['os'], 'webOS') !== false) { $this->uadata['platform'] = 'Linux'; }
1c6b27e7 1548 elseif (strpos($this->uadata['os'], 'Android') !== false) { $this->uadata['platform'] = 'Android'; }
d09178b6 1549 elseif (strpos($this->uadata['os'], 'Firefox OS') !== false) { $this->uadata['platform'] = 'Firefox OS'; }
1c090da4
RK
1550 elseif (strpos($this->uadata['os'], 'Solaris') !== false) { $this->uadata['platform'] = 'Solaris'; }
1551 elseif (strpos($this->uadata['os'], 'SunOS') !== false) { $this->uadata['platform'] = 'Solaris'; }
1552 elseif (strpos($this->uadata['os'], 'BeOS') !== false) { $this->uadata['platform'] = 'BeOS'; }
1553 elseif (strpos($this->uadata['os'], 'BePC') !== false) { $this->uadata['platform'] = 'BeOS'; }
1554 elseif (strpos($this->uadata['os'], 'FreeBSD') !== false) { $this->uadata['platform'] = 'FreeBSD'; }
1555 elseif (strpos($this->uadata['os'], 'OpenBSD') !== false) { $this->uadata['platform'] = 'OpenBSD'; }
1556 elseif (strpos($this->uadata['os'], 'NetBSD') !== false) { $this->uadata['platform'] = 'NetBSD'; }
1557 elseif (strpos($this->uadata['os'], 'AIX') !== false) { $this->uadata['platform'] = 'AIX'; }
1558 elseif (strpos($this->uadata['os'], 'IRIX') !== false) { $this->uadata['platform'] = 'IRIX'; }
1559 elseif (strpos($this->uadata['os'], 'HP-UX') !== false) { $this->uadata['platform'] = 'HP-UX'; }
1560 elseif (strpos($this->uadata['os'], 'AmigaOS') !== false) { $this->uadata['platform'] = 'Amiga'; }
1561 elseif (strpos($this->uadata['os'], 'webOS') !== false) { $this->uadata['platform'] = 'webOS'; }
1562 elseif (strpos($this->uadata['os'], 'Commodore 64') !== false) { $this->uadata['platform'] = 'C64'; }
1563 elseif (strpos($this->uadata['os'], 'OpenVMS') !== false) { $this->uadata['platform'] = 'OpenVMS'; }
1564 elseif (strpos($this->uadata['os'], 'Warp') !== false) { $this->uadata['platform'] = 'OS/2'; }
1565 elseif (strpos($this->uadata['os'], 'OS/2') !== false) { $this->uadata['platform'] = 'OS/2'; }
1566 elseif (strpos($this->uadata['os'], 'SymbianOS') !== false) { $this->uadata['platform'] = 'SymbianOS'; }
ff8d4ab2 1567 elseif (strpos($this->uadata['os'], 'BlackBerry') !== false) { $this->uadata['platform'] = 'BlackBerry'; }
1c090da4
RK
1568 elseif (strpos($this->uadata['os'], 'Gameboy') !== false) { $this->uadata['platform'] = 'Nintendo'; }
1569 elseif (strpos($this->uadata['os'], 'Wii') !== false) { $this->uadata['platform'] = 'Nintendo'; }
1570 elseif (strpos($this->uadata['os'], 'Nintendo') !== false) { $this->uadata['platform'] = 'Nintendo'; }
1571 elseif (strpos($this->uadata['os'], 'J2ME') !== false) { $this->uadata['platform'] = 'Java'; }
1572 elseif (strpos($this->uadata['os'], 'CYGWIN') !== false) { $this->uadata['platform'] = 'Windows'; }
1573 elseif (strpos($this->uadata['os'], 'mingw') !== false) { $this->uadata['platform'] = 'Windows'; }
1574 else { $this->uadata['platform'] = $this->uadata['os']; }
bf78d3ed 1575
31fe75cc
RK
1576 if (strpos($this->uadata['os'], 'Windows Phone OS') !== false) { $this->mobile = true; }
1577 elseif (strpos($this->uadata['os'], 'Gameboy') !== false) { $this->mobile = true; }
1578
63119c16 1579 $this->uadata['lang'] = str_replace('_', '-', @$this->uadata['lang']);
1c090da4 1580 }
31733e08 1581 }
bf78d3ed 1582 return $this->uadata['os'];
31733e08 1583 }
1584
3077a4f6 1585 public function getPlatform() {
bf78d3ed 1586 if (!isset($this->uadata['platform'])) {
1587 $this->uadata['platform'] = null;
1588 // getOS() should get the date for us
1589 $this->getOS();
31733e08 1590 }
bf78d3ed 1591 return $this->uadata['platform'];
31733e08 1592 }
1593
3077a4f6 1594 public function getLanguage() {
bf78d3ed 1595 if (!isset($this->uadata['lang'])) {
1596 $this->uadata['lang'] = null;
1597 // getOS() should get the date for us
1598 $this->getOS();
31733e08 1599 }
bf78d3ed 1600 return $this->uadata['lang'];
31733e08 1601 }
1defa974 1602
3077a4f6 1603 public function getGeckoDate() {
bf78d3ed 1604 if (!isset($this->uadata['geckodate'])) {
1605 $this->uadata['geckodate'] = null;
1606 // getEngine() should get the date for us
1607 $this->getEngine();
1defa974 1608 }
bf78d3ed 1609 return $this->uadata['geckodate'];
1defa974 1610 }
bf78d3ed 1611
a3e499ad
RK
1612 public function getGeckoTime() {
1613 if (!isset($this->uadata['geckotime'])) {
1614 $this->uadata['geckotime'] = null;
1615 if (!is_null($this->getGeckoDate())) {
1616 $use_time = (strlen($this->getGeckoDate()) > 8);
1617 $gd_str = substr($this->getGeckoDate(),0,4).'-'.substr($this->getGeckoDate(),4,2).'-'.substr($this->getGeckoDate(),6,2);
1618 if ($use_time) {
1619 $gd_str .= substr($this->getGeckoDate(),8,2).':00';
1620 $old_tz = date_default_timezone_get();
1621 date_default_timezone_set("America/Los_Angeles");
1622 }
1623 $this->uadata['geckotime'] = strtotime($gd_str);
1624 if ($use_time) { date_default_timezone_set($old_tz); }
1625 }
1626 }
1627 return $this->uadata['geckotime'];
1628 }
1629
3077a4f6 1630 public function isBot() { return $this->bot; }
1631
31fe75cc
RK
1632 public function isMobile() {
1633 if (!isset($this->uadata['os'])) {
1634 // getOS() makes sure that also the mobile tag is set correctly
1635 $this->getOS();
1636 }
1637 return $this->mobile;
1638 }
1639
3077a4f6 1640 public function isns() {
1641 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
1642 return (strpos($this->brand, 'Netscape') !== false);
1643 }
1644 public function isns4() {
1645 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
1646 return ((strpos($this->brand, 'Netscape') !== false) && (intval($this->version) == 4));
1647 }
1648 public function isie() {
1649 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
1650 return $this->hasEngine('trident');
1651 }
1652 public function geckodate() {
1653 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
1654 return (!is_null($this->getGeckoDate())?$this->getGeckoDate():0);
1655 }
1656 public function geckobased() {
1657 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
1658 return $this->hasEngine('gecko');
1659 }
1660 public function khtmlbased() {
1661 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
1662 return $this->hasEngine('khtml');
1663 }
31733e08 1664}
23585ba2 1665?>