-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathsfWebRequest.class.php
1090 lines (962 loc) · 27.6 KB
/
sfWebRequest.class.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
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <[email protected]>
* (c) 2004-2006 Sean Kerr <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* sfWebRequest class.
*
* This class manages web requests. It parses input from the request and store them as parameters.
*
* @package symfony
* @subpackage request
* @author Fabien Potencier <[email protected]>
* @author Sean Kerr <[email protected]>
* @version SVN: $Id$
*/
class sfWebRequest extends sfRequest
{
const
PORT_HTTP = 80,
PORT_HTTPS = 443;
protected
$languages = null,
$charsets = null,
$acceptableContentTypes = null,
$pathInfoArray = null,
$relativeUrlRoot = null,
$getParameters = null,
$postParameters = null,
$requestParameters = null,
$formats = array(),
$format = null,
$fixedFileArray = false;
/**
* Initializes this sfRequest.
*
* Available options:
*
* * formats: The list of supported format and their associated mime-types
* * path_info_key: The path info key (default to PATH_INFO)
* * path_info_array: The path info array (default to SERVER)
* * relative_url_root: The relative URL root
* * http_port: The port to use for HTTP requests
* * https_port: The port to use for HTTPS requests
*
* @param sfEventDispatcher $dispatcher An sfEventDispatcher instance
* @param array $parameters An associative array of initialization parameters
* @param array $attributes An associative array of initialization attributes
* @param array $options An associative array of options
*
* @return void
*
* @throws <b>sfInitializationException</b> If an error occurs while initializing this sfRequest
*
* @see sfRequest
*/
public function initialize(sfEventDispatcher $dispatcher, $parameters = array(), $attributes = array(), $options = array())
{
$options = array_merge(array(
'path_info_key' => 'PATH_INFO',
'path_info_array' => 'SERVER',
'http_port' => null,
'https_port' => null,
'default_format' => null, // to maintain bc
'trust_proxy' => true, // to maintain bc
), $options);
parent::initialize($dispatcher, $parameters, $attributes, $options);
// GET parameters
if (version_compare(PHP_VERSION, '5.4.0-dev', '<') && get_magic_quotes_gpc())
{
$this->getParameters = sfToolkit::stripslashesDeep($_GET);
}
else
{
$this->getParameters = $_GET;
}
$this->parameterHolder->add($this->getParameters);
$postParameters = $_POST;
if (isset($_SERVER['REQUEST_METHOD']))
{
switch ($_SERVER['REQUEST_METHOD'])
{
case 'GET':
$this->setMethod(self::GET);
break;
case 'POST':
if (isset($postParameters['sf_method']))
{
$this->setMethod(strtoupper($postParameters['sf_method']));
unset($postParameters['sf_method']);
}
elseif (isset($this->getParameters['sf_method']))
{
$this->setMethod(strtoupper($this->getParameters['sf_method']));
unset($this->getParameters['sf_method']);
}
else
{
$this->setMethod(self::POST);
}
$this->parameterHolder->remove('sf_method');
break;
case 'PUT':
$this->setMethod(self::PUT);
if ('application/x-www-form-urlencoded' === $this->getContentType())
{
parse_str($this->getContent(), $postParameters);
}
break;
case 'PATCH':
$this->setMethod(self::PATCH);
if ('application/x-www-form-urlencoded' === $this->getContentType())
{
parse_str($this->getContent(), $postParameters);
}
break;
case 'DELETE':
$this->setMethod(self::DELETE);
if ('application/x-www-form-urlencoded' === $this->getContentType())
{
parse_str($this->getContent(), $postParameters);
}
break;
case 'HEAD':
$this->setMethod(self::HEAD);
break;
case 'OPTIONS':
$this->setMethod(self::OPTIONS);
break;
default:
$this->setMethod(self::GET);
}
}
else
{
// set the default method
$this->setMethod(self::GET);
}
if (version_compare(PHP_VERSION, '5.4.0-dev', '<') && get_magic_quotes_gpc())
{
$this->postParameters = sfToolkit::stripslashesDeep($postParameters);
}
else
{
$this->postParameters = $postParameters;
}
$this->parameterHolder->add($this->postParameters);
if ($formats = $this->getOption('formats'))
{
foreach ($formats as $format => $mimeTypes)
{
$this->setFormat($format, $mimeTypes);
}
}
// additional parameters
$this->requestParameters = $this->parseRequestParameters();
$this->parameterHolder->add($this->requestParameters);
$this->fixParameters();
}
/**
* Returns the content type of the current request.
*
* @param Boolean $trim If false the full Content-Type header will be returned
*
* @return string
*/
public function getContentType($trim = true)
{
$contentType = $this->getHttpHeader('Content-Type', null);
if ($trim && false !== $pos = strpos($contentType, ';'))
{
$contentType = substr($contentType, 0, $pos);
}
return $contentType;
}
/**
* Retrieves the uniform resource identifier for the current web request.
*
* @return string Unified resource identifier
*/
public function getUri()
{
$pathArray = $this->getPathInfoArray();
// for IIS with rewrite module (IIFR, ISAPI Rewrite, ...)
if ('HTTP_X_REWRITE_URL' == $this->getOption('path_info_key'))
{
$uri = isset($pathArray['HTTP_X_REWRITE_URL']) ? $pathArray['HTTP_X_REWRITE_URL'] : '';
}
else
{
$uri = isset($pathArray['REQUEST_URI']) ? $pathArray['REQUEST_URI'] : '';
}
return $this->isAbsUri() ? $uri : $this->getUriPrefix().$uri;
}
/**
* See if the client is using absolute uri
*
* @return boolean true, if is absolute uri otherwise false
*/
public function isAbsUri()
{
$pathArray = $this->getPathInfoArray();
return isset($pathArray['REQUEST_URI']) ? 0 === strpos($pathArray['REQUEST_URI'], 'http') : false;
}
/**
* Returns Uri prefix, including protocol, hostname and server port.
*
* @return string Uniform resource identifier prefix
*/
public function getUriPrefix()
{
$pathArray = $this->getPathInfoArray();
$secure = $this->isSecure();
$protocol = $secure ? 'https' : 'http';
$host = $this->getHost();
$port = null;
// extract port from host or environment variable
if (false !== strpos($host, ':'))
{
list($host, $port) = explode(':', $host, 2);
}
else if ($protocolPort = $this->getOption($protocol.'_port'))
{
$port = $protocolPort;
}
else if (isset($pathArray['SERVER_PORT']))
{
$port = $pathArray['SERVER_PORT'];
}
// cleanup the port based on whether the current request is forwarded from
// a secure one and whether the introspected port matches the standard one
if ($this->isForwardedSecure())
{
$port = self::PORT_HTTPS != $this->getOption('https_port') ? $this->getOption('https_port') : null;
}
elseif (($secure && self::PORT_HTTPS == $port) || (!$secure && self::PORT_HTTP == $port))
{
$port = null;
}
return sprintf('%s://%s%s', $protocol, $host, $port ? ':'.$port : '');
}
/**
* Retrieves the path info for the current web request.
*
* @return string Path info
*/
public function getPathInfo()
{
$pathInfo = '';
$pathArray = $this->getPathInfoArray();
// simulate PATH_INFO if needed
$sf_path_info_key = $this->getOption('path_info_key');
if (!isset($pathArray[$sf_path_info_key]) || !$pathArray[$sf_path_info_key])
{
if (isset($pathArray['REQUEST_URI']))
{
$qs = isset($pathArray['QUERY_STRING']) ? $pathArray['QUERY_STRING'] : '';
$script_name = $this->getScriptName();
$uri_prefix = $this->isAbsUri() ? $this->getUriPrefix() : '';
$pathInfo = preg_replace('/^'.preg_quote($uri_prefix, '/').'/','',$pathArray['REQUEST_URI']);
$pathInfo = preg_replace('/^'.preg_quote($script_name, '/').'/', '', $pathInfo);
$prefix_name = preg_replace('#/[^/]+$#', '', $script_name);
$pathInfo = preg_replace('/^'.preg_quote($prefix_name, '/').'/', '', $pathInfo);
$pathInfo = preg_replace('/\??'.preg_quote($qs, '/').'$/', '', $pathInfo);
}
}
else
{
$pathInfo = $pathArray[$sf_path_info_key];
if ($relativeUrlRoot = $this->getRelativeUrlRoot())
{
$pathInfo = preg_replace('/^'.str_replace('/', '\\/', $relativeUrlRoot).'\//', '', $pathInfo);
}
}
// for IIS
if (isset($_SERVER['SERVER_SOFTWARE']) && false !== stripos($_SERVER['SERVER_SOFTWARE'], 'iis') && $pos = stripos($pathInfo, '.php'))
{
$pathInfo = substr($pathInfo, $pos + 4);
}
if (!$pathInfo)
{
$pathInfo = '/';
}
return $pathInfo;
}
/**
* Returns the relative url root if defined computed with script name if defined
*
* @return string The path info prefix
*/
public function getPathInfoPrefix()
{
$prefix = $this->getRelativeUrlRoot();
if (!$this->getOption('no_script_name'))
{
$scriptName = $this->getScriptName();
$prefix = null === $prefix ? $scriptName : $prefix.'/'.basename($scriptName);
}
return $prefix;
}
/**
* Gets GET parameters from request
*
* @return array
*/
public function getGetParameters()
{
return $this->getParameters;
}
/**
* Gets POST parameters from request
*
* @return array
*/
public function getPostParameters()
{
return $this->postParameters;
}
/**
* Gets REQUEST parameters from request
*
* @return array
*/
public function getRequestParameters()
{
return $this->requestParameters;
}
/**
* Add fixed REQUEST parameters
*
* @param array $parameters
*/
public function addRequestParameters(array $parameters)
{
$this->requestParameters = array_merge($this->requestParameters, $parameters);
$this->getParameterHolder()->add($parameters);
$this->fixParameters();
}
/**
* Returns referer.
*
* @return string
*/
public function getReferer()
{
$pathArray = $this->getPathInfoArray();
return isset($pathArray['HTTP_REFERER']) ? $pathArray['HTTP_REFERER'] : '';
}
/**
* Returns current host name.
*
* @return string
*/
public function getHost()
{
$pathArray = $this->getPathInfoArray();
if ($this->getOption('trust_proxy') && isset($pathArray['HTTP_X_FORWARDED_HOST']))
{
$elements = explode(',', $pathArray['HTTP_X_FORWARDED_HOST']);
return trim($elements[count($elements) - 1]);
}
return isset($pathArray['HTTP_HOST']) ? $pathArray['HTTP_HOST'] : '';
}
/**
* Returns current script name.
*
* @return string
*/
public function getScriptName()
{
$pathArray = $this->getPathInfoArray();
return isset($pathArray['SCRIPT_NAME']) ? $pathArray['SCRIPT_NAME'] : (isset($pathArray['ORIG_SCRIPT_NAME']) ? $pathArray['ORIG_SCRIPT_NAME'] : '');
}
/**
* Checks if the request method is the given one.
*
* @param string $method The method name
*
* @return bool true if the current method is the given one, false otherwise
*/
public function isMethod($method)
{
return strtoupper($method) == $this->getMethod();
}
/**
* Returns the preferred culture for the current request.
*
* @param array $cultures An array of ordered cultures available
*
* @return string The preferred culture
*/
public function getPreferredCulture(array $cultures = null)
{
$preferredCultures = $this->getLanguages();
if (null === $cultures)
{
return isset($preferredCultures[0]) ? $preferredCultures[0] : null;
}
if (!$preferredCultures)
{
return $cultures[0];
}
$preferredCultures = array_values(array_intersect($preferredCultures, $cultures));
return isset($preferredCultures[0]) ? $preferredCultures[0] : $cultures[0];
}
/**
* Gets a list of languages acceptable by the client browser
*
* @return array Languages ordered in the user browser preferences
*/
public function getLanguages()
{
if ($this->languages)
{
return $this->languages;
}
if (!isset($_SERVER['HTTP_ACCEPT_LANGUAGE']))
{
return array();
}
$languages = $this->splitHttpAcceptHeader($_SERVER['HTTP_ACCEPT_LANGUAGE']);
foreach ($languages as $lang)
{
if (false !== strpos($lang, '-'))
{
$codes = explode('-', $lang);
if ($codes[0] == 'i')
{
// Language not listed in ISO 639 that are not variants
// of any listed language, which can be registerd with the
// i-prefix, such as i-cherokee
if (count($codes) > 1)
{
$lang = $codes[1];
}
}
else
{
for ($i = 0, $max = count($codes); $i < $max; $i++)
{
if ($i == 0)
{
$lang = strtolower($codes[0]);
}
else
{
$lang .= '_'.strtoupper($codes[$i]);
}
}
}
}
$this->languages[] = $lang;
}
return $this->languages;
}
/**
* Gets a list of charsets acceptable by the client browser.
*
* @return array List of charsets in preferable order
*/
public function getCharsets()
{
if ($this->charsets)
{
return $this->charsets;
}
if (!isset($_SERVER['HTTP_ACCEPT_CHARSET']))
{
return array();
}
$this->charsets = $this->splitHttpAcceptHeader($_SERVER['HTTP_ACCEPT_CHARSET']);
return $this->charsets;
}
/**
* Gets a list of content types acceptable by the client browser
*
* @return array Languages ordered in the user browser preferences
*/
public function getAcceptableContentTypes()
{
if ($this->acceptableContentTypes)
{
return $this->acceptableContentTypes;
}
if (!isset($_SERVER['HTTP_ACCEPT']))
{
return array();
}
$this->acceptableContentTypes = $this->splitHttpAcceptHeader($_SERVER['HTTP_ACCEPT']);
return $this->acceptableContentTypes;
}
/**
* Returns true if the request is a XMLHttpRequest.
*
* It works if your JavaScript library set an X-Requested-With HTTP header.
* Works with Prototype, Mootools, jQuery, and perhaps others.
*
* @return bool true if the request is an XMLHttpRequest, false otherwise
*/
public function isXmlHttpRequest()
{
return ($this->getHttpHeader('X_REQUESTED_WITH') == 'XMLHttpRequest');
}
/**
* Gets the value of HTTP header
*
* @param string $name The HTTP header name
* @param string $prefix The HTTP header prefix
* @return string The value of HTTP header
*/
public function getHttpHeader($name, $prefix = 'http')
{
if ($prefix)
{
$prefix = strtoupper($prefix).'_';
}
$name = $prefix.strtoupper(str_replace('-', '_', $name));
$pathArray = $this->getPathInfoArray();
return isset($pathArray[$name]) ? sfToolkit::stripslashesDeep($pathArray[$name]) : null;
}
/**
* Gets the value of a cookie.
*
* @param string $name Cookie name
* @param string $defaultValue Default value returned when no cookie with given name is found
*
* @return string The cookie value
*/
public function getCookie($name, $defaultValue = null)
{
$retval = $defaultValue;
if (isset($_COOKIE[$name]))
{
if (version_compare(PHP_VERSION, '5.4.0-dev', '<') && get_magic_quotes_gpc())
{
$retval = sfToolkit::stripslashesDeep($_COOKIE[$name]);
}
else
{
$retval = $_COOKIE[$name];
}
}
return $retval;
}
/**
* Returns true if the current or forwarded request is secure (HTTPS protocol).
*
* @return boolean
*/
public function isSecure()
{
$pathArray = $this->getPathInfoArray();
return
(isset($pathArray['HTTPS']) && (('on' == strtolower($pathArray['HTTPS']) || 1 == $pathArray['HTTPS'])))
||
($this->getOption('trust_proxy') && isset($pathArray['HTTP_SSL_HTTPS']) && (('on' == strtolower($pathArray['HTTP_SSL_HTTPS']) || 1 == $pathArray['HTTP_SSL_HTTPS'])))
||
($this->getOption('trust_proxy') && $this->isForwardedSecure())
;
}
/**
* Returns true if the current request is forwarded from a request that is secure.
*
* @return boolean
*/
protected function isForwardedSecure()
{
$pathArray = $this->getPathInfoArray();
return isset($pathArray['HTTP_X_FORWARDED_PROTO']) && 'https' == strtolower($pathArray['HTTP_X_FORWARDED_PROTO']);
}
/**
* Retrieves relative root url.
*
* @return string URL
*/
public function getRelativeUrlRoot()
{
if (null === $this->relativeUrlRoot)
{
if (!($this->relativeUrlRoot = $this->getOption('relative_url_root')))
{
$this->relativeUrlRoot = preg_replace('#/[^/]+\.php5?$#', '', $this->getScriptName());
}
}
return $this->relativeUrlRoot;
}
/**
* Sets the relative root url for the current web request.
*
* @param string $value Value for the url
*/
public function setRelativeUrlRoot($value)
{
$this->relativeUrlRoot = $value;
}
/**
* Splits an HTTP header for the current web request.
*
* @param string $header Header to split
*
* @return array
*/
public function splitHttpAcceptHeader($header)
{
$values = array();
$groups = array();
foreach (array_filter(explode(',', $header)) as $value)
{
// Cut off any q-value that might come after a semi-colon
if ($pos = strpos($value, ';'))
{
$q = trim(substr($value, strpos($value, '=') + 1));
$value = substr($value, 0, $pos);
}
else
{
$q = 1;
}
$groups[$q][] = $value;
}
krsort($groups);
foreach ($groups as $q => $items) {
if (0 < $q) {
foreach ($items as $value) {
$values[] = trim($value);
}
}
}
return $values;
}
/**
* Returns the array that contains all request information ($_SERVER or $_ENV).
*
* This information is stored in the path_info_array option.
*
* @return array Path information
*/
public function getPathInfoArray()
{
if (!$this->pathInfoArray)
{
// parse PATH_INFO
switch ($this->getOption('path_info_array'))
{
case 'SERVER':
$this->pathInfoArray =& $_SERVER;
break;
case 'ENV':
default:
$this->pathInfoArray =& $_ENV;
}
}
return $this->pathInfoArray;
}
/**
* Gets the mime type associated with the format.
*
* @param string $format The format
*
* @return string The associated mime type (null if not found)
*/
public function getMimeType($format)
{
return isset($this->formats[$format]) ? $this->formats[$format][0] : null;
}
/**
* Gets the format associated with the mime type.
*
* @param string $mimeType The associated mime type
*
* @return string The format (null if not found)
*/
public function getFormat($mimeType)
{
foreach ($this->formats as $format => $mimeTypes)
{
if (in_array($mimeType, $mimeTypes))
{
return $format;
}
}
return null;
}
/**
* Associates a format with mime types.
*
* @param string $format The format
* @param string|array $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type)
*/
public function setFormat($format, $mimeTypes)
{
$this->formats[$format] = is_array($mimeTypes) ? $mimeTypes : array($mimeTypes);
}
/**
* Sets the request format.
*
* @param string $format The request format
*/
public function setRequestFormat($format)
{
$this->format = $format;
}
/**
* Gets the request format.
*
* Here is the process to determine the format:
*
* * format defined by the user (with setRequestFormat())
* * sf_format request parameter
* * default format from factories
*
* @return string The request format
*/
public function getRequestFormat()
{
if (null === $this->format)
{
$this->setRequestFormat($this->getParameter('sf_format', $this->getOption('default_format')));
}
return $this->format;
}
/**
* Retrieves an array of files.
*
* @param string $key A key
* @return array An associative array of files
*/
public function getFiles($key = null)
{
if (false === $this->fixedFileArray)
{
$this->fixedFileArray = self::convertFileInformation($_FILES);
}
return null === $key ? $this->fixedFileArray : (isset($this->fixedFileArray[$key]) ? $this->fixedFileArray[$key] : array());
}
/**
* Converts uploaded file array to a format following the $_GET and $POST naming convention.
*
* It's safe to pass an already converted array, in which case this method just returns the original array unmodified.
*
* @param array $taintedFiles An array representing uploaded file information
*
* @return array An array of re-ordered uploaded file information
*/
static public function convertFileInformation(array $taintedFiles)
{
$files = array();
foreach ($taintedFiles as $key => $data)
{
$files[$key] = self::fixPhpFilesArray($data);
}
return $files;
}
/**
* Fixes PHP files array
*
* @param array $data The PHP files
*
* @return array The fixed PHP files array
*/
static protected function fixPhpFilesArray(array $data)
{
if (version_compare(PHP_VERSION, '8.1.0-dev', '<')) {
$fileKeys = array('error', 'name', 'size', 'tmp_name', 'type');
} else {
$fileKeys = array('error', 'full_path', 'name', 'size', 'tmp_name', 'type');
}
$keys = array_keys($data);
sort($keys);
if ($fileKeys != $keys || !isset($data['name']) || !is_array($data['name']))
{
return $data;
}
$files = $data;
foreach ($fileKeys as $k)
{
unset($files[$k]);
}
foreach (array_keys($data['name']) as $key)
{
$files[$key] = self::fixPhpFilesArray(array(
'error' => $data['error'][$key],
'full_path' => $data['full_path'][$key],
'name' => $data['name'][$key],
'type' => $data['type'][$key],
'tmp_name' => $data['tmp_name'][$key],
'size' => $data['size'][$key],
));
}
return $files;
}
/**
* Returns the value of a GET parameter.
*
* @param string $name The GET parameter name
* @param string $default The default value
*
* @return string The GET parameter value
*/
public function getGetParameter($name, $default = null)
{
if (isset($this->getParameters[$name]))
{
return $this->getParameters[$name];
}
else
{
return sfToolkit::getArrayValueForPath($this->getParameters, $name, $default);
}
}
/**
* Returns the value of a POST parameter.
*
* @param string $name The POST parameter name
* @param string $default The default value
*
* @return string The POST parameter value
*/
public function getPostParameter($name, $default = null)
{
if (isset($this->postParameters[$name]))
{
return $this->postParameters[$name];
}
else
{
return sfToolkit::getArrayValueForPath($this->postParameters, $name, $default);
}
}
/**
* Returns the value of a parameter passed as a URL segment.
*
* @param string $name The parameter name
* @param string $default The default value
*
* @return string The parameter value
*/
public function getUrlParameter($name, $default = null)
{
if (isset($this->requestParameters[$name]))
{
return $this->requestParameters[$name];
}
else
{
return sfToolkit::getArrayValueForPath($this->requestParameters, $name, $default);
}
}
/**
* Returns the remote IP address that made the request.
*
* @return string The remote IP address
*/
public function getRemoteAddress()
{
$pathInfo = $this->getPathInfoArray();
return $pathInfo['REMOTE_ADDR'];
}
/**
* Returns an array containing a list of IPs, the first being the client address
* and the others the addresses of each proxy that passed the request. The address
* for the last proxy can be retrieved via getRemoteAddress().
*
* This method returns null if no proxy passed this request. Note that some proxies
* do not use this header, and act as if they were the client.
*
* @return string|null An array of IP from the client and the proxies that passed
* the request, or null if no proxy was used.
*/
public function getForwardedFor()
{
$pathInfo = $this->getPathInfoArray();
if (empty($pathInfo['HTTP_X_FORWARDED_FOR']))
{
return null;
}
return explode(', ', $pathInfo['HTTP_X_FORWARDED_FOR']);