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