-
Notifications
You must be signed in to change notification settings - Fork 24
/
UserAgentInfo.php
858 lines (732 loc) · 27.1 KB
/
UserAgentInfo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
<?php
class UserAgentInfo {
var $useragent;
private $_platform = null; //Stores the device platform name
const PLATFORM_WINDOWS = 'windows';
const PLATFORM_IPHONE = 'iphone';
const PLATFORM_IPOD = 'ipod';
const PLATFORM_IPAD = 'ipad';
const PLATFORM_BLACKBERRY = 'blackberry';
const PLATFORM_SYMBIAN = 'symbian_series60';
const PLATFORM_SYMBIAN_S40 = 'symbian_series40';
const PLATFORM_J2ME_MIDP = 'j2me_midp';
const PLATFORM_ANDROID = 'android';
const PLATFORM_ANDROID_TABLET = 'android_tablet';
var $dumb_agents = array(
'nokia', 'blackberry', 'philips', 'samsung', 'sanyo', 'sony', 'panasonic', 'webos',
'ericsson', 'alcatel', 'palm',
'windows ce', 'opera mini', 'series60', 'series40',
'au-mic,', 'audiovox', 'avantgo', 'blazer',
'danger', 'docomo', 'epoc',
'ericy', 'i-mode', 'ipaq', 'midp-',
'mot-', 'netfront', 'nitro',
'palmsource', 'pocketpc', 'portalmmm',
'rover', 'sie-',
'symbian', 'cldc-', 'j2me',
'smartphone', 'up.browser', 'up.link',
'up.link', 'vodafone/', 'wap1.', 'wap2.', 'mobile',
);
//The constructor. Initializes default variables.
function __construct()
{
if ( !empty( $_SERVER['HTTP_USER_AGENT'] ) )
$this->useragent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
}
/**
* This method detects the mobile User Agent name.
*
* @return string The matched User Agent name, false otherwise.
*/
function get_mobile_user_agent_name() {
if ( $this->is_iphone_or_ipod( 'iphone-safari' ) )
return 'iphone';
elseif ( $this->is_ipad( 'ipad-safari' ) )
return 'ipad';
elseif ( $this->is_android_tablet() ) //keep this check before the android rule
return 'android_tablet';
elseif ( $this->is_android() )
return 'android';
elseif ( $this->is_blackbeberry() )
return 'blackberry';
elseif ( $this->is_WindowsPhone7() )
return 'win7';
elseif ( $this->is_opera_mini() )
return 'opera-mini';
elseif ( $this->is_opera_mini_dumb() )
return 'opera-mini-dumb';
elseif ( $this->is_opera_mobile() )
return 'opera-mobi';
elseif ( $this->is_blackberry_tablet() )
return 'blackberry_tablet';
elseif ( $this->is_kindle_fire() )
return 'kindle-fire';
elseif ( $this->is_PalmWebOS() )
return 'webos';
elseif ( $this->is_S60_OSSBrowser() )
return 'series60';
elseif ( $this->is_firefox_mobile() )
return 'firefox_mobile';
elseif ( $this->is_MaemoTablet() )
return 'maemo';
elseif ( $this->is_MeeGo() )
return 'meego';
elseif( $this->is_TouchPad() )
return 'hp_tablet';
elseif ( $this->is_facebook_for_iphone() )
return 'facebook-for-iphone';
elseif ( $this->is_facebook_for_ipad() )
return 'facebook-for-ipad';
elseif ( $this->is_twitter_for_iphone() )
return 'twitter-for-iphone';
elseif ( $this->is_twitter_for_ipad() )
return 'twitter-for-ipad';
elseif ( $this->is_wordpress_for_ios() )
return 'ios-app';
elseif ( $this->is_iphone_or_ipod( 'iphone-not-safari' ) )
return 'iphone-unknown';
elseif ( $this->is_ipad( 'ipad-not-safari' ) )
return 'ipad-unknown';
else {
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$dumb_agents = $this->dumb_agents;
foreach ( $dumb_agents as $dumb_agent ) {
if ( false !== strpos( $agent, $dumb_agent ) ) {
return $dumb_agent;
}
}
}
return false;
}
/**
* This method detects the mobile device's platform. All return strings are from the class constants.
* Note that this function returns the platform name, not the UA name/type. You should use a different function
* if you need to test the UA capabilites.
*
* @return string Name of the platform, false otherwise.
*/
public function get_platform() {
if ( isset( $this->_platform ) ) {
return $this->_platform;
}
if ( strpos( $this->useragent, 'windows phone os 7' ) !== false ) {
$this->_platform = self::PLATFORM_WINDOWS;
}
elseif ( strpos( $this->useragent, 'windows ce' ) !== false ) {
$this->_platform = self::PLATFORM_WINDOWS;
}
elseif ( strpos( $this->useragent, 'ipad' ) !== false ) {
$this->_platform = self::PLATFORM_IPAD;
}
else if ( strpos( $this->useragent, 'ipod' ) !== false ) {
$this->_platform = self::PLATFORM_IPOD;
}
else if ( strpos( $this->useragent, 'iphone' ) !== false ) {
$this->_platform = self::PLATFORM_IPHONE;
}
elseif ( strpos( $this->useragent, 'android' ) !== false ) {
if ( $this->is_android_tablet() )
$this->_platform = self::PLATFORM_ANDROID_TABLET;
else
$this->_platform = self::PLATFORM_ANDROID;
}
elseif ( $this->is_kindle_fire() ) {
$this->_platform = self::PLATFORM_ANDROID_TABLET;
}
elseif ( strpos( $this->useragent, 'blackberry' ) !== false ) {
$this->_platform = self::PLATFORM_BLACKBERRY;
}
elseif ( $this->is_blackberry_tablet() ) {
$this->_platform = self::PLATFORM_BLACKBERRY;
}
elseif ( $this->is_symbian_platform() ) {
$this->_platform = self::PLATFORM_SYMBIAN;
}
elseif ( $this->is_symbian_s40_platform() ) {
$this->_platform = self::PLATFORM_SYMBIAN_S40;
}
elseif ( $this->is_J2ME_platform() ) {
$this->_platform = self::PLATFORM_J2ME_MIDP;
}
else
$this->_platform = false;
return $this->_platform;
}
/*
* Detects if the current UA is iPhone Mobile Safari or another iPhone or iPod Touch Browser.
*
* They type can check for any iPhone, an iPhone using Safari, or an iPhone using something other than Safari.
*
* Note: If you want to check for Opera mini, Opera mobile or Firefox mobile (or any 3rd party iPhone browser),
* you should put the check condition before the check for 'iphone-any' or 'iphone-not-safari'.
* Otherwise those browsers will be 'catched' by the iphone string.
*
*/
function is_iphone_or_ipod( $type = 'iphone-any' ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$is_iphone = ( strpos( $ua, 'iphone' ) !== false ) || ( strpos( $ua,'ipod' ) !== false );
$is_safari = ( false !== strpos( $ua, 'safari' ) );
if ( 'iphone-safari' == $type )
return $is_iphone && $is_safari;
elseif ( 'iphone-not-safari' == $type )
return $is_iphone && !$is_safari;
else
return $is_iphone;
}
/*
* Detects if the current UA is Twitter for iPhone
* Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_5 like Mac OS X; nb-no) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8L1 Twitter for iPhone
*/
function is_twitter_for_iphone( ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $ua, 'twitter for iphone' ) !== false )
return true;
else
return false;
}
/*
* Detects if the current UA is Twitter for iPad
* Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8L1 Twitter for iPad
*/
function is_twitter_for_ipad( ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $ua, 'twitter for ipad' ) !== false )
return true;
else
return false;
}
/*
* Detects if the current UA is Facebook for iPhone
* - Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0;FBSS/2; FBCR/O2;FBID/phone;FBLC/en_US;FBSF/2.0]
* - Facebook 4020.0 (iPhone; iPhone OS 5.0.1; fr_FR)
*/
function is_facebook_for_iphone( ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if( strpos( $ua, 'iphone' ) === false )
return false;
if ( strpos( $ua, 'facebook' ) !== false && strpos( $ua, 'ipad' ) === false )
return true;
else if ( strpos( $ua, 'fbforiphone' ) !== false && strpos( $ua, 'tablet' ) === false )
return true;
else
return false;
}
/*
* Detects if the current UA is Facebook for iPad
* - Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPad2,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0;FBSS/1; FBCR/;FBID/tablet;FBLC/en_US;FBSF/1.0]
* - Facebook 4020.0 (iPad; iPhone OS 5.0.1; en_US)
*/
function is_facebook_for_ipad( ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $ua, 'ipad' ) === false )
return false;
if ( strpos( $ua, 'facebook' ) !== false || strpos( $ua, 'fbforiphone' ) !== false )
return true;
else
return false;
}
/*
* Detects if the current UA is WordPress for iOS
*/
function is_wordpress_for_ios( ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $ua, 'wp-iphone' ) !== false )
return true;
else
return false;
}
/*
* Detects if the current device is an iPad.
* They type can check for any iPad, an iPad using Safari, or an iPad using something other than Safari.
*
* Note: If you want to check for Opera mini, Opera mobile or Firefox mobile (or any 3rd party iPad browser),
* you should put the check condition before the check for 'iphone-any' or 'iphone-not-safari'.
* Otherwise those browsers will be 'catched' by the ipad string.
*
*/
function is_ipad( $type = 'ipad-any' ) {
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$is_ipad = ( false !== strpos( $ua, 'ipad' ) );
$is_safari = ( false !== strpos( $ua, 'safari' ) );
if ( 'ipad-safari' == $type )
return $is_ipad && $is_safari;
elseif ( 'ipad-not-safari' == $type )
return $is_ipad && !$is_safari;
else
return $is_ipad;
}
/*
* Detects if the current browser is Firefox Mobile (Fennec)
*
* http://www.useragentstring.com/pages/Fennec/
* Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.1.1) Gecko/20110415 Firefox/4.0.2pre Fennec/4.0.1
* Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1b2pre) Gecko/20081015 Fennec/1.0a1
*/
function is_firefox_mobile( ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $ua, 'fennec' ) !== false )
return true;
else
return false;
}
/*
* Detects if the current browser is Opera Mobile
*
* What is the difference between Opera Mobile and Opera Mini?
* - Opera Mobile is a full Internet browser for mobile devices.
* - Opera Mini always uses a transcoder to convert the page for a small display.
* (it uses Opera advanced server compression technology to compress web content before it gets to a device.
* The rendering engine is on Opera's server.)
*
* Opera/9.80 (Windows NT 6.1; Opera Mobi/14316; U; en) Presto/2.7.81 Version/11.00"
*/
function is_opera_mobile( ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $ua, 'opera' ) !== false && strpos( $ua, 'mobi' ) !== false )
return true;
else
return false;
}
/*
* Detects if the current browser is Opera Mini
*
* Opera/8.01 (J2ME/MIDP; Opera Mini/3.0.6306/1528; en; U; ssr)
* Opera/9.80 (Android;Opera Mini/6.0.24212/24.746 U;en) Presto/2.5.25 Version/10.5454
* Opera/9.80 (iPhone; Opera Mini/5.0.019802/18.738; U; en) Presto/2.4.15
* Opera/9.80 (J2ME/iPhone;Opera Mini/5.0.019802/886; U; ja) Presto/2.4.15
* Opera/9.80 (J2ME/iPhone;Opera Mini/5.0.019802/886; U; ja) Presto/2.4.15
* Opera/9.80 (Series 60; Opera Mini/5.1.22783/23.334; U; en) Presto/2.5.25 Version/10.54
* Opera/9.80 (BlackBerry; Opera Mini/5.1.22303/22.387; U; en) Presto/2.5.25 Version/10.54
*
*/
function is_opera_mini( ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $ua, 'opera' ) !== false && strpos( $ua, 'mini' ) !== false )
return true;
else
return false;
}
/*
* Detects if the current browser is Opera Mini, but not on a smart device OS(Android, iOS, etc)
* Used to send users on dumb devices to m.wor
*/
function is_opera_mini_dumb( ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( self::is_opera_mini() ) {
if ( strpos( $ua, 'android' ) !== false || strpos( $ua, 'iphone' ) !== false || strpos( $ua, 'ipod' ) !== false
|| strpos( $ua, 'ipad' ) !== false || strpos( $ua, 'blackberry' ) !== false)
return false;
else
return true;
} else {
return false;
}
}
/*
* Detects if the current browser is a Windows Phone 7 device.
* ex: Mozilla/4.0 (compatible; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; LG; GW910)
*/
function is_WindowsPhone7() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $ua, 'windows phone os 7' ) === false ) {
return false;
} else {
if ( self::is_opera_mini() || self::is_opera_mobile() || self::is_firefox_mobile() )
return false;
else
return true;
}
}
/*
* Detects if the current browser is on a Palm device running the new WebOS. This EXCLUDES TouchPad.
*
* ex1: Mozilla/5.0 (webOS/1.4.0; U; en-US) AppleWebKit/532.2 (KHTML, like Gecko) Version/1.0 Safari/532.2 Pre/1.1
* ex2: Mozilla/5.0 (webOS/1.4.0; U; en-US) AppleWebKit/532.2 (KHTML, like Gecko) Version/1.0 Safari/532.2 Pixi/1.1
*
*/
function is_PalmWebOS() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $ua, 'webos' ) === false ) {
return false;
} else {
if ( self::is_opera_mini() || self::is_opera_mobile() || self::is_firefox_mobile() )
return false;
else
return true;
}
}
/*
* Detects if the current browser is the HP TouchPad default browser. This excludes phones wt WebOS.
*
* TouchPad Emulator: Mozilla/5.0 (hp-desktop; Linux; hpwOS/2.0; U; it-IT) AppleWebKit/534.6 (KHTML, like Gecko) wOSBrowser/233.70 Safari/534.6 Desktop/1.0
* TouchPad: Mozilla/5.0 (hp-tablet; Linux; hpwOS/3.0.0; U; en-US) AppleWebKit/534.6 (KHTML, like Gecko) wOSBrowser/233.70 Safari/534.6 TouchPad/1.0
*
*/
function is_TouchPad() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$http_user_agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( false !== strpos( $http_user_agent, 'hp-tablet' ) || false !== strpos( $http_user_agent, 'hpwos' ) || false !== strpos( $http_user_agent, 'touchpad' ) ) {
if ( self::is_opera_mini() || self::is_opera_mobile() || self::is_firefox_mobile() )
return false;
else
return true;
}
else
return false;
}
/*
* Detects if the current browser is the Series 60 Open Source Browser.
*
* OSS Browser 3.2 on E75: Mozilla/5.0 (SymbianOS/9.3; U; Series60/3.2 NokiaE75-1/110.48.125 Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413
*
* 7.0 Browser (Nokia 5800 XpressMusic (v21.0.025)) : Mozilla/5.0 (SymbianOS/9.4; U; Series60/5.0 Nokia5800d-1/21.0.025; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413
*
* Browser 7.1 (Nokia N97 (v12.0.024)) : Mozilla/5.0 (SymbianOS/9.4; Series60/5.0 NokiaN97-1/12.0.024; Profile/MIDP-2.1 Configuration/CLDC-1.1; en-us) AppleWebKit/525 (KHTML, like Gecko) BrowserNG/7.1.12344
*
*/
function is_S60_OSSBrowser() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( self::is_opera_mini() || self::is_opera_mobile() || self::is_firefox_mobile() )
return false;
$pos_webkit = strpos( $agent, 'webkit' );
if ( $pos_webkit !== false ) {
//First, test for WebKit, then make sure it's either Symbian or S60.
if ( strpos( $agent, 'symbian' ) !== false || strpos( $agent, 'series60' ) !== false ) {
return true;
} else
return false;
} elseif ( strpos( $agent, 'symbianos' ) !== false && strpos( $agent,'series60' ) !== false ) {
return true;
} elseif ( strpos( $agent, 'nokia' ) !== false && strpos( $agent,'series60' ) !== false ) {
return true;
}
return false;
}
/*
*
* Detects if the device platform is the Symbian Series 60.
*
*/
function is_symbian_platform() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$pos_webkit = strpos( $agent, 'webkit' );
if ( $pos_webkit !== false ) {
//First, test for WebKit, then make sure it's either Symbian or S60.
if ( strpos( $agent, 'symbian' ) !== false || strpos( $agent, 'series60' ) !== false ) {
return true;
} else
return false;
} elseif ( strpos( $agent, 'symbianos' ) !== false && strpos( $agent,'series60' ) !== false ) {
return true;
} elseif ( strpos( $agent, 'nokia' ) !== false && strpos( $agent,'series60' ) !== false ) {
return true;
} elseif ( strpos( $agent, 'opera mini' ) !== false ) {
if( strpos( $agent,'symbianos' ) !== false || strpos( $agent,'symbos' ) !== false || strpos( $agent,'series 60' ) !== false )
return true;
}
return false;
}
/*
*
* Detects if the device platform is the Symbian Series 40.
* Nokia Browser for Series 40 is a proxy based browser, previously known as Ovi Browser.
* This browser will report 'NokiaBrowser' in the header, however some older version will also report 'OviBrowser'.
*
*/
function is_symbian_s40_platform() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $agent, 'series40' ) !== false ) {
if( strpos( $agent,'nokia' ) !== false || strpos( $agent,'ovibrowser' ) !== false || strpos( $agent,'nokiabrowser' ) !== false )
return true;
}
return false;
}
function is_J2ME_platform() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $agent, 'j2me/midp' ) !== false ) {
return true;
} elseif ( strpos( $agent, 'midp' ) !== false && strpos( $agent, 'cldc' ) ) {
return true;
}
return false;
}
/*
* Detects if the current UA is on one of the Maemo-based Nokia Internet Tablets.
*/
function is_MaemoTablet() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$pos_maemo = strpos( $agent, 'maemo' );
if ( $pos_maemo === false ) return false;
//Must be Linux + Tablet, or else it could be something else.
if ( strpos( $agent, 'tablet' ) !== false && strpos( $agent, 'linux' ) !== false ) {
if ( self::is_opera_mini() || self::is_opera_mobile() || self::is_firefox_mobile() )
return false;
else
return true;
} else
return false;
}
/*
* Detects if the current UA is a MeeGo device (Nokia Smartphone).
*/
function is_MeeGo() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$ua = strtolower( $_SERVER['HTTP_USER_AGENT'] );
if ( strpos( $ua, 'meego' ) === false ) {
return false;
} else {
if ( self::is_opera_mini() || self::is_opera_mobile() || self::is_firefox_mobile() )
return false;
else
return true;
}
}
/**
* Detects if the current browser is the Native Android browser.
* @return boolean true if the browser is Android otherwise false
*/
function is_android() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$pos_android = strpos( $agent, 'android' );
if ( $pos_android !== false ) {
if ( self::is_opera_mini() || self::is_opera_mobile() || self::is_firefox_mobile() )
return false;
else
return true;
}
else
return false;
}
/**
* Detects if the current browser is the Native Android Tablet browser.
* Assumes 'Android' should be in the user agent, but not 'mobile'
*
* @return boolean true if the browser is Android and not 'mobile' otherwise false
*/
function is_android_tablet( ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$pos_android = strpos( $agent, 'android' );
$pos_mobile = strpos( $agent, 'mobile' );
$post_android_app = strpos( $agent, 'wp-android' );
if ( $pos_android !== false && $pos_mobile === false && $post_android_app === false ) {
if ( self::is_opera_mini() || self::is_opera_mobile() || self::is_firefox_mobile() )
return false;
else
return true;
} else
return false;
}
/**
* Detects if the current browser is the Kindle Fire Native browser.
*
* Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us; Silk/1.1.0-84) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16 Silk-Accelerated=true
* Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us; Silk/1.1.0-84) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16 Silk-Accelerated=false
*
* @return boolean true if the browser is Kindle Fire Native browser otherwise false
*/
function is_kindle_fire( ) {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$pos_silk = strpos( $agent, 'silk/' );
$pos_silk_acc = strpos( $agent, 'silk-accelerated=' );
if ( $pos_silk !== false && $pos_silk_acc !== false )
return true;
else
return false;
}
/*
* is_blackberry_tablet() can be used to check the User Agent for a RIM blackberry tablet
* The user agent of the BlackBerry® Tablet OS follows a format similar to the following:
* Mozilla/5.0 (PlayBook; U; RIM Tablet OS 1.0.0; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/0.0.1 Safari/534.8+
*
*/
function is_blackberry_tablet() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$pos_playbook = stripos( $agent, 'PlayBook' );
$pos_rim_tablet = stripos( $agent, 'RIM Tablet' );
if ( ($pos_playbook === false) || ($pos_rim_tablet === false) )
{
return false;
} else {
return true;
}
}
/*
is_blackbeberry() can be used to check the User Agent for a blackberry device
Note that opera mini on BB matches this rule.
*/
function is_blackbeberry() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$pos_blackberry = strpos( $agent, 'blackberry' );
if ( $pos_blackberry !== false ) {
if ( self::is_opera_mini() || self::is_opera_mobile() || self::is_firefox_mobile() )
return false;
else
return true;
} else {
return false;
}
}
/**
* Retrieve the blackberry OS version.
*
* Return strings are from the following list:
* - blackberry-7
* - blackberry-6
* - blackberry-torch //only the first edition. The 2nd edition has the OS7 onboard and doesn't need any special rule.
* - blackberry-5
* - blackberry-4.7
* - blackberry-4.6
* - blackberry-4.5
*
* @return string Version of the BB OS.
* If version is not found, get_blackbeberry_OS_version will return boolean false.
*/
function get_blackbeberry_OS_version() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$pos_blackberry = stripos( $agent, 'blackberry' );
if ( $pos_blackberry === false ) {
//not a blackberry device
return false;
}
//blackberry devices OS 6.0 or higher
//Mozilla/5.0 (BlackBerry; U; BlackBerry 9670; en) AppleWebKit/534.3+ (KHTML, like Gecko) Version/6.0.0.286 Mobile Safari/534.3+
//Mozilla/5.0 (BlackBerry; U; BlackBerry 9800; en) AppleWebKit/534.1+ (KHTML, Like Gecko) Version/6.0.0.141 Mobile Safari/534.1+
//Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0 Mobile Safari/534.11+
$pos_webkit = stripos( $agent, 'webkit' );
if ( $pos_webkit !== false ) {
//detected blackberry webkit browser
$pos_torch = stripos( $agent, 'BlackBerry 9800' );
if ( $pos_torch !== false ) {
return 'blackberry-torch'; //match the torch first edition. the 2nd edition should use the OS7 and doesn't need any special rule
} else {
//detecting the BB OS version for devices running OS 6.0 or higher
if ( preg_match( '#Version\/([\d\.]+)#i', $agent, $matches ) ) {
$version = $matches[1];
$version_num = explode( '.', $version );
if( is_array( $version_num ) === false || count( $version_num ) <= 1 )
return 'blackberry-6'; //not a BB device that match our rule.
else
return 'blackberry-'.$version_num[0];
} else {
//if doesn't match returns the minimun version with a webkit browser. we should never fall here.
return 'blackberry-6'; //not a BB device that match our rule.
}
}
}
//blackberry devices <= 5.XX
//BlackBerry9000/5.0.0.93 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/179
if ( preg_match( '#BlackBerry\w+\/([\d\.]+)#i', $agent, $matches ) ) {
$version = $matches[1];
} else {
return false; //not a BB device that match our rule.
}
$version_num = explode( '.', $version );
if( is_array( $version_num ) === false || count( $version_num ) <= 1 )
return false;
if ( $version_num[0] == 5 ) {
return 'blackberry-5';
} elseif ( $version_num[0] == 4 && $version_num[1] == 7 ) {
return 'blackberry-4.7';
} elseif ( $version_num[0] == 4 && $version_num[1] == 6 ) {
return 'blackberry-4.6';
} elseif ( $version_num[0] == 4 && $version_num[1] == 5 ) {
return 'blackberry-4.5';
} else {
return false;
}
return false;
}
/**
* Retrieve the blackberry browser version.
*
* Return string are from the following list:
* - blackberry-webkit
* - blackberry-5
* - blackberry-4.7
* - blackberry-4.6
*
* @return string Type of the BB browser.
* If browser's version is not found, detect_blackbeberry_browser_version will return boolean false.
*/
function detect_blackberry_browser_version() {
if ( empty( $_SERVER['HTTP_USER_AGENT'] ) )
return false;
$agent = strtolower( $_SERVER['HTTP_USER_AGENT'] );
$pos_blackberry = strpos( $agent, 'blackberry' );
if ( $pos_blackberry === false ) {
//not a blackberry device
return false;
}
$pos_webkit = strpos( $agent, 'webkit' );
if ( ! ( $pos_webkit === false ) ) {
return 'blackberry-webkit';
} else {
if ( preg_match( '#BlackBerry\w+\/([\d\.]+)#i', $agent, $matches ) ) {
$version = $matches[1];
} else {
return false; //not a BB device that match our rule.
}
$version_num = explode( '.', $version );
if( is_array( $version_num ) === false || count( $version_num ) <= 1 )
return false;
if ( $version_num[0] == 5 ) {
return 'blackberry-5';
} elseif ( $version_num[0] == 4 && $version_num[1] == 7 ) {
return 'blackberry-4.7';
} elseif ( $version_num[0] == 4 && $version_num[1] == 6 ) {
return 'blackberry-4.6';
} else {
//A very old BB device is found or this is a BB device that doesn't match our rules.
return false;
}
}
return false;
}
}