-
Notifications
You must be signed in to change notification settings - Fork 9.3k
/
Copy pathHttp.php
450 lines (406 loc) · 11.1 KB
/
Http.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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\App\Request;
use Magento\Framework\App\RequestContentInterface;
use Magento\Framework\App\RequestSafetyInterface;
use Magento\Framework\App\Route\ConfigInterface\Proxy as ConfigInterface;
use Magento\Framework\HTTP\PhpEnvironment\Request;
use Magento\Framework\ObjectManagerInterface;
use Magento\Framework\Stdlib\Cookie\CookieReaderInterface;
use Magento\Framework\Stdlib\StringUtils;
/**
* Http request
*/
class Http extends Request implements RequestContentInterface, RequestSafetyInterface
{
/**#@+
* HTTP Ports
*/
const DEFAULT_HTTP_PORT = 80;
const DEFAULT_HTTPS_PORT = 443;
/**#@-*/
// Configuration path
const XML_PATH_OFFLOADER_HEADER = 'web/secure/offloader_header';
/**
* @var string
*/
protected $route;
/**
* PATH_INFO
*
* @var string
*/
protected $pathInfo = '';
/**
* ORIGINAL_PATH_INFO
*
* @var string
*/
protected $originalPathInfo = '';
/**
* @var array
*/
protected $directFrontNames;
/**
* @var string
*/
protected $controllerModule;
/**
* Request's original information before forward.
*
* @var array
*/
protected $beforeForwardInfo = [];
/**
* @var ConfigInterface
*/
protected $routeConfig;
/**
* @var PathInfoProcessorInterface
*/
protected $pathInfoProcessor;
/**
* @var ObjectManagerInterface
*/
protected $objectManager;
/**
* @var bool|null
*/
protected $isSafeMethod = null;
/**
* @var array
*/
protected $safeRequestTypes = ['GET', 'HEAD', 'TRACE', 'OPTIONS'];
/**
* @var string
*/
private $distroBaseUrl;
/**
* @param CookieReaderInterface $cookieReader
* @param StringUtils $converter
* @param ConfigInterface $routeConfig
* @param PathInfoProcessorInterface $pathInfoProcessor
* @param ObjectManagerInterface $objectManager
* @param \Zend\Uri\UriInterface|string|null $uri
* @param array $directFrontNames
*/
public function __construct(
CookieReaderInterface $cookieReader,
StringUtils $converter,
ConfigInterface $routeConfig,
PathInfoProcessorInterface $pathInfoProcessor,
ObjectManagerInterface $objectManager,
$uri = null,
$directFrontNames = []
) {
parent::__construct($cookieReader, $converter, $uri);
$this->routeConfig = $routeConfig;
$this->pathInfoProcessor = $pathInfoProcessor;
$this->objectManager = $objectManager;
$this->directFrontNames = $directFrontNames;
}
/**
* Returns ORIGINAL_PATH_INFO.
* This value is calculated instead of reading PATH_INFO
* directly from $_SERVER due to cross-platform differences.
*
* @return string
*/
public function getOriginalPathInfo()
{
if (empty($this->originalPathInfo)) {
$this->setPathInfo();
}
return $this->originalPathInfo;
}
/**
* Set the PATH_INFO string
* Set the ORIGINAL_PATH_INFO string
*
* @param string|null $pathInfo
* @return $this
*/
public function setPathInfo($pathInfo = null)
{
if ($pathInfo === null) {
$requestUri = $this->getRequestUri();
if ('/' === $requestUri) {
return $this;
}
$requestUri = $this->removeRepitedSlashes($requestUri);
$parsedRequestUri = explode('?', $requestUri, 2);
$queryString = !isset($parsedRequestUri[1]) ? '' : '?' . $parsedRequestUri[1];
$baseUrl = $this->getBaseUrl();
$pathInfo = (string)substr($parsedRequestUri[0], (int)strlen($baseUrl));
if ($this->isNoRouteUri($baseUrl, $pathInfo)) {
$pathInfo = 'noroute';
}
$pathInfo = $this->pathInfoProcessor->process($this, $pathInfo);
$this->originalPathInfo = (string)$pathInfo;
$this->requestString = $pathInfo . $queryString;
}
$this->pathInfo = (string)$pathInfo;
return $this;
}
/**
* Remove repeated slashes from the start of the path.
*
* @param string $pathInfo
* @return string
*/
private function removeRepitedSlashes($pathInfo)
{
$firstChar = (string)substr($pathInfo, 0, 1);
if ($firstChar == '/') {
$pathInfo = '/' . ltrim($pathInfo, '/');
}
return $pathInfo;
}
/**
* Check is URI should be marked as no route, helps route to 404 URI like `index.phpadmin`.
*
* @param string $baseUrl
* @param string $pathInfo
* @return bool
*/
private function isNoRouteUri($baseUrl, $pathInfo)
{
$firstChar = (string)substr($pathInfo, 0, 1);
return $baseUrl !== '' && !in_array($firstChar, ['/', '']);
}
/**
* Check if code declared as direct access frontend name
* this mean what this url can be used without store code
*
* @param string $code
* @return bool
*/
public function isDirectAccessFrontendName($code)
{
return isset($this->directFrontNames[$code]);
}
/**
* Get base path
*
* @return string
*/
public function getBasePath()
{
$path = parent::getBasePath();
if (empty($path)) {
$path = '/';
} else {
$path = str_replace('\\', '/', $path);
}
return $path;
}
/**
* Retrieve request front name
*
* @return string|null
*/
public function getFrontName()
{
$pathParts = explode('/', trim($this->getPathInfo(), '/'));
return reset($pathParts);
}
/**
* Set route name
*
* @param string $route
* @return $this
*/
public function setRouteName($route)
{
$this->route = $route;
$module = $this->routeConfig->getRouteFrontName($route);
if ($module) {
$this->setModuleName($module);
}
return $this;
}
/**
* Retrieve route name
*
* @return string|null
*/
public function getRouteName()
{
return $this->route;
}
/**
* Specify module name where was found currently used controller
*
* @param string $module
* @return $this
*/
public function setControllerModule($module)
{
$this->controllerModule = $module;
return $this;
}
/**
* Get module name of currently used controller
*
* @return string
*/
public function getControllerModule()
{
return $this->controllerModule;
}
/**
* Collect properties changed by _forward in protected storage
* before _forward was called first time.
*
* @return $this
*/
public function initForward()
{
if (empty($this->beforeForwardInfo)) {
$this->beforeForwardInfo = [
'params' => $this->getParams(),
'action_name' => $this->getActionName(),
'controller_name' => $this->getControllerName(),
'module_name' => $this->getModuleName(),
'route_name' => $this->getRouteName(),
];
}
return $this;
}
/**
* Retrieve property's value which was before _forward call.
* If property was not changed during _forward call null will be returned.
* If passed name will be null whole state array will be returned.
*
* @param string $name
* @return array|string|null
*/
public function getBeforeForwardInfo($name = null)
{
if ($name === null) {
return $this->beforeForwardInfo;
} elseif (isset($this->beforeForwardInfo[$name])) {
return $this->beforeForwardInfo[$name];
}
return null;
}
/**
* Check is Request from AJAX
*
* @return boolean
*/
public function isAjax()
{
if ($this->isXmlHttpRequest()) {
return true;
}
if ($this->getParam('ajax') || $this->getParam('isAjax')) {
return true;
}
return false;
}
/**
* Get website instance base url
*
* @return string
*
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
*/
public function getDistroBaseUrl()
{
if ($this->distroBaseUrl) {
return $this->distroBaseUrl;
}
$headerHttpHost = $this->getServer('HTTP_HOST');
$headerHttpHost = $this->converter->cleanString($headerHttpHost);
$headerScriptName = $this->getServer('SCRIPT_NAME');
if (isset($headerScriptName) && isset($headerHttpHost)) {
if ($secure = $this->isSecure()) {
$scheme = 'https://';
} else {
$scheme = 'http://';
}
$hostArr = explode(':', $headerHttpHost);
$host = $hostArr[0];
$port = isset($hostArr[1])
&& (!$secure && $hostArr[1] != 80 || $secure && $hostArr[1] != 443) ? ':' . $hostArr[1] : '';
$path = $this->getBasePath();
return $this->distroBaseUrl = $scheme . $host . $port . rtrim($path, '/') . '/';
}
return 'http://localhost/';
}
/**
* Determines a base URL path from environment
*
* @param array $server
* @return string
*/
public static function getDistroBaseUrlPath($server)
{
$result = '';
if (isset($server['SCRIPT_NAME'])) {
$envPath = str_replace('\\', '/', dirname(str_replace('\\', '/', $server['SCRIPT_NAME'])));
if ($envPath != '.' && $envPath != '/') {
$result = $envPath;
}
}
if (!preg_match('/\/$/', $result)) {
$result .= '/';
}
return $result;
}
/**
* Return url with no script name
*
* @param string $url
* @return string
*/
public static function getUrlNoScript($url)
{
if (!isset($_SERVER['SCRIPT_NAME'])) {
return $url;
}
if (($pos = strripos($url, basename($_SERVER['SCRIPT_NAME']))) !== false) {
$url = substr($url, 0, $pos);
}
return $url;
}
/**
* Retrieve full action name
*
* @param string $delimiter
* @return string
*/
public function getFullActionName($delimiter = '_')
{
return $this->getRouteName() .
$delimiter .
$this->getControllerName() .
$delimiter .
$this->getActionName();
}
/**
* @return array
*/
public function __sleep()
{
return [];
}
/**
* {@inheritdoc}
*/
public function isSafeMethod()
{
if ($this->isSafeMethod === null) {
if (isset($_SERVER['REQUEST_METHOD']) && (in_array($_SERVER['REQUEST_METHOD'], $this->safeRequestTypes))) {
$this->isSafeMethod = true;
} else {
$this->isSafeMethod = false;
}
}
return $this->isSafeMethod;
}
}