add knowledge about the Heritrix bot
[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.
19 * Portions created by the Initial Developer are Copyright (C) 2003
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
3077a4f6 53 // private $uadata
f983aa36 54 // array of static user agent data (static vars in functions are set for all objects of this class!)
31733e08 55 //
3077a4f6 56 // public function getBrand()
23585ba2 57 // returns the User Agent Brand Name
bf78d3ed 58 //
3077a4f6 59 // public function getVersion()
23585ba2 60 // returns the User Agent version
61 //
3077a4f6 62 // public function getAcceptLanguages()
4210e7b0 63 // returns an associated array with the accepted languages of this UA
64 // keys are language codes, values are q factors (weights)
65 //
3077a4f6 66 // public function getUAString()
f983aa36 67 // returns the full User Agent string
68 //
3077a4f6 69 // public function getEngine()
bf78d3ed 70 // returns a string telling the detected rendering engine, null if we can't detect
c18a4476 71 // one of gecko|khtml|trident|tasman|nscp|presto|gzilla|gtkhtml|links|icestorm|unknown
bf78d3ed 72 //
3077a4f6 73 // public function hasEngine($rnd_engine)
bf78d3ed 74 // returns true if the given rendering engine was detected
75 //
3077a4f6 76 // public function getEngineVersion()
bf78d3ed 77 // returns a the version number for the rendering engine
78 // this may be the same as getVersion() for many engines, or null if we don't know
79 //
3077a4f6 80 // public function getOS()
bf78d3ed 81 // returns a string telling the detected operating system, null if we can't detect
82 // might be very verbose, uses no abbreviations for most names
83 //
3077a4f6 84 // public function getPlatform()
bf78d3ed 85 // returns a string telling the detected OS platform, null if we can't detect
ac9220c2 86 // one of windows|linux|mac|solaris|unknown
bf78d3ed 87 //
3077a4f6 88 // public function getLanguage() {
bf78d3ed 89 // returns a string telling the detected browser UI language, null if we can't detect
90 // should be an ISO code
91 //
3077a4f6 92 // public function isBot()
a8464009 93 // returns true if User Agent seems to be a bot
bf78d3ed 94 //
95 // *** functions that only return useable info for some agents ***
96 //
3077a4f6 97 // public function getGeckoDate()
bf78d3ed 98 // returns the Gecko date for Gecko-based browsers, null for others
99 //
100 // *** functions for compat to older versions of this class ***
101 //
3077a4f6 102 // public function isns()
31733e08 103 // returns true if User Agent seems to be Netscape brand, false if not
3077a4f6 104 // public function isns4()
31733e08 105 // returns true if User Agent seems to be Netscape Communicator 4.x, false if not
3077a4f6 106 // public function isie()
31733e08 107 // returns true if User Agent seems to be a version of Internet Exploder, false if not
3077a4f6 108 // public function geckobased()
31733e08 109 // returns true if User Agent seems to be a Gecko-based browser, false if not
3077a4f6 110 // public function geckodate()
31733e08 111 // returns the Gecko date when it's a Gecko-based browser, 0 if not
3077a4f6 112 // public function khtmlbased()
1defa974 113 // returns true if User Agent seems to be a KHTML-based browser, false if not
114
115 // collection of some known User Agent Strings:
bf78d3ed 116 // *** see testbed/ua_list_raw.txt ***
117 // *** see also http://www.pgts.com.au/pgtsj/pgtsj0208c.html ***
31733e08 118
3077a4f6 119 private $uastring;
120 private $brand;
121 private $version;
122 private $bot = false;
123 private $uadata = array();
31733e08 124
3077a4f6 125 function __construct($ua_string = '') {
31733e08 126 // *** constructor ***
1defa974 127 if (strlen($ua_string)) {
128 $this->uastring = $ua_string;
129 }
130 else {
131 // read raw UA string
4210e7b0 132 $this->uastring = $_SERVER['HTTP_USER_AGENT'];
1defa974 133 }
31733e08 134
135 // get UA brand and version
bf78d3ed 136 $this->brand = 'Unknown'; $this->version = null;
137 // find reasonable defaults
6e783db6 138 if (preg_match('|([0-9a-zA-Z\.:()_ -]+)/([0-9a-zA-Z\._+-]+)|', $this->uastring, $regs)) {
bf78d3ed 139 $this->brand = trim($regs[1]);
140 $this->version = $regs[2];
141 }
142 elseif (preg_match('|^([a-zA-Z\._ -]+)[_ -][vV]?([0-9][0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
143 $this->brand = trim($regs[1]);
144 $this->version = $regs[2];
145 }
146 elseif (preg_match('|^([a-zA-Z\._ -]+)|', $this->uastring, $regs)) {
147 $this->brand = trim($regs[1]);
148 $this->version = null;
149 }
81e72a3e 150 $this->bot = (strpos(strtolower($this->brand), 'bot') !== false)
151 || (strpos(strtolower($this->brand), 'crawler') !== false)
152 || (strpos(strtolower($this->brand), 'spider') !== false);
153
bf78d3ed 154 // search for any real and/or special UAs
155 if (preg_match('|Netscape6/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
156 $this->brand = 'Netscape';
31733e08 157 $this->version = $regs[1];
81e72a3e 158 $this->bot = false;
31733e08 159 }
bf78d3ed 160 elseif (preg_match('|Netscape/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
161 $this->brand = 'Netscape';
31733e08 162 $this->version = $regs[1];
81e72a3e 163 $this->bot = false;
31733e08 164 }
bf78d3ed 165 elseif (preg_match('|Chimera/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
166 $this->brand = 'Chimera';
1defa974 167 $this->version = $regs[1];
81e72a3e 168 $this->bot = false;
1defa974 169 }
bf78d3ed 170 elseif (preg_match('|Camino/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
171 $this->brand = 'Camino';
a5813ca3 172 $this->version = $regs[1];
81e72a3e 173 $this->bot = false;
a5813ca3 174 }
bf78d3ed 175 elseif (preg_match('|Phoenix/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
176 $this->brand = 'Phoenix';
1defa974 177 $this->version = $regs[1];
81e72a3e 178 $this->bot = false;
1defa974 179 }
bf78d3ed 180 elseif (preg_match('|Mozilla Firebird/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
181 $this->brand = 'Mozilla Firebird';
23585ba2 182 $this->version = $regs[1];
81e72a3e 183 $this->bot = false;
23585ba2 184 }
c18a4476 185 elseif (preg_match('|Flock/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
186 $this->brand = 'Flock';
187 $this->version = $regs[1];
188 $this->bot = false;
189 }
bf78d3ed 190 elseif (preg_match('|Firefox/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
191 $this->brand = 'Firefox';
a5813ca3 192 $this->version = $regs[1];
81e72a3e 193 $this->bot = false;
a5813ca3 194 }
b24eb888 195 elseif (preg_match('|SeaMonkey/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
196 $this->brand = 'SeaMonkey';
197 $this->version = $regs[1];
81e72a3e 198 $this->bot = false;
b24eb888 199 }
c18a4476 200 elseif (preg_match('|Iceape/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
201 $this->brand = 'IceApe';
202 $this->version = $regs[1];
203 $this->bot = false;
204 }
205 elseif (preg_match('|Iceweasel/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
206 $this->brand = 'IceWeasel';
207 $this->version = $regs[1];
208 $this->bot = false;
209 }
bf78d3ed 210 elseif (preg_match('|Galeon/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
211 $this->brand = 'Galeon';
31733e08 212 $this->version = $regs[1];
81e72a3e 213 $this->bot = false;
31733e08 214 }
6e783db6 215 elseif (preg_match('|Epiphany/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
216 $this->brand = 'Epiphany';
217 $this->version = $regs[1];
81e72a3e 218 $this->bot = false;
6e783db6 219 }
220 elseif (preg_match('|K-Meleon/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
221 $this->brand = 'K-Meleon';
222 $this->version = $regs[1];
81e72a3e 223 $this->bot = false;
6e783db6 224 }
225 elseif (preg_match('|AOL[/ ]([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
226 $this->brand = 'AOL';
227 $this->version = $regs[1];
81e72a3e 228 $this->bot = false;
6e783db6 229 }
bf78d3ed 230 elseif (preg_match('|rv:([0-9a-zA-Z\.+]+)|', $this->uastring, $regs) && strstr($this->uastring, "Mozilla/") && strstr($this->uastring, "Gecko/")) {
231 $this->brand = 'Mozilla';
31733e08 232 $this->version = $regs[1];
81e72a3e 233 $this->bot = false;
31733e08 234 }
09cd2756 235 elseif (preg_match('|m([0-9]+)\)|', $this->uastring, $regs) && strstr($this->uastring, "Mozilla/") && strstr($this->uastring, "Gecko/")) {
236 $this->brand = 'Mozilla';
237 $this->version = 'M'.$regs[1];
238 $this->bot = false;
239 }
c18a4476 240 elseif (preg_match('|Opera\/([^\(]+) \(.*; Opera Mini; |', $this->uastring, $regs)) {
241 $this->brand = 'Opera Mini';
242 $this->version = $regs[1];
243 $this->bot = false;
244 }
245 elseif (preg_match('/Opera\/[^\(]+ \(.*; Opera Mini\/([^;]+); /i', $this->uastring, $regs)) {
246 $this->brand = 'Opera Mini';
247 $this->version = $regs[1];
248 $this->bot = false;
249 }
bf78d3ed 250 elseif (preg_match('|Opera[ /]([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
251 $this->brand = 'Opera';
31733e08 252 $this->version = $regs[1];
81e72a3e 253 $this->bot = false;
31733e08 254 }
c18a4476 255 elseif (preg_match('|OmniWeb/([0-9a-zA-Z\.+-]+)|', $this->uastring, $regs)) {
bf78d3ed 256 $this->brand = 'OmniWeb';
1defa974 257 $this->version = $regs[1];
81e72a3e 258 $this->bot = false;
1defa974 259 }
bf78d3ed 260 elseif (preg_match('|Konqueror/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
261 $this->brand = 'Konqueror';
31733e08 262 $this->version = $regs[1];
81e72a3e 263 $this->bot = false;
31733e08 264 }
c18a4476 265 elseif (preg_match('|Shiira/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
266 $this->brand = 'Shiira';
267 $this->version = $regs[1];
268 $this->bot = false;
269 }
bf78d3ed 270 elseif (preg_match('|Safari/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
271 $this->brand = 'Safari';
1defa974 272 $this->version = $regs[1];
81e72a3e 273 $this->bot = false;
1defa974 274 }
bf78d3ed 275 elseif (preg_match('|AppleWebKit/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
276 $this->brand = 'AppleWebKit';
1defa974 277 $this->version = $regs[1];
81e72a3e 278 $this->bot = false;
1defa974 279 }
bf78d3ed 280 elseif (preg_match('|MSFrontPage/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
281 $this->brand = 'Microsoft FrontPage';
f983aa36 282 $this->version = $regs[1];
81e72a3e 283 $this->bot = false;
f983aa36 284 }
bf78d3ed 285 elseif (preg_match('|iCab[/ ]([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
286 $this->brand = 'iCab';
a8464009 287 $this->version = $regs[1];
81e72a3e 288 $this->bot = false;
a8464009 289 }
bf78d3ed 290 elseif (preg_match('|IBrowse[/ ]([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
291 $this->brand = 'IBrowse';
a8464009 292 $this->version = $regs[1];
81e72a3e 293 $this->bot = false;
a8464009 294 }
c18a4476 295 elseif (preg_match('|ICEbrowser/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
296 $this->brand = 'ICEbrowser';
297 $this->version = $regs[1];
298 $this->bot = false;
299 }
300 elseif (preg_match('|ICE Browser/v([0-9a-zA-Z\._+]+)|', $this->uastring, $regs)) {
301 $this->brand = 'ICEbrowser';
302 $this->version = str_replace('_', '.', $regs[1]);
303 $this->bot = false;
304 }
305 elseif (preg_match('|NetPositive/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
306 $this->brand = 'NetPositive';
307 $this->version = $regs[1];
308 $this->bot = false;
309 }
310 elseif (preg_match('|WebPro/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
311 $this->brand = 'WebPro (Novarra)';
312 $this->version = $regs[1];
313 $this->bot = false;
314 }
315 elseif (preg_match('|; OffByOne;|', $this->uastring, $regs)) {
316 $this->brand = 'Off By One';
317 $this->version = null;
318 $this->bot = false;
319 }
320 elseif (preg_match('|PSP \(PlayStation Portable\); ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
321 $this->brand = 'PlayStation Portable';
322 $this->version = $regs[1];
323 $this->bot = false;
324 }
325 elseif (preg_match('|NetFront/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
326 $this->brand = 'NetFront';
a8464009 327 $this->version = $regs[1];
81e72a3e 328 $this->bot = false;
a8464009 329 }
6e783db6 330 elseif (preg_match('|UP.Browser/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
331 $this->brand = 'UP.Browser';
332 $this->version = $regs[1];
81e72a3e 333 $this->bot = false;
6e783db6 334 }
c18a4476 335 elseif (preg_match('|UP.Link/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
336 $this->brand = 'UP.Link';
337 $this->version = $regs[1];
338 $this->bot = false;
339 }
340 elseif (preg_match('|AU-MIC-([0-9A-Z]+/[0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
341 $this->brand = 'Obigo';
342 $this->version = $regs[1];
343 $this->bot = false;
344 }
345 elseif (preg_match('|Nokia([0-9a-zA-Z]+/[0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
346 $this->brand = 'Nokia';
347 $this->version = $regs[1];
348 $this->bot = false;
349 }
350 elseif (preg_match('|SonyEricsson([0-9a-zA-Z]+/[0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
351 $this->brand = 'SonyEricsson';
352 $this->version = $regs[1];
353 $this->bot = false;
354 }
355 elseif (preg_match('|SIE-([0-9a-zA-Z]+/[0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
356 $this->brand = 'Siemens';
357 $this->version = $regs[1];
358 $this->bot = false;
359 }
360 elseif (preg_match('|MOT-([0-9a-zA-Z]+/[0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
361 $this->brand = 'Motorola';
362 $this->version = $regs[1];
363 $this->bot = false;
364 }
365 elseif (preg_match('|IBM-WebExplorer-DLL/v([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
366 $this->brand = 'WebExplorer';
367 $this->version = $regs[1];
368 $this->bot = false;
369 }
bf78d3ed 370 elseif (preg_match('|ELinks \(([0-9a-zA-Z\.+]+);|', $this->uastring, $regs)) {
371 $this->brand = 'ELinks';
a8464009 372 $this->version = $regs[1];
81e72a3e 373 $this->bot = false;
a8464009 374 }
6e783db6 375 elseif (preg_match('|Links \(([0-9a-zA-Z\.+]+);|', $this->uastring, $regs)) {
376 $this->brand = 'Links';
377 $this->version = $regs[1];
81e72a3e 378 $this->bot = false;
6e783db6 379 }
380 elseif (preg_match('|wget[/ ]([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) {
381 $this->brand = 'wget';
382 $this->version = $regs[1];
81e72a3e 383 $this->bot = false;
6e783db6 384 }
c18a4476 385 elseif (preg_match('|; arexx\)|i', $this->uastring, $regs)) {
386 $this->brand = 'ARexx';
387 $this->version = null;
388 $this->bot = false;
389 }
bf78d3ed 390 elseif (preg_match('|ZyBorg/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
391 $this->brand = 'ZyBorg';
a8464009 392 $this->version = $regs[1];
393 $this->bot = true;
394 }
bf78d3ed 395 elseif (preg_match('|Googlebot/?([0-9a-zA-Z\.+]+)?|', $this->uastring, $regs)) {
396 $this->brand = 'Googlebot';
a8464009 397 $this->version = $regs[1];
398 $this->bot = true;
399 }
bf78d3ed 400 elseif (preg_match('|Ask Jeeves/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
401 $this->brand = 'Ask Jeeves';
a8464009 402 $this->version = $regs[1];
403 $this->bot = true;
404 }
4e8c44da 405 elseif (preg_match('|heritrix/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
406 $this->brand = 'Heritrix';
407 $this->version = $regs[1];
408 $this->bot = true;
409 }
c51ab9a2 410 elseif (preg_match('|Slurp|', $this->uastring, $regs)) {
bf78d3ed 411 $this->brand = 'Slurp';
c51ab9a2 412 $this->version = null;
a8464009 413 $this->bot = true;
414 }
bf78d3ed 415 elseif (preg_match('|Gulper Web Bot ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
416 $this->brand = 'Gulper Web Bot';
a8464009 417 $this->version = $regs[1];
418 $this->bot = true;
419 }
bf78d3ed 420 elseif (preg_match('|HTTrack ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
421 $this->brand = 'HTTrack';
a8464009 422 $this->version = $regs[1];
423 $this->bot = true;
424 }
5b8eba2a 425 elseif (preg_match('|Microsoft URL Control - ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
426 $this->brand = 'Microsoft URL Control';
427 $this->version = $regs[1];
428 $this->bot = true;
429 }
81e72a3e 430 elseif (preg_match('|([0-9a-zA-Z\.+]+)_AC-Plug|', $this->uastring, $regs)) {
431 $this->brand = 'AC-Plug';
432 $this->version = $regs[1];
433 $this->bot = true;
434 }
bf78d3ed 435 elseif (preg_match('|^Internet Explorer 5.5|', $this->uastring)) {
436 $this->brand = 'Unknown bot (IE5.5)';
437 $this->version = null;
a8464009 438 $this->bot = true;
439 }
bf78d3ed 440 elseif (preg_match('|^Mozilla[\s ]*$|', $this->uastring)) {
441 $this->brand = 'Unknown bot (Mozilla)';
442 $this->version = null;
a8464009 443 $this->bot = true;
444 }
bf78d3ed 445 elseif (preg_match('|http://www.almaden.ibm.com/cs/crawler|', $this->uastring)) {
446 $this->brand = 'almaden crawler';
447 $this->version = null;
a8464009 448 $this->bot = true;
449 }
bf78d3ed 450 elseif (preg_match('|B-l-i-t-z-B-O-T|', $this->uastring) || preg_match('|B l i t z B O T @ t r i c u s . n e t|', $this->uastring)) {
451 $this->brand = 'BlitzBOT';
452 $this->version = null;
a8464009 453 $this->bot = true;
454 }
bf78d3ed 455 elseif (preg_match('|sitecheck.internetseer.com|', $this->uastring)) {
456 $this->brand = 'internetseer';
457 $this->version = null;
a8464009 458 $this->bot = true;
459 }
bf78d3ed 460 elseif (preg_match('|Girafabot|', $this->uastring)) {
461 $this->brand = 'Girafabot';
462 $this->version = null;
a8464009 463 $this->bot = true;
464 }
bf78d3ed 465 elseif (preg_match('|efp@gmx.net|', $this->uastring)) {
466 $this->brand = 'efp';
467 $this->version = null;
a8464009 468 $this->bot = true;
469 }
81e72a3e 470 elseif (preg_match('|42_HAL|', $this->uastring)) {
471 $this->brand = '42_HAL';
472 $this->version = null;
473 $this->bot = true;
474 }
475 elseif (preg_match('|Baiduspider|i', $this->uastring)) {
476 $this->brand = 'BaiDuSpider';
477 $this->version = null;
478 $this->bot = true;
479 }
480 elseif (preg_match('|Indy Library|', $this->uastring)) {
481 $this->brand = 'Indy Library';
482 $this->version = null;
483 $this->bot = true;
484 }
bf78d3ed 485 elseif (preg_match('|^Firefly|', $this->uastring)) {
486 // comes here with correct value but would be detected as MSIE
a8464009 487 }
81e72a3e 488 elseif (preg_match('|Steganos Internet Anonym([0-9a-zA-Z\. +]*)|', $this->uastring, $regs)) {
489 $this->brand = 'Steganos Internet Anonym';
490 $this->version = $regs[1];
491 $this->bot = false;
492 }
bf78d3ed 493 elseif (preg_match('|Avant Browser[^/]|', $this->uastring)) {
494 $this->brand = 'Avant Browser';
495 $this->version = null;
81e72a3e 496 $this->bot = false;
a8464009 497 }
c18a4476 498 elseif (preg_match('|Browser[^/]+(http://www.avantbrowser.com)|', $this->uastring)) {
499 $this->brand = 'Avant Browser';
500 $this->version = null;
501 $this->bot = false;
502 }
6e783db6 503 elseif (preg_match('|Maxthon|', $this->uastring)) {
504 $this->brand = 'Maxthon';
505 $this->version = null;
81e72a3e 506 $this->bot = false;
6e783db6 507 }
508 elseif (preg_match('|MyIE2|', $this->uastring)) {
509 $this->brand = 'MyIE2';
510 $this->version = null;
81e72a3e 511 $this->bot = false;
6e783db6 512 }
bf78d3ed 513 elseif (preg_match('|Crazy Browser ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
514 $this->brand = 'Crazy Browser';
515 $this->version = $regs[1];
81e72a3e 516 $this->bot = false;
517 }
518 elseif (preg_match('|AvantGo ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
519 $this->brand = 'AvantGo';
520 $this->version = $regs[1];
521 $this->bot = false;
a8464009 522 }
bf78d3ed 523 elseif (preg_match('|MSN ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
524 $this->brand = 'MSN';
525 $this->version = $regs[1];
81e72a3e 526 $this->bot = false;
a8464009 527 }
c18a4476 528 elseif (preg_match('|America Online Browser [0-9a-zA-Z\.+]+; rev([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
529 $this->brand = 'AOL Browser';
530 $this->version = $regs[1];
531 $this->bot = false;
532 }
bf78d3ed 533 elseif (preg_match('|MS FrontPage ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
534 $this->brand = 'Microsoft FrontPage';
535 $this->version = $regs[1];
81e72a3e 536 $this->bot = false;
a8464009 537 }
c18a4476 538 elseif (preg_match('|Microsoft Internet Explorer/4.0b1|', $this->uastring, $regs)) {
539 $this->brand = 'Microsoft Internet Explorer';
540 $this->version = '1.0';
541 $this->bot = false;
542 }
bf78d3ed 543 elseif (preg_match('|MSIE ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
544 $this->brand = 'Microsoft Internet Explorer';
31733e08 545 $this->version = $regs[1];
81e72a3e 546 $this->bot = false;
31733e08 547 }
c18a4476 548 elseif (preg_match('|MSPIE ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) {
549 $this->brand = 'Microsoft Pocket Internet Explorer';
550 $this->version = $regs[1];
551 $this->bot = false;
552 }
81e72a3e 553 elseif (preg_match('|Mozilla/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs) && (strpos($this->uastring, 'compatible;') === false) && (strpos($this->uastring, 'Gecko/') === false)) {
bf78d3ed 554 $this->brand = 'Netscape';
1defa974 555 $this->version = $regs[1];
bf78d3ed 556 if (intval($this->version) == 4) { $this->brand .= ' Communicator'; }
81e72a3e 557 $this->bot = false;
558 }
559 elseif (preg_match('|Mozilla/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs) && (strpos($this->uastring, 'compatible;') !== false)) {
560 $this->brand = 'Mozilla-compatible (unknown)';
561 $this->version = null;
562 $this->bot = false;
1defa974 563 }
a8464009 564
81e72a3e 565 $botArray = array('Scooter','Spinne','Vagabondo','Firefly','Scrubby','NG','Pompos','Szukacz','ASPseek',
566 'NetResearchServer','LinkWalker','Zeus','W3C_Validator','ZyBorg','Ask Jeeves','ia_archiver',
567 'PingALink Monitoring Services','IlTrovatore-Setaccio','Nutch','Mercator','search.ch',
568 'appie','larbin','NutchCVS','ObjectsSearch','Webchat','Mediapartners-Google','Schmozilla',
5b8eba2a 569 'FavOrg','findlinks','DataCha0s','ichiro','Francis','','','','','','','');
a8464009 570
571 if (in_array($this->brand, $botArray)) {
572 $this->bot = true;
573 }
31733e08 574 }
575
3077a4f6 576 public function getBrand() { return $this->brand; }
577 public function getVersion() { return $this->version; }
4210e7b0 578
3077a4f6 579 public function getAcceptLanguages() {
4210e7b0 580 if (!isset($this->uadata['accept-languages'])) {
581 $headers = getAllHeaders();
582 $accLcomp = explode(',', $headers['Accept-Language']);
583 $accLang = array();
584 foreach ($accLcomp as $lcomp) {
585 if (strlen($lcomp)) {
586 $ldef = explode(';', $lcomp);
437e1c91 587 $accLang[$ldef[0]] = (float)((strpos(@$ldef[1],'q=')===0)?substr($ldef[1],2):1);
4210e7b0 588 }
589 }
590 $this->uadata['accept-languages'] = $accLang;
591 }
592 return $this->uadata['accept-languages'];
593 }
594
3077a4f6 595 public function getUAString() { return $this->uastring; }
23585ba2 596
3077a4f6 597 public function getEngine() {
c18a4476 598 // return gecko|khtml|trident|tasman|nscp|presto|gzilla|gtkhtml|links|icestorm|unknown
bf78d3ed 599 if (!isset($this->uadata['engine'])) {
ac9220c2 600 $this->uadata['engine'] = 'unknown';
bf78d3ed 601 $this->uadata['geckodate'] = null;
602 if (preg_match('|Gecko/([0-9]+)|', $this->uastring, $regs)) {
603 $this->uadata['engine'] = 'gecko';
604 $this->uadata['geckodate'] = $regs[1];
605 }
606 elseif ((strpos($this->brand, 'Internet Explorer') !== false) || (strpos($this->brand, 'FrontPage') !== false)) {
6e783db6 607 if ((strpos(strtolower($this->uastring), 'mac') !== false) && (intval($this->getVersion()) >= 5)) {
bf78d3ed 608 $this->uadata['engine'] = 'tasman';
609 }
610 else {
611 $this->uadata['engine'] = 'trident';
612 }
613 }
c18a4476 614 elseif ((strpos($this->brand, 'Konqueror') !== false) || (strpos($this->brand, 'Safari') !== false) ||
615 (strpos($this->brand, 'Shiira') !== false) ||
616 (strpos($this->brand, 'AppleWebKit') !== false) || (strpos($this->brand, 'OmniWeb') !== false)) {
bf78d3ed 617 $this->uadata['engine'] = 'khtml';
618 }
81e72a3e 619 elseif (strpos($this->brand, 'Netscape') !== false) {
620 // non-Gecko Netscape browsers
621 if (intval($this->version) <= 4) {
622 $this->uadata['engine'] = 'nscp';
623 }
624 elseif (strpos($this->uastring, 'MSIE') !== false) {
625 $this->uadata['engine'] = 'trident';
626 }
bf78d3ed 627 }
628 elseif (strpos($this->brand, 'Opera') !== false) {
629 $this->uadata['engine'] = 'presto';
630 }
631 elseif (strpos($this->brand, 'Dillo') !== false) {
632 $this->uadata['engine'] = 'gzilla';
633 }
634 elseif ((strpos($this->brand, 'ELinks') !== false) || (strpos($this->brand, 'Links') !== false)) {
635 $this->uadata['engine'] = 'links';
636 }
c18a4476 637 elseif ((strpos($this->brand, 'ICEbrowser') !== false) || (strpos($this->brand, 'ICE Browser') !== false)) {
638 $this->uadata['engine'] = 'icestorm';
639 }
6e783db6 640 elseif ((strpos($this->brand, 'Avant') !== false) || (strpos($this->brand, 'Crazy Browser') !== false) ||
641 (strpos($this->brand, 'AOL') !== false) || (strpos($this->brand, 'MSN') !== false) ||
642 (strpos($this->brand, 'MyIE2') !== false) || (strpos($this->brand, 'Maxthon') !== false)) {
bf78d3ed 643 $this->uadata['engine'] = 'trident';
644 }
645 elseif (strpos($this->brand, 'Galeon') !== false) {
646 $this->uadata['engine'] = 'gecko';
31733e08 647 }
c18a4476 648 elseif (strpos($this->brand, 'WebPro') !== false) {
649 $this->uadata['engine'] = 'nscp';
650 }
31733e08 651 }
bf78d3ed 652 return $this->uadata['engine'];
31733e08 653 }
654
3077a4f6 655 public function hasEngine($rnd_engine) { return ($this->getEngine() == $rnd_engine); }
bf78d3ed 656
3077a4f6 657 public function getEngineVersion() {
bf78d3ed 658 if (!isset($this->uadata['eng_version'])) {
659 $this->uadata['eng_version'] = null;
660 // getOS() should get the date for us
661 $this->getOS();
31733e08 662 }
bf78d3ed 663 return $this->uadata['eng_version'];
31733e08 664 }
665
3077a4f6 666 public function getOS() {
bf78d3ed 667 if (!isset($this->uadata['os'])) {
668 $this->uadata['os'] = null;
669 if ($this->hasEngine('gecko')) {
81e72a3e 670 if (preg_match('|Mozilla/5.0 \(([^;]+); [^;]+; ([^;]+); ([^;]+); rv:([^\);]+)(; [^\)]+)?\)|', $this->uastring, $regs)) {
bf78d3ed 671 $this->uadata['os'] = $regs[2];
f9a0c27d 672 $this->uadata['lang'] = (strpos($regs[3],'chrome://')===false)?$regs[3]:null;
bf78d3ed 673 $this->uadata['eng_version'] = $regs[4];
674 }
81e72a3e 675 elseif (preg_match('|Mozilla/5.0 \(([^;]+); [^;]+; ([^;]+); rv:([^\);]+)(; [^\)]+)?\)|', $this->uastring, $regs)) {
676 $this->uadata['os'] = $regs[2];
677 $this->uadata['lang'] = null;
678 $this->uadata['eng_version'] = $regs[3];
679 }
6e783db6 680 elseif (preg_match('|Mozilla/5.0 \(([^;]+); [^;]+; ([^;]+); ([^;]+); m([^\);]+)\)|', $this->uastring, $regs)) {
bf78d3ed 681 $this->uadata['os'] = $regs[2];
682 $this->uadata['lang'] = $regs[3];
683 $this->uadata['eng_version'] = 'M'.$regs[4];
684 }
09cd2756 685 elseif (preg_match('|Mozilla/5.0 \(([^;]+); [^;]+; ([^;]+); m([^\);]+)\)|', $this->uastring, $regs)) {
686 $this->uadata['os'] = $regs[1];
687 $this->uadata['lang'] = $regs[2];
688 $this->uadata['eng_version'] = 'M'.$regs[3];
689 }
6e783db6 690 elseif (preg_match('|Mozilla/5.0 \(([^;]+); [^;]+; ([^;]+); ([^\);]+)\)|', $this->uastring, $regs)) {
691 $this->uadata['os'] = $regs[2];
692 $this->uadata['lang'] = $regs[3];
693 $this->uadata['eng_version'] = null;
694 }
f9a0c27d 695 elseif (preg_match('|Mozilla/5.0 \(([^;]+); ([^;]+); rv:([^\);]+)\)|', $this->uastring, $regs)) {
696 $this->uadata['os'] = $regs[2];
697 $this->uadata['lang'] = null;
698 $this->uadata['eng_version'] = $regs[3];
699 }
6e783db6 700 elseif (preg_match('|Mozilla/5.0 \(([^;]+); [^;]+; ([^\);]+)\)|', $this->uastring, $regs)) {
bf78d3ed 701 $this->uadata['os'] = $regs[2];
702 $this->uadata['lang'] = null;
703 $this->uadata['eng_version'] = null;
704 }
705 elseif (preg_match('|Mozilla/5.0 Galeon/[^\(]+ \(([^;]+); ([^;]+);[^\)]+\)|', $this->uastring, $regs)) {
706 $this->uadata['os'] = $regs[2];
707 $this->uadata['lang'] = null;
708 $this->uadata['eng_version'] = null;
709 }
710 elseif (preg_match('|Debian/|', $this->uastring, $regs)) {
711 $this->uadata['os'] = 'Debian Linux';
712 $this->uadata['lang'] = null;
713 $this->uadata['eng_version'] = null;
714 }
715 }
6e783db6 716 elseif ($this->hasEngine('trident') || $this->hasEngine('tasman')) {
c18a4476 717 if (preg_match('/Mozilla\/[^\(]+ \(compatible *; MSP?IE ([^;]+)[^\)]*; ?((?:Mac|Win)[^;]+)[^\)]*\)/i', $this->uastring, $regs)) {
718 $this->uadata['eng_version'] = (strpos($this->uastring,'MSPIE')!==false)?null:$regs[1];
bf78d3ed 719 $this->uadata['os'] = $regs[2];
720 $this->uadata['lang'] = null;
721 }
81e72a3e 722 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible *; MSIE ([^;]+)[^\)]*\)/i', $this->uastring, $regs)) {
bf78d3ed 723 $this->uadata['eng_version'] = $regs[1];
724 $this->uadata['os'] = null;
725 $this->uadata['lang'] = null;
726 }
c18a4476 727 elseif (preg_match('/Microsoft Internet Explorer\/[^\s]+ \(((?:Mac|Win)[^;\)]+)\)/i', $this->uastring, $regs)) {
728 $this->uadata['eng_version'] = $this->getVersion();
729 $this->uadata['os'] = $regs[1];
730 $this->uadata['lang'] = null;
731 }
732 elseif (preg_match('/Microsoft Pocket Internet Explorer\/[^\s]+/i', $this->uastring, $regs)) {
733 $this->uadata['eng_version'] = null;
734 $this->uadata['os'] = 'Windows CE';
735 $this->uadata['lang'] = null;
736 }
31733e08 737 }
bf78d3ed 738 elseif ($this->hasEngine('khtml')) {
6e783db6 739 if (preg_match('/Mozilla\/[^\(]+ \(compatible; Konqueror\/([^;]+); ([^;]+); ([^;]+); ([^;]+); ([^\);]+)\)(?: KHTML\/([0-9a-zA-Z\.+]+))?/i', $this->uastring, $regs)) {
740 $this->uadata['eng_version'] = strlen($regs[6])?$regs[6]:$regs[1];
bf78d3ed 741 $this->uadata['os'] = $regs[2];
742 $this->uadata['lang'] = $regs[5];
743 }
6e783db6 744 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible; Konqueror\/([^;]+); ([^\);]+)[^\)]*\)(?: KHTML\/([0-9a-zA-Z\.+]+))?/i', $this->uastring, $regs)) {
745 $this->uadata['eng_version'] = strlen($regs[3])?$regs[3]:$regs[1];
bf78d3ed 746 $this->uadata['os'] = $regs[2];
747 $this->uadata['lang'] = null;
748 }
749 elseif (preg_match('|Mozilla/5.0 \(([^;]+); U; ([^;]+); ([^\);]+)\)|', $this->uastring, $regs)) {
750 $this->uadata['os'] = $regs[2];
751 $this->uadata['lang'] = $regs[3];
752 $this->uadata['eng_version'] = null;
753 }
c18a4476 754 elseif (preg_match('|Mozilla/5.0 \(([^;]+); U; ([^\);]+)\)|', $this->uastring, $regs)) {
755 $this->uadata['os'] = $regs[1];
756 $this->uadata['lang'] = $regs[2];
757 $this->uadata['eng_version'] = null;
758 }
bf78d3ed 759 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible; [^;]+; ([^\);]+)\)/i', $this->uastring, $regs)) {
760 $this->uadata['os'] = $regs[1];
761 $this->uadata['lang'] = null;
762 $this->uadata['eng_version'] = null;
763 }
764 }
765 elseif ($this->hasEngine('presto')) {
c18a4476 766 // Opera < 8
f9a0c27d 767 if (preg_match('/Opera\/[^\(]+ \((?:X11; )?([^;]+)[^\)]+\) +\[([a-z_-]+)\]/i', $this->uastring, $regs)) {
bf78d3ed 768 $this->uadata['eng_version'] = $this->getVersion();
769 $this->uadata['os'] = $regs[1];
770 $this->uadata['lang'] = $regs[2];
771 }
f9a0c27d 772 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible; MSIE [^;]+; (?:X11; )?([^;\)]+)[^\)]*\) Opera [^ ]+ +\[([a-z_-]+)\]/i', $this->uastring, $regs)) {
6e783db6 773 $this->uadata['eng_version'] = $this->getVersion();
774 $this->uadata['os'] = $regs[1];
775 $this->uadata['lang'] = $regs[2];
776 }
f9a0c27d 777 elseif (preg_match('/Mozilla\/[^\(]+ \((?:X11; )?([^;]+);.+\) Opera [^ ]+ \[([a-z_-]+)\]/i', $this->uastring, $regs)) {
6e783db6 778 $this->uadata['eng_version'] = $this->getVersion();
779 $this->uadata['os'] = $regs[1];
780 $this->uadata['lang'] = $regs[2];
781 }
c18a4476 782 // Opera mini
783 elseif (preg_match('/Opera\/([^\(]+) \((?:X11; )?([^;]+); Opera Mini; ([a-z_-]+); /i', $this->uastring, $regs)) {
784 $this->uadata['eng_version'] = null;
785 $this->uadata['os'] = $regs[2];
786 $this->uadata['lang'] = $regs[3];
787 }
788 elseif (preg_match('/Opera\/([^\(]+) \((?:X11; )?([^;]+); Opera Mini\/[^;]+; ([a-z_-]+); /i', $this->uastring, $regs)) {
789 $this->uadata['eng_version'] = $regs[1];
790 $this->uadata['os'] = $regs[2];
791 $this->uadata['lang'] = $regs[3];
792 }
793 // Opera >= 8
f9a0c27d 794 elseif (preg_match('/Opera\/[^\(]+ \((?:X11; )?([^;]+); [^\)]+; ([a-z_-]+)\)/i', $this->uastring, $regs)) {
bf78d3ed 795 $this->uadata['eng_version'] = $this->getVersion();
796 $this->uadata['os'] = $regs[1];
797 $this->uadata['lang'] = $regs[2];
798 }
f9a0c27d 799 elseif (preg_match('/Mozilla\/[^\(]+ \(compatible; MSIE [^;]+; (?:X11; )?([^;]+); ([a-z_-]+)\) Opera [^ ]+/i', $this->uastring, $regs)) {
6e783db6 800 $this->uadata['eng_version'] = $this->getVersion();
801 $this->uadata['os'] = $regs[1];
802 $this->uadata['lang'] = $regs[2];
803 }
f9a0c27d 804 elseif (preg_match('/Mozilla\/[^\(]+ \((?:X11; )?([^;]+);.+; ([a-z_-]+)\) Opera [^ ]+/i', $this->uastring, $regs)) {
bf78d3ed 805 $this->uadata['eng_version'] = $this->getVersion();
806 $this->uadata['os'] = $regs[1];
807 $this->uadata['lang'] = $regs[2];
808 }
809 }
810 elseif ($this->hasEngine('nscp')) {
f9a0c27d 811 if (preg_match('/Mozilla\/([0-9a-zA-Z\.+]+) (?:\[([a-z_-]+)\][^\(]+)?\(X11; [^;]+; ([^\)]+)\)/i', $this->uastring, $regs)) {
812 $this->uadata['eng_version'] = $regs[1];
813 $this->uadata['os'] = $regs[3];
814 $this->uadata['lang'] = $regs[2];
815 }
816 elseif (preg_match('/Mozilla\/([0-9a-zA-Z\.+]+) (?:\[([a-z_-]+)\][^\(]+)?\(([^;]+);[^\)]+\)/i', $this->uastring, $regs)) {
bf78d3ed 817 $this->uadata['eng_version'] = $regs[1];
818 $this->uadata['os'] = $regs[3];
819 $this->uadata['lang'] = $regs[2];
820 }
c18a4476 821 elseif (preg_match('/Mozilla\/([0-9a-zA-Z\.+]+)[^\(]+\(([^;]+);[^\)]+\)/i', $this->uastring, $regs)) {
822 $this->uadata['eng_version'] = $regs[1];
823 $this->uadata['os'] = $regs[2];
824 $this->uadata['lang'] = null;
825 }
bf78d3ed 826 }
827 elseif ($this->hasEngine('gzilla')) {
828 $this->uadata['eng_version'] = $this->getVersion();
829 $this->uadata['os'] = null;
830 $this->uadata['lang'] = null;
831 }
832 elseif ($this->hasEngine('links')) {
6e783db6 833 if (preg_match('/E?Links[^\(]+\([^;]+; ([^;]+)[^\)]+\)/i', $this->uastring, $regs)) {
bf78d3ed 834 $this->uadata['eng_version'] = null;
835 $this->uadata['os'] = $regs[1];
836 $this->uadata['lang'] = null;
837 }
838 }
c18a4476 839 elseif ($this->hasEngine('icestorm')) {
840 if (preg_match('/ICE Browser\/v?([0-9a-zA-Z\._+]+) \(Java [^;]+; ([^\)]+)\)/i', $this->uastring, $regs)) {
841 $this->uadata['eng_version'] = str_replace('_', '.', $regs[1]);
842 $this->uadata['os'] = $regs[2];
843 $this->uadata['lang'] = null;
844 }
845 elseif (preg_match('/Mozilla\/[^\(]+ \((?:X11; )?([^;]+);.+; ([a-z_-]+)\).* ICEbrowser\/([0-9a-zA-Z\._+]+)/i', $this->uastring, $regs)) {
846 $this->uadata['eng_version'] = $regs[3];
847 $this->uadata['os'] = $regs[1];
848 $this->uadata['lang'] = $regs[2];
849 }
850 }
bf78d3ed 851 else {
852 $this->uadata['eng_version'] = null;
853 $this->uadata['lang'] = null;
854 if (preg_match('/AmigaOS/i', $this->uastring, $regs)) {
855 $this->uadata['os'] = 'AmigaOS';
856 }
857 elseif (preg_match('/curl\/[^\(]+\(([^\);]+)/i', $this->uastring, $regs)) {
858 $this->uadata['os'] = $regs[1];
859 }
6e783db6 860 elseif (preg_match('/NCSA[_ ]Mosaic\/[^\(]+\((?:.*;)?([^\);]+)/i', $this->uastring, $regs)) {
861 $this->uadata['os'] = trim($regs[1]);
862 }
863 elseif (preg_match('/iCab.*(Mac[^\);]+).*?\)/i', $this->uastring, $regs)) {
864 $this->uadata['os'] = trim($regs[1]);
865 }
c51ab9a2 866 elseif (preg_match('/SymbianOS\/([^ ]+)/i', $this->uastring, $regs)) {
867 $this->uadata['os'] = 'SymbianOS '.$regs[1];
868 }
bf78d3ed 869 }
870 if ($this->uadata['os'] == 'Win 9x 4.90') { $this->uadata['os'] = 'Windows ME'; }
804fe4f1 871 elseif ($this->uadata['os'] == 'WinNT4.0') { $this->uadata['os'] = 'Windows NT 4.0'; }
bf78d3ed 872 elseif ($this->uadata['os'] == 'Windows NT 5.0') { $this->uadata['os'] = 'Windows 2000'; }
873 elseif ($this->uadata['os'] == 'Windows NT 5.1') { $this->uadata['os'] = 'Windows XP'; }
874 elseif ($this->uadata['os'] == 'Windows NT 5.2') { $this->uadata['os'] = 'Windows 2003'; }
55020829 875 elseif ($this->uadata['os'] == 'Windows NT 5.2 x64') { $this->uadata['os'] = 'Windows 2003 (64bit)'; }
876 elseif ($this->uadata['os'] == 'Windows NT 6.0') { $this->uadata['os'] = 'Windows Vista'; }
bf78d3ed 877 elseif ($this->uadata['os'] == 'Win95') { $this->uadata['os'] = 'Windows 95'; }
878 elseif ($this->uadata['os'] == 'Win98') { $this->uadata['os'] = 'Windows 98'; }
55020829 879 elseif ($this->uadata['os'] == 'WinNT') { $this->uadata['os'] = 'Windows NT'; }
880 elseif ($this->uadata['os'] == 'Win32') { $this->uadata['os'] = 'Windows (32bit)'; }
881 elseif ($this->uadata['os'] == 'Win64') { $this->uadata['os'] = 'Windows (64bit)'; }
bf78d3ed 882 elseif (preg_match('/Mac ?OS ?X/i',$this->uadata['os'])) { $this->uadata['os'] = 'MacOS X'; }
883 elseif (preg_match('/Mac_P(ower|)PC/i',$this->uadata['os'])) { $this->uadata['os'] = 'MacOS'; }
884 elseif (strpos($this->uadata['os'], 'darwin') !== false) { $this->uadata['os'] = 'MacOS X'; }
6e783db6 885 elseif (strpos($this->uadata['os'], 'Darwin') !== false) { $this->uadata['os'] = 'MacOS X'; }
bf78d3ed 886 elseif (strpos($this->uadata['os'], 'apple') !== false) { $this->uadata['os'] = 'MacOS'; }
6e783db6 887 elseif (strpos($this->uadata['os'], 'Macintosh') !== false) { $this->uadata['os'] = 'MacOS'; }
bf78d3ed 888 elseif (strpos($this->uadata['os'], 'linux') !== false) { $this->uadata['os'] = 'Linux'; }
889
6e783db6 890 if (strpos($this->uadata['os'], 'Win') !== false) { $this->uadata['platform'] = 'Windows'; }
891 elseif (strpos($this->uadata['os'], 'Mac') !== false) { $this->uadata['platform'] = 'Macintosh'; }
892 elseif (strpos($this->uadata['os'], 'Linux') !== false) { $this->uadata['platform'] = 'Linux'; }
893 elseif (strpos($this->uadata['os'], 'Solaris') !== false) { $this->uadata['platform'] = 'Solaris'; }
894 elseif (strpos($this->uadata['os'], 'SunOS') !== false) { $this->uadata['platform'] = 'Solaris'; }
895 elseif (strpos($this->uadata['os'], 'BeOS') !== false) { $this->uadata['platform'] = 'BeOS'; }
896 elseif (strpos($this->uadata['os'], 'FreeBSD') !== false) { $this->uadata['platform'] = 'FreeBSD'; }
897 elseif (strpos($this->uadata['os'], 'OpenBSD') !== false) { $this->uadata['platform'] = 'OpenBSD'; }
898 elseif (strpos($this->uadata['os'], 'NetBSD') !== false) { $this->uadata['platform'] = 'NetBSD'; }
899 elseif (strpos($this->uadata['os'], 'AIX') !== false) { $this->uadata['platform'] = 'AIX'; }
900 elseif (strpos($this->uadata['os'], 'IRIX') !== false) { $this->uadata['platform'] = 'IRIX'; }
901 elseif (strpos($this->uadata['os'], 'HP-UX') !== false) { $this->uadata['platform'] = 'HP-UX'; }
902 elseif (strpos($this->uadata['os'], 'AmigaOS') !== false) { $this->uadata['platform'] = 'Amiga'; }
903 elseif (strpos($this->uadata['os'], 'OpenVMS') !== false) { $this->uadata['platform'] = 'OpenVMS'; }
904 elseif (strpos($this->uadata['os'], 'Warp') !== false) { $this->uadata['platform'] = 'OS/2'; }
c51ab9a2 905 elseif (strpos($this->uadata['os'], 'SymbianOS') !== false) { $this->uadata['platform'] = 'SymbianOS'; }
6e783db6 906 elseif (strpos($this->uadata['os'], 'CYGWIN') !== false) { $this->uadata['platform'] = 'Windows'; }
907 else { $this->uadata['platform'] = $this->uadata['os']; }
bf78d3ed 908
909 $this->uadata['lang'] = str_replace('_', '-', $this->uadata['lang']);
31733e08 910 }
bf78d3ed 911 return $this->uadata['os'];
31733e08 912 }
913
3077a4f6 914 public function getPlatform() {
bf78d3ed 915 if (!isset($this->uadata['platform'])) {
916 $this->uadata['platform'] = null;
917 // getOS() should get the date for us
918 $this->getOS();
31733e08 919 }
bf78d3ed 920 return $this->uadata['platform'];
31733e08 921 }
922
3077a4f6 923 public function getLanguage() {
bf78d3ed 924 if (!isset($this->uadata['lang'])) {
925 $this->uadata['lang'] = null;
926 // getOS() should get the date for us
927 $this->getOS();
31733e08 928 }
bf78d3ed 929 return $this->uadata['lang'];
31733e08 930 }
1defa974 931
3077a4f6 932 public function getGeckoDate() {
bf78d3ed 933 if (!isset($this->uadata['geckodate'])) {
934 $this->uadata['geckodate'] = null;
935 // getEngine() should get the date for us
936 $this->getEngine();
1defa974 937 }
bf78d3ed 938 return $this->uadata['geckodate'];
1defa974 939 }
bf78d3ed 940
3077a4f6 941 public function isBot() { return $this->bot; }
942
943 public function isns() {
944 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
945 return (strpos($this->brand, 'Netscape') !== false);
946 }
947 public function isns4() {
948 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
949 return ((strpos($this->brand, 'Netscape') !== false) && (intval($this->version) == 4));
950 }
951 public function isie() {
952 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
953 return $this->hasEngine('trident');
954 }
955 public function geckodate() {
956 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
957 return (!is_null($this->getGeckoDate())?$this->getGeckoDate():0);
958 }
959 public function geckobased() {
960 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
961 return $this->hasEngine('gecko');
962 }
963 public function khtmlbased() {
964 trigger_error(__CLASS__.'::'.__FUNCTION__.' is a deprecated function', E_USER_NOTICE);
965 return $this->hasEngine('khtml');
966 }
31733e08 967}
23585ba2 968?>