UserAgent.php
25.3 KB
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
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Http_UserAgent
* @subpackage UserAgent
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
/**
* Lists of User Agent chains for testing :
*
* - http://www.useragentstring.com/layout/useragentstring.php
* - http://user-agent-string.info/list-of-ua
* - http://www.user-agents.org/allagents.xml
* - http://en.wikipedia.org/wiki/List_of_user_agents_for_mobile_phones
* - http://www.mobilemultimedia.be/fr/
*
* @category Zend
* @package Zend_Http_UserAgent
* @subpackage UserAgent
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Http_UserAgent implements Serializable
{
/**
* 'desktop' by default if the sequence return false for each item or is empty
*/
const DEFAULT_IDENTIFICATION_SEQUENCE = 'mobile,desktop';
/**
* Default persitent storage adapter : Session or NonPersitent
*/
const DEFAULT_PERSISTENT_STORAGE_ADAPTER = 'Session';
/**
* 'desktop' by default if the sequence return false for each item
*/
const DEFAULT_BROWSER_TYPE = 'desktop';
/**
* Default User Agent chain to prevent empty value
*/
const DEFAULT_HTTP_USER_AGENT = 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)';
/**
* Default Http Accept param to prevent empty value
*/
const DEFAULT_HTTP_ACCEPT = "application/xhtml+xml";
/**
* Default markup language
*/
const DEFAULT_MARKUP_LANGUAGE = "xhtml";
/**
* Browser type
*
* @var string
*/
protected $_browserType;
/**
* Browser type class
*
* Map of browser types to classes.
*
* @var array
*/
protected $_browserTypeClass = array();
/**
* Array to store config
*
* Default values are provided to ensure specific keys are present at
* instantiation.
*
* @var array
*/
protected $_config = array(
'identification_sequence' => self::DEFAULT_IDENTIFICATION_SEQUENCE,
'storage' => array(
'adapter' => self::DEFAULT_PERSISTENT_STORAGE_ADAPTER,
),
);
/**
* Identified device
*
* @var Zend_Http_UserAgent_Device
*/
protected $_device;
/**
* Whether or not this instance is immutable.
*
* If true, none of the following may be modified:
* - $_server
* - $_browserType
* - User-Agent (defined in $_server)
* - HTTP Accept value (defined in $_server)
* - $_storage
*
* @var bool
*/
protected $_immutable = false;
/**
* Plugin loaders
* @var array
*/
protected $_loaders = array();
/**
* Valid plugin loader types
* @var array
*/
protected $_loaderTypes = array('storage', 'device');
/**
* Trace of items matched to identify the browser type
*
* @var array
*/
protected $_matchLog = array();
/**
* Server variable
*
* @var array
*/
protected $_server;
/**
* Persistent storage handler
*
* @var Zend_Http_UserAgent_Storage
*/
protected $_storage;
/**
* Constructor
*
* @param null|array|Zend_Config|ArrayAccess $options
* @return void
*/
public function __construct($options = null)
{
if (null !== $options) {
$this->setOptions($options);
}
}
/**
* Serialized representation of the object
*
* @return string
*/
public function serialize()
{
$device = $this->getDevice();
$spec = array(
'browser_type' => $this->_browserType,
'config' => $this->_config,
'device_class' => get_class($device),
'device' => $device->serialize(),
'user_agent' => $this->getServerValue('http_user_agent'),
'http_accept' => $this->getServerValue('http_accept'),
);
return serialize($spec);
}
/**
* Unserialize a previous representation of the object
*
* @param string $serialized
* @return void
*/
public function unserialize($serialized)
{
$spec = unserialize($serialized);
$this->setOptions($spec);
// Determine device class and ensure the class is loaded
$deviceClass = $spec['device_class'];
if (!class_exists($deviceClass)) {
$this->_getUserAgentDevice($this->getBrowserType());
}
// Get device specification and instantiate
$deviceSpec = unserialize($spec['device']);
$deviceSpec['_config'] = $this->getConfig();
$deviceSpec['_server'] = $this->getServer();
$this->_device = new $deviceClass($deviceSpec);
}
/**
* Configure instance
*
* @param array|Zend_Config|ArrayAccess $options
* @return Zend_Http_UserAgent
*/
public function setOptions($options)
{
if ($options instanceof Zend_Config) {
$options = $options->toArray();
}
if (!is_array($options)
&& !$options instanceof ArrayAccess
&& !$options instanceof Traversable
) {
require_once 'Zend/Http/UserAgent/Exception.php';
throw new Zend_Http_UserAgent_Exception(sprintf(
'Invalid argument; expected array, Zend_Config object, or object implementing ArrayAccess and Traversable; received %s',
(is_object($options) ? get_class($options) : gettype($options))
));
}
// Set $_SERVER first
if (isset($options['server'])) {
$this->setServer($options['server']);
unset($options['server']);
}
// Get plugin loaders sorted
if (isset($options['plugin_loader'])) {
$plConfig = $options['plugin_loader'];
if (is_array($plConfig) || $plConfig instanceof Traversable) {
foreach ($plConfig as $type => $class) {
$this->setPluginLoader($type, $class);
}
}
unset($plConfig, $options['plugin_loader']);
}
// And then loop through the remaining options
$config = array();
foreach ($options as $key => $value) {
switch (strtolower($key)) {
case 'browser_type':
$this->setBrowserType($value);
break;
case 'http_accept':
$this->setHttpAccept($value);
break;
case 'user_agent':
$this->setUserAgent($value);
break;
default:
// Cache remaining options for $_config
$config[$key] = $value;
break;
}
}
$this->setConfig($config);
return $this;
}
/**
* Comparison of the UserAgent chain and browser signatures.
*
* The comparison is case-insensitive : the browser signatures must be in lower
* case
*
* @param string $deviceClass Name of class against which a match will be attempted
* @return bool
*/
protected function _match($deviceClass)
{
// Validate device class
$r = new ReflectionClass($deviceClass);
if (!$r->implementsInterface('Zend_Http_UserAgent_Device')) {
throw new Zend_Http_UserAgent_Exception(sprintf(
'Invalid device class provided ("%s"); must implement Zend_Http_UserAgent_Device',
$deviceClass
));
}
$userAgent = $this->getUserAgent();
// Call match method on device class
return call_user_func(
array($deviceClass, 'match'),
$userAgent,
$this->getServer()
);
}
/**
* Loads class for a user agent device
*
* @param string $browserType Browser type
* @return string
* @throws Zend_Loader_PluginLoader_Exception if unable to load UA device
*/
protected function _getUserAgentDevice($browserType)
{
$browserType = strtolower($browserType);
if (isset($this->_browserTypeClass[$browserType])) {
return $this->_browserTypeClass[$browserType];
}
if (isset($this->_config[$browserType])
&& isset($this->_config[$browserType]['device'])
) {
$deviceConfig = $this->_config[$browserType]['device'];
if (is_array($deviceConfig) && isset($deviceConfig['classname'])) {
$device = (string) $deviceConfig['classname'];
if (!class_exists($device)) {
require_once 'Zend/Http/UserAgent/Exception.php';
throw new Zend_Http_UserAgent_Exception(sprintf(
'Invalid classname "%s" provided in device configuration for browser type "%s"',
$device,
$browserType
));
}
} elseif (is_array($deviceConfig) && isset($deviceConfig['path'])) {
$loader = $this->getPluginLoader('device');
$path = $deviceConfig['path'];
$prefix = isset($deviceConfig['prefix']) ? $deviceConfig['prefix'] : 'Zend_Http_UserAgent';
$loader->addPrefixPath($prefix, $path);
$device = $loader->load($browserType);
} else {
$loader = $this->getPluginLoader('device');
$device = $loader->load($browserType);
}
} else {
$loader = $this->getPluginLoader('device');
$device = $loader->load($browserType);
}
$this->_browserTypeClass[$browserType] = $device;
return $device;
}
/**
* Returns the User Agent value
*
* If $userAgent param is null, the value of $_server['HTTP_USER_AGENT'] is
* returned.
*
* @return string
*/
public function getUserAgent()
{
if (null === ($ua = $this->getServerValue('http_user_agent'))) {
$ua = self::DEFAULT_HTTP_USER_AGENT;
$this->setUserAgent($ua);
}
return $ua;
}
/**
* Force or replace the UA chain in $_server variable
*
* @param string $userAgent Forced UserAgent chain
* @return Zend_Http_UserAgent
*/
public function setUserAgent($userAgent)
{
$this->setServerValue('http_user_agent', $userAgent);
return $this;
}
/**
* Returns the HTTP Accept server param
*
* @param string $httpAccept (option) forced HTTP Accept chain
* @return string
*/
public function getHttpAccept($httpAccept = null)
{
if (null === ($accept = $this->getServerValue('http_accept'))) {
$accept = self::DEFAULT_HTTP_ACCEPT;
$this->setHttpAccept($accept);
}
return $accept;
}
/**
* Force or replace the HTTP_ACCEPT chain in self::$_server variable
*
* @param string $httpAccept Forced HTTP Accept chain
* @return Zend_Http_UserAgent
*/
public function setHttpAccept($httpAccept)
{
$this->setServerValue('http_accept', $httpAccept);
return $this;
}
/**
* Returns the persistent storage handler
*
* Session storage is used by default unless a different storage adapter
* has been set via the "persistent_storage_adapter" key. That key should
* contain either a fully qualified class name, or a short name that
* resolves via the plugin loader.
*
* @param string $browser Browser identifier (User Agent chain)
* @return Zend_Http_UserAgent_Storage
*/
public function getStorage($browser = null)
{
if (null === $browser) {
$browser = $this->getUserAgent();
}
if (null === $this->_storage) {
$config = $this->_config['storage'];
$adapter = $config['adapter'];
if (!class_exists($adapter)) {
$loader = $this->getPluginLoader('storage');
$adapter = $loader->load($adapter);
$loader = $this->getPluginLoader('storage');
}
$options = array('browser_type' => $browser);
if (isset($config['options'])) {
$options = array_merge($options, $config['options']);
}
$this->setStorage(new $adapter($options));
}
return $this->_storage;
}
/**
* Sets the persistent storage handler
*
* @param Zend_Http_UserAgent_Storage $storage
* @return Zend_Http_UserAgent
*/
public function setStorage(Zend_Http_UserAgent_Storage $storage)
{
if ($this->_immutable) {
require_once 'Zend/Http/UserAgent/Exception.php';
throw new Zend_Http_UserAgent_Exception(
'The User-Agent device object has already been retrieved; the storage object is now immutable'
);
}
$this->_storage = $storage;
return $this;
}
/**
* Clean the persistent storage
*
* @param string $browser Browser identifier (User Agent chain)
* @return void
*/
public function clearStorage($browser = null)
{
$this->getStorage($browser)->clear();
}
/**
* Get user configuration
*
* @return array
*/
public function getConfig()
{
return $this->_config;
}
/**
* Config parameters is an Array or a Zend_Config object
*
* The allowed parameters are :
* - the identification sequence (can be empty) => desktop browser type is the
* default browser type returned
* $config['identification_sequence'] : ',' separated browser types
* - the persistent storage adapter
* $config['persistent_storage_adapter'] = "Session" or "NonPersistent"
* - to add or replace a browser type device
* $config[(type)]['device']['path']
* $config[(type)]['device']['classname']
* - to add or replace a browser type features adapter
* $config[(type)]['features']['path']
* $config[(type)]['features']['classname']
*
* @param mixed $config (option) Config array
* @return Zend_Http_UserAgent
*/
public function setConfig($config = array())
{
if ($config instanceof Zend_Config) {
$config = $config->toArray();
}
// Verify that Config parameters are in an array.
if (!is_array($config) && !$config instanceof Traversable) {
require_once 'Zend/Http/UserAgent/Exception.php';
throw new Zend_Http_UserAgent_Exception(sprintf(
'Config parameters must be in an array or a Traversable object; received "%s"',
(is_object($config) ? get_class($config) : gettype($config))
));
}
if ($config instanceof Traversable) {
$tmp = array();
foreach ($config as $key => $value) {
$tmp[$key] = $value;
}
$config = $tmp;
unset($tmp);
}
$this->_config = array_merge($this->_config, $config);
return $this;
}
/**
* Returns the device object
*
* This is the object that will contain the various discovered device
* capabilities.
*
* @return Zend_Http_UserAgent_Device $device
*/
public function getDevice()
{
if (null !== $this->_device) {
return $this->_device;
}
$userAgent = $this->getUserAgent();
// search an existing identification in the session
$storage = $this->getStorage($userAgent);
if (!$storage->isEmpty()) {
// If the user agent and features are already existing, the
// Zend_Http_UserAgent object is serialized in the session
$object = $storage->read();
$this->unserialize($object);
} else {
// Otherwise, the identification is made and stored in the session.
// Find the browser type:
$this->setBrowserType($this->_matchUserAgent());
$this->_createDevice();
// put the result in storage:
$this->getStorage($userAgent)
->write($this->serialize());
}
// Mark the object as immutable
$this->_immutable = true;
// Return the device instance
return $this->_device;
}
/**
* Retrieve the browser type
*
* @return string $browserType
*/
public function getBrowserType()
{
return $this->_browserType;
}
/**
* Set the browser "type"
*
* @param string $browserType
* @return Zend_Http_UserAgent
*/
public function setBrowserType($browserType)
{
if ($this->_immutable) {
require_once 'Zend/Http/UserAgent/Exception.php';
throw new Zend_Http_UserAgent_Exception(
'The User-Agent device object has already been retrieved; the browser type is now immutable'
);
}
$this->_browserType = $browserType;
return $this;
}
/**
* Retrieve the "$_SERVER" array
*
* Basically, the $_SERVER array or an equivalent container storing the
* data that will be introspected.
*
* If the value has not been previously set, it sets itself from the
* $_SERVER superglobal.
*
* @return array
*/
public function getServer()
{
if (null === $this->_server) {
$this->setServer($_SERVER);
}
return $this->_server;
}
/**
* Set the "$_SERVER" array
*
* Basically, the $_SERVER array or an equivalent container storing the
* data that will be introspected.
*
* @param array|ArrayAccess $server
* @return void
* @throws Zend_Http_UserAgent_Exception on invalid parameter
*/
public function setServer($server)
{
if ($this->_immutable) {
require_once 'Zend/Http/UserAgent/Exception.php';
throw new Zend_Http_UserAgent_Exception(
'The User-Agent device object has already been retrieved; the server array is now immutable'
);
}
if (!is_array($server) && !$server instanceof Traversable) {
require_once 'Zend/Http/UserAgent/Exception.php';
throw new Zend_Http_UserAgent_Exception(sprintf(
'Expected an array or object implementing Traversable; received %s',
(is_object($server) ? get_class($server) : gettype($server))
));
}
// Get an array if we don't have one
if ($server instanceof ArrayObject) {
$server = $server->getArrayCopy();
} elseif ($server instanceof Traversable) {
$tmp = array();
foreach ($server as $key => $value) {
$tmp[$key] = $value;
}
$server = $tmp;
unset($tmp);
}
// Normalize key case
$server = array_change_key_case($server, CASE_LOWER);
$this->_server = $server;
return $this;
}
/**
* Retrieve a server value
*
* @param string $key
* @return mixed
*/
public function getServerValue($key)
{
$key = strtolower($key);
$server = $this->getServer();
$return = null;
if (isset($server[$key])) {
$return = $server[$key];
}
unset($server);
return $return;
}
/**
* Set a server value
*
* @param string|int|float $key
* @param mixed $value
* @return void
*/
public function setServerValue($key, $value)
{
if ($this->_immutable) {
require_once 'Zend/Http/UserAgent/Exception.php';
throw new Zend_Http_UserAgent_Exception(
'The User-Agent device object has already been retrieved; the server array is now immutable'
);
}
$server = $this->getServer(); // ensure it's been initialized
$key = strtolower($key);
$this->_server[$key] = $value;
return $this;
}
/**
* Set plugin loader
*
* @param string $type Type of plugin loader; one of 'storage', (?)
* @param string|Zend_Loader_PluginLoader $loader
* @return Zend_Http_UserAgent
*/
public function setPluginLoader($type, $loader)
{
$type = $this->_validateLoaderType($type);
if (is_string($loader)) {
if (!class_exists($loader)) {
require_once 'Zend/Loader.php';
Zend_Loader::loadClass($loader);
}
$loader = new $loader();
} elseif (!is_object($loader)) {
require_once 'Zend/Http/UserAgent/Exception.php';
throw new Zend_Http_UserAgent_Exception(sprintf(
'Expected a plugin loader class or object; received %s',
gettype($loader)
));
}
if (!$loader instanceof Zend_Loader_PluginLoader) {
require_once 'Zend/Http/UserAgent/Exception.php';
throw new Zend_Http_UserAgent_Exception(sprintf(
'Expected an object extending Zend_Loader_PluginLoader; received %s',
get_class($loader)
));
}
$basePrefix = 'Zend_Http_UserAgent_';
$basePath = 'Zend/Http/UserAgent/';
switch ($type) {
case 'storage':
$prefix = $basePrefix . 'Storage';
$path = $basePath . 'Storage';
break;
case 'device':
$prefix = $basePrefix;
$path = $basePath;
break;
}
$loader->addPrefixPath($prefix, $path);
$this->_loaders[$type] = $loader;
return $this;
}
/**
* Get a plugin loader
*
* @param string $type A valid plugin loader type; see {@link $_loaderTypes}
* @return Zend_Loader_PluginLoader
*/
public function getPluginLoader($type)
{
$type = $this->_validateLoaderType($type);
if (!isset($this->_loaders[$type])) {
require_once 'Zend/Loader/PluginLoader.php';
$this->setPluginLoader($type, new Zend_Loader_PluginLoader());
}
return $this->_loaders[$type];
}
/**
* Validate a plugin loader type
*
* Verifies that it is in {@link $_loaderTypes}, and returns a normalized
* version of the type.
*
* @param string $type
* @return string
* @throws Zend_Http_UserAgent_Exception on invalid type
*/
protected function _validateLoaderType($type)
{
$type = strtolower($type);
if (!in_array($type, $this->_loaderTypes)) {
$types = implode(', ', $this->_loaderTypes);
require_once 'Zend/Http/UserAgent/Exception.php';
throw new Zend_Http_UserAgent_Exception(sprintf(
'Expected one of "%s" for plugin loader type; received "%s"',
$types,
(string) $type
));
}
return $type;
}
/**
* Run the identification sequence to match the right browser type according to the
* user agent
*
* @return Zend_Http_UserAgent_Result
*/
protected function _matchUserAgent()
{
$type = self::DEFAULT_BROWSER_TYPE;
// If we have no identification sequence, just return the default type
if (empty($this->_config['identification_sequence'])) {
return $type;
}
// Get sequence against which to match
$sequence = explode(',', $this->_config['identification_sequence']);
// If a browser type is already configured, push that to the front of the list
if (null !== ($browserType = $this->getBrowserType())) {
array_unshift($sequence, $browserType);
}
// Append the default browser type to the list if not alread in the list
if (!in_array($type, $sequence)) {
$sequence[] = $type;
}
// Test each type until we find a match
foreach ($sequence as $browserType) {
$browserType = trim($browserType);
$className = $this->_getUserAgentDevice($browserType);
// Attempt to match this device class
if ($this->_match($className)) {
$type = $browserType;
$this->_browserTypeClass[$type] = $className;
break;
}
}
return $type;
}
/**
* Creates device object instance
*
* @return void
*/
protected function _createDevice()
{
$browserType = $this->getBrowserType();
$classname = $this->_getUserAgentDevice($browserType);
$this->_device = new $classname($this->getUserAgent(), $this->getServer(), $this->getConfig());
}
}