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