-
Notifications
You must be signed in to change notification settings - Fork 824
/
HTTPRequest.php
958 lines (858 loc) · 26.5 KB
/
HTTPRequest.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
<?php
namespace SilverStripe\Control;
use SilverStripe\Dev\Deprecation;
use ArrayAccess;
use BadMethodCallException;
use InvalidArgumentException;
use SilverStripe\Core\ClassInfo;
use SilverStripe\ORM\ArrayLib;
/**
* Represents a HTTP-request, including a URL that is tokenised for parsing, and a request method
* (GET/POST/PUT/DELETE). This is used by {@link RequestHandler} objects to decide what to do.
*
* Caution: objects of this class are immutable, e.g. echo $request['a']; works as expected,
* but $request['a'] = '1'; has no effect.
*
* The intention is that a single HTTPRequest object can be passed from one object to another, each object calling
* match() to get the information that they need out of the URL. This is generally handled by
* {@link RequestHandler::handleRequest()}.
*/
class HTTPRequest implements ArrayAccess
{
/**
* @var string
*/
protected $url;
/**
* The non-extension parts of the passed URL as an array, originally exploded by the "/" separator.
* All elements of the URL are loaded in here,
* and subsequently popped out of the array by {@link shift()}.
* Only use this structure for internal request handling purposes.
*
* @var array
*/
protected $dirParts;
/**
* The URL extension (if present)
*
* @var string
*/
protected $extension;
/**
* The HTTP method in all uppercase: GET/PUT/POST/DELETE/HEAD
*
* @var string
*/
protected $httpMethod;
/**
* The URL scheme in lowercase: http or https
*
* @var string
*/
protected $scheme;
/**
* The client IP address
*
* @var string
*/
protected $ip;
/**
* Contains all HTTP GET parameters passed into this request.
*
* @var array
*/
protected $getVars = [];
/**
* Contains all HTTP POST parameters passed into this request.
*
* @var array
*/
protected $postVars = [];
/**
* HTTP Headers like "Content-Type: text/xml"
*
* @see http://en.wikipedia.org/wiki/List_of_HTTP_headers
* @var array
*/
protected $headers = [];
/**
* Raw HTTP body, used by PUT and POST requests.
*
* @var string
*/
protected $body;
/**
* Contains an associative array of all
* arguments matched in all calls to {@link RequestHandler->handleRequest()}.
* It's a "historical record" that's specific to the current call of
* {@link handleRequest()}, and is only complete once the "last call" to that method is made.
*
* @var array
*/
protected $allParams = [];
/**
* Contains an associative array of all
* arguments matched in the current call from {@link RequestHandler->handleRequest()},
* as denoted with a "$"-prefix in the $url_handlers definitions.
* Contains different states throughout its lifespan, so just useful
* while processed in {@link RequestHandler} and to get the last
* processes arguments.
*
* @var array
*/
protected $latestParams = [];
/**
* Contains an associative array of all arguments
* explicitly set in the route table for the current request.
* Useful for passing generic arguments via custom routes.
*
* E.g. The "Locale" parameter would be assigned "en_NZ" below
*
* Director:
* rules:
* 'en_NZ/$URLSegment!//$Action/$ID/$OtherID':
* Controller: 'ModelAsController'
* Locale: 'en_NZ'
*
* @var array
*/
protected $routeParams = [];
/**
* @var int
*/
protected $unshiftedButParsedParts = 0;
/**
* @var Session
*/
protected $session;
/**
* Construct a HTTPRequest from a URL relative to the site root.
*
* @param string $httpMethod
* @param string $url
* @param array $getVars
* @param array $postVars
* @param string $body
*/
public function __construct($httpMethod, $url, $getVars = [], $postVars = [], $body = null)
{
$this->httpMethod = strtoupper($httpMethod ?? '');
$this->setUrl($url);
$this->getVars = (array) $getVars;
$this->postVars = (array) $postVars;
$this->body = $body;
$this->scheme = "http";
}
/**
* Allow the setting of a URL
*
* This is here so that RootURLController can change the URL of the request
* without us losing all the other info attached (like headers)
*
* @param string $url The new URL
* @return HTTPRequest The updated request
*/
public function setUrl($url)
{
$this->url = $url;
// Normalize URL if its relative (strictly speaking), or has leading slashes
if (Director::is_relative_url($url) || preg_match('/^\//', $url ?? '')) {
$this->url = preg_replace(['/\/+/','/^\//', '/\/$/'], ['/','',''], $this->url ?? '');
}
if (preg_match('/^(.*)\.([A-Za-z][A-Za-z0-9]*)$/', $this->url ?? '', $matches)) {
$this->url = $matches[1];
$this->extension = $matches[2];
}
if ($this->url) {
$this->dirParts = preg_split('|/+|', $this->url ?? '');
} else {
$this->dirParts = [];
}
return $this;
}
/**
* @return bool
*/
public function isGET()
{
return $this->httpMethod == 'GET';
}
/**
* @return bool
*/
public function isPOST()
{
return $this->httpMethod == 'POST';
}
/**
* @return bool
*/
public function isPUT()
{
return $this->httpMethod == 'PUT';
}
/**
* @return bool
*/
public function isDELETE()
{
return $this->httpMethod == 'DELETE';
}
/**
* @return bool
*/
public function isHEAD()
{
return $this->httpMethod == 'HEAD';
}
/**
* @param string $body
* @return HTTPRequest $this
*/
public function setBody($body)
{
$this->body = $body;
return $this;
}
/**
* @return null|string
*/
public function getBody()
{
return $this->body;
}
/**
* @return array
*/
public function getVars()
{
return $this->getVars;
}
/**
* @return array
*/
public function postVars()
{
return $this->postVars;
}
/**
* Returns all combined HTTP GET and POST parameters
* passed into this request. If a parameter with the same
* name exists in both arrays, the POST value is returned.
*
* @return array
*/
public function requestVars()
{
return ArrayLib::array_merge_recursive($this->getVars, $this->postVars);
}
/**
* @param string $name
* @return mixed
*/
public function getVar($name)
{
if (isset($this->getVars[$name])) {
return $this->getVars[$name];
}
return null;
}
/**
* @param string $name
* @return mixed
*/
public function postVar($name)
{
if (isset($this->postVars[$name])) {
return $this->postVars[$name];
}
return null;
}
/**
* @param string $name
* @return mixed
*/
public function requestVar($name)
{
if (isset($this->postVars[$name])) {
return $this->postVars[$name];
}
if (isset($this->getVars[$name])) {
return $this->getVars[$name];
}
return null;
}
/**
* Returns a possible file extension found in parsing the URL
* as denoted by a "."-character near the end of the URL.
* Doesn't necessarily have to belong to an existing file,
* as extensions can be also used for content-type-switching.
*
* @return string
*/
public function getExtension()
{
return $this->extension;
}
/**
* Checks if the {@link HTTPRequest->getExtension()} on this request matches one of the more common media types
* embedded into a webpage - e.g. css, png.
*
* This is useful for things like determining whether to display a fully rendered error page or not. Note that the
* media file types is not at all comprehensive.
*
* @return bool
*/
public function isMedia()
{
return in_array($this->getExtension(), ['css', 'js', 'jpg', 'jpeg', 'gif', 'png', 'bmp', 'ico']);
}
/**
* Add a HTTP header to the response, replacing any header of the same name.
*
* @param string $header Example: "content-type"
* @param string $value Example: "text/xml"
*/
public function addHeader($header, $value)
{
$header = strtolower($header ?? '');
$this->headers[$header] = $value;
return $this;
}
/**
* @return array
*/
public function getHeaders()
{
return $this->headers;
}
/**
* Returns a HTTP Header by name if found in the request
*
* @param string $header Name of the header (Insensitive to case as per <rfc2616 section 4.2 "Message Headers">)
* @return mixed
*/
public function getHeader($header)
{
$header = strtolower($header ?? '');
return (isset($this->headers[$header])) ? $this->headers[$header] : null;
}
/**
* Remove an existing HTTP header by its name,
* e.g. "Content-Type".
*
* @param string $header
* @return HTTPRequest $this
*/
public function removeHeader($header)
{
$header = strtolower($header ?? '');
unset($this->headers[$header]);
return $this;
}
/**
* Returns the URL used to generate the page
*
* @param bool $includeGetVars whether or not to include the get parameters
* @return string
*/
public function getURL($includeGetVars = false)
{
$url = ($this->getExtension()) ? $this->url . '.' . $this->getExtension() : $this->url;
if ($includeGetVars) {
$vars = $this->getVars();
if (count($vars ?? [])) {
$url .= '?' . http_build_query($vars ?? []);
}
} elseif (strpos($url ?? '', "?") !== false) {
$url = substr($url ?? '', 0, strpos($url ?? '', "?"));
}
return $url;
}
/**
* Returns true if this request an ajax request,
* based on custom HTTP ajax added by common JavaScript libraries,
* or based on an explicit "ajax" request parameter.
*
* @return boolean
*/
public function isAjax()
{
return (
$this->requestVar('ajax') ||
$this->getHeader('x-requested-with') === "XMLHttpRequest"
);
}
/**
* Enables the existence of a key-value pair in the request to be checked using
* array syntax, so isset($request['title']) will check for $_POST['title'] and $_GET['title']
*
* @param string $offset
* @return bool
*/
#[\ReturnTypeWillChange]
public function offsetExists($offset)
{
return isset($this->postVars[$offset]) || isset($this->getVars[$offset]);
}
/**
* Access a request variable using array syntax. eg: $request['title'] instead of $request->postVar('title')
*
* @param string $offset
* @return mixed
*/
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
return $this->requestVar($offset);
}
#[\ReturnTypeWillChange]
public function offsetSet($offset, $value)
{
$this->getVars[$offset] = $value;
}
#[\ReturnTypeWillChange]
public function offsetUnset($offset)
{
unset($this->getVars[$offset]);
unset($this->postVars[$offset]);
}
/**
* Construct an HTTPResponse that will deliver a file to the client.
* Caution: Since it requires $fileData to be passed as binary data (no stream support),
* it's only advisable to send small files through this method.
* This function needs to be called inside the controller’s response, e.g.:
* <code>$this->setResponse(HTTPRequest::send_file('the content', 'filename.txt'));</code>
*
* @static
* @param $fileData
* @param $fileName
* @param null $mimeType
* @return HTTPResponse
*/
public static function send_file($fileData, $fileName, $mimeType = null)
{
if (!$mimeType) {
$mimeType = HTTP::get_mime_type($fileName);
}
$response = new HTTPResponse($fileData);
$response->addHeader("content-type", "$mimeType; name=\"" . addslashes($fileName ?? '') . "\"");
// Note a IE-only fix that inspects this header in HTTP::add_cache_headers().
$response->addHeader("content-disposition", "attachment; filename=\"" . addslashes($fileName ?? '') . "\"");
$response->addHeader("content-length", strlen($fileData ?? ''));
return $response;
}
/**
* Matches a URL pattern
* The pattern can contain a number of segments, separated by / (and an extension indicated by a .)
*
* The parts can be either literals, or, if they start with a $ they are interpreted as variables.
* - Literals must be provided in order to match
* - $Variables are optional
* - However, if you put ! at the end of a variable, then it becomes mandatory.
*
* For example:
* - admin/crm/list will match admin/crm/$Action/$ID/$OtherID, but it won't match admin/crm/$Action!/$ClassName!
*
* The pattern can optionally start with an HTTP method and a space. For example, "POST $Controller/$Action".
* This is used to define a rule that only matches on a specific HTTP method.
*
* @param $pattern
* @param bool $shiftOnSuccess
* @return array|bool
*/
public function match($pattern, $shiftOnSuccess = false)
{
// Check if a specific method is required
if (preg_match('/^([A-Za-z]+) +(.*)$/', $pattern ?? '', $matches)) {
$requiredMethod = $matches[1];
if ($requiredMethod != $this->httpMethod) {
return false;
}
// If we get this far, we can match the URL pattern as usual.
$pattern = $matches[2];
}
// Special case for the root URL controller (designated as an empty string, or a slash)
if (!$pattern || $pattern === '/') {
return ($this->dirParts == []) ? ['Matched' => true] : false;
}
// Check for the '//' marker that represents the "shifting point"
$doubleSlashPoint = strpos($pattern ?? '', '//');
if ($doubleSlashPoint !== false) {
$shiftCount = substr_count(substr($pattern ?? '', 0, $doubleSlashPoint), '/') + 1;
$pattern = str_replace('//', '/', $pattern ?? '');
$patternParts = explode('/', $pattern ?? '');
} else {
$patternParts = explode('/', $pattern ?? '');
$shiftCount = sizeof($patternParts ?? []);
}
// Filter out any "empty" matching parts - either from an initial / or a trailing /
$patternParts = array_values(array_filter($patternParts ?? []));
$arguments = [];
foreach ($patternParts as $i => $part) {
$part = trim($part ?? '');
// Match a variable
if (isset($part[0]) && $part[0] == '$') {
// A variable ending in ! is required
if (substr($part ?? '', -1) == '!') {
$varRequired = true;
$varName = substr($part ?? '', 1, -1);
} else {
$varRequired = false;
$varName = substr($part ?? '', 1);
}
// Fail if a required variable isn't populated
if ($varRequired && !isset($this->dirParts[$i])) {
return false;
}
/** @skipUpgrade */
$key = "Controller";
if ($varName === '*' || $varName === '@') {
if (isset($patternParts[$i + 1])) {
user_error(sprintf('All URL params after wildcard parameter $%s will be ignored', $varName), E_USER_WARNING);
}
if ($varName === '*') {
array_pop($patternParts);
$shiftCount = sizeof($patternParts ?? []);
$patternParts = array_merge($patternParts, array_slice($this->dirParts ?? [], $i ?? 0));
break;
} else {
array_pop($patternParts);
$shiftCount = sizeof($patternParts ?? []);
$remaining = count($this->dirParts ?? []) - $i;
for ($j = 1; $j <= $remaining; $j++) {
$arguments["$${j}"] = $this->dirParts[$j + $i - 1];
}
$patternParts = array_merge($patternParts, array_keys($arguments ?? []));
break;
}
} else {
$arguments[$varName] = $this->dirParts[$i] ?? null;
}
if ($part == '$Controller'
&& (
!ClassInfo::exists($arguments[$key])
|| !is_subclass_of($arguments[$key], 'SilverStripe\\Control\\Controller')
)
) {
return false;
}
// Literal parts with extension
} elseif (isset($this->dirParts[$i]) && $this->dirParts[$i] . '.' . $this->extension == $part) {
continue;
// Literal parts must always be there
} elseif (!isset($this->dirParts[$i]) || $this->dirParts[$i] != $part) {
return false;
}
}
if ($shiftOnSuccess) {
$this->shift($shiftCount);
// We keep track of pattern parts that we looked at but didn't shift off.
// This lets us say that we have *parsed* the whole URL even when we haven't *shifted* it all
$this->unshiftedButParsedParts = sizeof($patternParts ?? []) - $shiftCount;
}
$this->latestParams = $arguments;
// Load the arguments that actually have a value into $this->allParams
// This ensures that previous values aren't overridden with blanks
foreach ($arguments as $k => $v) {
if ($v || !isset($this->allParams[$k])) {
$this->allParams[$k] = $v;
}
}
if ($arguments === []) {
$arguments['_matched'] = true;
}
return $arguments;
}
/**
* @return array
*/
public function allParams()
{
return $this->allParams;
}
/**
* Shift all the parameter values down a key space, and return the shifted value.
*
* @return string
*/
public function shiftAllParams()
{
$keys = array_keys($this->allParams ?? []);
$values = array_values($this->allParams ?? []);
$value = array_shift($values);
// push additional unparsed URL parts onto the parameter stack
if (array_key_exists($this->unshiftedButParsedParts, $this->dirParts ?? [])) {
$values[] = $this->dirParts[$this->unshiftedButParsedParts];
}
foreach ($keys as $position => $key) {
$this->allParams[$key] = isset($values[$position]) ? $values[$position] : null;
}
return $value;
}
/**
* @return array
*/
public function latestParams()
{
return $this->latestParams;
}
/**
* @param string $name
* @return string|null
*/
public function latestParam($name)
{
if (isset($this->latestParams[$name])) {
return $this->latestParams[$name];
} else {
return null;
}
}
/**
* @return array
*/
public function routeParams()
{
return $this->routeParams;
}
/**
* @param $params
* @return HTTPRequest $this
*/
public function setRouteParams($params)
{
$this->routeParams = $params;
return $this;
}
/**
* @return array
*/
public function params()
{
return array_merge($this->allParams, $this->routeParams);
}
/**
* Finds a named URL parameter (denoted by "$"-prefix in $url_handlers)
* from the full URL, or a parameter specified in the route table
*
* @param string $name
* @return string Value of the URL parameter (if found)
*/
public function param($name)
{
$params = $this->params();
if (isset($params[$name])) {
return $params[$name];
} else {
return null;
}
}
/**
* Returns the unparsed part of the original URL
* separated by commas. This is used by {@link RequestHandler->handleRequest()}
* to determine if further URL processing is necessary.
*
* @return string Partial URL
*/
public function remaining()
{
return implode("/", $this->dirParts);
}
/**
* Returns true if this is a URL that will match without shifting off any of the URL.
* This is used by the request handler to prevent infinite parsing loops.
*
* @param string $pattern
* @return bool
*/
public function isEmptyPattern($pattern)
{
if (preg_match('/^([A-Za-z]+) +(.*)$/', $pattern ?? '', $matches)) {
$pattern = $matches[2];
}
if (trim($pattern ?? '') == "") {
return true;
}
return false;
}
/**
* Shift one or more parts off the beginning of the URL.
* If you specify shifting more than 1 item off, then the items will be returned as an array
*
* @param int $count Shift Count
* @return string|array
*/
public function shift($count = 1)
{
$return = [];
if ($count == 1) {
return array_shift($this->dirParts);
}
for ($i=0; $i<$count; $i++) {
$value = array_shift($this->dirParts);
if ($value === null) {
break;
}
$return[] = $value;
}
return $return;
}
/**
* Returns true if the URL has been completely parsed.
* This will respect parsed but unshifted directory parts.
*
* @return bool
*/
public function allParsed()
{
return sizeof($this->dirParts ?? []) <= $this->unshiftedButParsedParts;
}
/**
* @return string Return the host from the request
*/
public function getHost()
{
return $this->getHeader('host');
}
/**
* Returns the client IP address which originated this request.
*
* @return string
*/
public function getIP()
{
return $this->ip;
}
/**
* Sets the client IP address which originated this request.
* Use setIPFromHeaderValue if assigning from header value.
*
* @param $ip string
* @return $this
*/
public function setIP($ip)
{
if (!filter_var($ip, FILTER_VALIDATE_IP)) {
throw new InvalidArgumentException("Invalid ip $ip");
}
$this->ip = $ip;
return $this;
}
/**
* Returns all mimetypes from the HTTP "Accept" header
* as an array.
*
* @param boolean $includeQuality Don't strip away optional "quality indicators", e.g. "application/xml;q=0.9"
* (Default: false)
* @return array
*/
public function getAcceptMimetypes($includeQuality = false)
{
$mimetypes = [];
$mimetypesWithQuality = preg_split('#\s*,\s*#', $this->getHeader('accept') ?? '');
foreach ($mimetypesWithQuality as $mimetypeWithQuality) {
$mimetypes[] = ($includeQuality) ? $mimetypeWithQuality : preg_replace('/;.*/', '', $mimetypeWithQuality ?? '');
}
return $mimetypes;
}
/**
* @return string HTTP method (all uppercase)
*/
public function httpMethod()
{
return $this->httpMethod;
}
/**
* Explicitly set the HTTP method for this request.
* @param string $method
* @return $this
*/
public function setHttpMethod($method)
{
if (!self::isValidHttpMethod($method)) {
throw new \InvalidArgumentException('HTTPRequest::setHttpMethod: Invalid HTTP method');
}
$this->httpMethod = strtoupper($method ?? '');
return $this;
}
/**
* Return the URL scheme (e.g. "http" or "https").
* Equivalent to PSR-7 getUri()->getScheme()
*
* @return string
*/
public function getScheme()
{
return $this->scheme;
}
/**
* Set the URL scheme (e.g. "http" or "https").
* Equivalent to PSR-7 getUri()->getScheme(),
*
* @param string $scheme
* @return $this
*/
public function setScheme($scheme)
{
$this->scheme = $scheme;
return $this;
}
/**
* @param string $method
* @return bool
*/
private static function isValidHttpMethod($method)
{
return in_array(strtoupper($method ?? ''), ['GET','POST','PUT','DELETE','HEAD']);
}
/**
* Gets the "real" HTTP method for a request. This method is no longer used to mitigate the risk of web cache
* poisoning.
*
* @see https://www.silverstripe.org/download/security-releases/CVE-2019-19326
* @param string $origMethod Original HTTP method from the browser request
* @param array $postVars
* @return string HTTP method (all uppercase)
* @deprecated 4.4.7 Will be removed without equivalent functionality
*/
public static function detect_method($origMethod, $postVars)
{
Deprecation::notice('4.4.7', 'Will be removed without equivalent functionality');
if (isset($postVars['_method'])) {
if (!self::isValidHttpMethod($postVars['_method'])) {
throw new InvalidArgumentException('HTTPRequest::detect_method(): Invalid "_method" parameter');
}
return strtoupper($postVars['_method'] ?? '');
}
return $origMethod;
}
/**
* Determines whether the request has a session
*
* @return bool
*/
public function hasSession(): bool
{
return !empty($this->session);
}
/**
* @return Session
*/
public function getSession()
{
if (!$this->hasSession()) {
throw new BadMethodCallException("No session available for this HTTPRequest");
}
return $this->session;
}
/**
* @param Session $session
* @return $this
*/
public function setSession(Session $session)
{
$this->session = $session;
return $this;
}
}