-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathServerRequestFactory.php
358 lines (319 loc) · 12.6 KB
/
ServerRequestFactory.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
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.3.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Http;
use Cake\Core\Configure;
use Cake\Http\Uri as CakeUri;
use Cake\Utility\Hash;
use Psr\Http\Message\ServerRequestFactoryInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Message\UriInterface;
use function Laminas\Diactoros\marshalHeadersFromSapi;
use function Laminas\Diactoros\marshalUriFromSapi;
use function Laminas\Diactoros\normalizeServer;
use function Laminas\Diactoros\normalizeUploadedFiles;
/**
* Factory for making ServerRequest instances.
*
* This adds in CakePHP specific behavior to populate the basePath and webroot
* attributes. Furthermore the Uri's path is corrected to only contain the
* 'virtual' path for the request.
*/
abstract class ServerRequestFactory implements ServerRequestFactoryInterface
{
/**
* Create a request from the supplied superglobal values.
*
* If any argument is not supplied, the corresponding superglobal value will
* be used.
*
* @param array|null $server $_SERVER superglobal
* @param array|null $query $_GET superglobal
* @param array|null $parsedBody $_POST superglobal
* @param array|null $cookies $_COOKIE superglobal
* @param array|null $files $_FILES superglobal
* @return \Cake\Http\ServerRequest
* @throws \InvalidArgumentException for invalid file values
*/
public static function fromGlobals(
?array $server = null,
?array $query = null,
?array $parsedBody = null,
?array $cookies = null,
?array $files = null
): ServerRequest {
$server = normalizeServer($server ?: $_SERVER);
$uri = static::createUri($server);
$webroot = '';
$base = '';
if ($uri instanceof CakeUri) {
// Unwrap our shim for base and webroot.
// For 5.x we should change the interface on createUri() to return a
// tuple of [$uri, $base, $webroot] and remove the wrapper.
$webroot = $uri->getWebroot();
$base = $uri->getBase();
$uri->getUri();
}
$sessionConfig = (array)Configure::read('Session') + [
'defaults' => 'php',
'cookiePath' => $webroot,
];
$session = Session::create($sessionConfig);
$request = new ServerRequest([
'environment' => $server,
'uri' => $uri,
'cookies' => $cookies ?: $_COOKIE,
'query' => $query ?: $_GET,
'webroot' => $webroot,
'base' => $base,
'session' => $session,
'input' => $server['CAKEPHP_INPUT'] ?? null,
]);
$request = static::marshalBodyAndRequestMethod($parsedBody ?? $_POST, $request);
// This is required as `ServerRequest::scheme()` ignores the value of
// `HTTP_X_FORWARDED_PROTO` unless `trustProxy` is enabled, while the
// `Uri` instance intially created always takes values of `HTTP_X_FORWARDED_PROTO`
// into account.
$uri = $request->getUri()->withScheme($request->scheme());
$request = $request->withUri($uri, true);
return static::marshalFiles($files ?? $_FILES, $request);
}
/**
* Sets the REQUEST_METHOD environment variable based on the simulated _method
* HTTP override value. The 'ORIGINAL_REQUEST_METHOD' is also preserved, if you
* want the read the non-simulated HTTP method the client used.
*
* Request body of content type "application/x-www-form-urlencoded" is parsed
* into array for PUT/PATCH/DELETE requests.
*
* @param array $parsedBody Parsed body.
* @param \Cake\Http\ServerRequest $request Request instance.
* @return \Cake\Http\ServerRequest
*/
protected static function marshalBodyAndRequestMethod(array $parsedBody, ServerRequest $request): ServerRequest
{
$method = $request->getMethod();
$override = false;
if (
in_array($method, ['PUT', 'DELETE', 'PATCH'], true) &&
strpos((string)$request->contentType(), 'application/x-www-form-urlencoded') === 0
) {
$data = (string)$request->getBody();
parse_str($data, $parsedBody);
}
if ($request->hasHeader('X-Http-Method-Override')) {
$parsedBody['_method'] = $request->getHeaderLine('X-Http-Method-Override');
$override = true;
}
$request = $request->withEnv('ORIGINAL_REQUEST_METHOD', $method);
if (isset($parsedBody['_method'])) {
$request = $request->withEnv('REQUEST_METHOD', $parsedBody['_method']);
unset($parsedBody['_method']);
$override = true;
}
if (
$override &&
!in_array($request->getMethod(), ['PUT', 'POST', 'DELETE', 'PATCH'], true)
) {
$parsedBody = [];
}
return $request->withParsedBody($parsedBody);
}
/**
* Process uploaded files and move things onto the parsed body.
*
* @param array $files Files array for normalization and merging in parsed body.
* @param \Cake\Http\ServerRequest $request Request instance.
* @return \Cake\Http\ServerRequest
*/
protected static function marshalFiles(array $files, ServerRequest $request): ServerRequest
{
$files = normalizeUploadedFiles($files);
$request = $request->withUploadedFiles($files);
$parsedBody = $request->getParsedBody();
if (!is_array($parsedBody)) {
return $request;
}
if (Configure::read('App.uploadedFilesAsObjects', true)) {
$parsedBody = Hash::merge($parsedBody, $files);
} else {
// Make a flat map that can be inserted into body for BC.
$fileMap = Hash::flatten($files);
foreach ($fileMap as $key => $file) {
$error = $file->getError();
$tmpName = '';
if ($error === UPLOAD_ERR_OK) {
$tmpName = $file->getStream()->getMetadata('uri');
}
$parsedBody = Hash::insert($parsedBody, (string)$key, [
'tmp_name' => $tmpName,
'error' => $error,
'name' => $file->getClientFilename(),
'type' => $file->getClientMediaType(),
'size' => $file->getSize(),
]);
}
}
return $request->withParsedBody($parsedBody);
}
/**
* Create a new server request.
*
* Note that server-params are taken precisely as given - no parsing/processing
* of the given values is performed, and, in particular, no attempt is made to
* determine the HTTP method or URI, which must be provided explicitly.
*
* @param string $method The HTTP method associated with the request.
* @param \Psr\Http\Message\UriInterface|string $uri The URI associated with the request. If
* the value is a string, the factory MUST create a UriInterface
* instance based on it.
* @param array $serverParams Array of SAPI parameters with which to seed
* the generated request instance.
* @return \Psr\Http\Message\ServerRequestInterface
*/
public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequestInterface
{
$serverParams['REQUEST_METHOD'] = $method;
$options = ['environment' => $serverParams];
if ($uri instanceof UriInterface) {
$options['uri'] = $uri;
} else {
$options['url'] = $uri;
}
return new ServerRequest($options);
}
/**
* Create a new Uri instance from the provided server data.
*
* @param array $server Array of server data to build the Uri from.
* $_SERVER will be added into the $server parameter.
* @return \Psr\Http\Message\UriInterface New instance.
*/
public static function createUri(array $server = []): UriInterface
{
$server += $_SERVER;
$server = normalizeServer($server);
$headers = marshalHeadersFromSapi($server);
return static::marshalUriFromSapi($server, $headers);
}
/**
* Build a UriInterface object.
*
* Add in some CakePHP specific logic/properties that help
* preserve backwards compatibility.
*
* @param array $server The server parameters.
* @param array $headers The normalized headers
* @return \Cake\Http\Uri A constructed Uri
*/
protected static function marshalUriFromSapi(array $server, array $headers): UriInterface
{
/** @psalm-suppress DeprecatedFunction */
$uri = marshalUriFromSapi($server, $headers);
[$base, $webroot] = static::getBase($uri, $server);
$uri = static::updatePath($base, $uri);
if (!$uri->getHost()) {
$uri = $uri->withHost('localhost');
}
return new CakeUri($uri, $base, $webroot);
}
/**
* Updates the request URI to remove the base directory.
*
* @param string $base The base path to remove.
* @param \Psr\Http\Message\UriInterface $uri The uri to update.
* @return \Psr\Http\Message\UriInterface The modified Uri instance.
*/
protected static function updatePath(string $base, UriInterface $uri): UriInterface
{
$path = $uri->getPath();
if ($base !== '' && strpos($path, $base) === 0) {
$path = substr($path, strlen($base));
}
if ($path === '/index.php' && $uri->getQuery()) {
$path = $uri->getQuery();
}
if (empty($path) || $path === '/' || $path === '//' || $path === '/index.php') {
$path = '/';
}
// Check for $webroot/index.php at the start and end of the path.
$search = '';
if ($path[0] === '/') {
$search .= '/';
}
$search .= (Configure::read('App.webroot') ?: 'webroot') . '/index.php';
if (strpos($path, $search) === 0) {
$path = substr($path, strlen($search));
} elseif (substr($path, -strlen($search)) === $search) {
$path = '/';
}
if (!$path) {
$path = '/';
}
return $uri->withPath($path);
}
/**
* Calculate the base directory and webroot directory.
*
* @param \Psr\Http\Message\UriInterface $uri The Uri instance.
* @param array $server The SERVER data to use.
* @return array An array containing the [baseDir, webroot]
*/
protected static function getBase(UriInterface $uri, array $server): array
{
$config = (array)Configure::read('App') + [
'base' => null,
'webroot' => null,
'baseUrl' => null,
];
$base = $config['base'];
$baseUrl = $config['baseUrl'];
$webroot = $config['webroot'];
if ($base !== false && $base !== null) {
return [$base, $base . '/'];
}
if (!$baseUrl) {
$base = dirname(Hash::get($server, 'PHP_SELF'));
// Clean up additional / which cause following code to fail..
$base = preg_replace('#/+#', '/', $base);
$indexPos = strpos($base, '/index.php');
if ($indexPos !== false) {
$base = substr($base, 0, $indexPos);
}
if ($webroot === basename($base)) {
$base = dirname($base);
}
if ($base === DIRECTORY_SEPARATOR || $base === '.') {
$base = '';
}
$base = implode('/', array_map('rawurlencode', explode('/', $base)));
return [$base, $base . '/'];
}
$file = '/' . basename($baseUrl);
$base = dirname($baseUrl);
if ($base === DIRECTORY_SEPARATOR || $base === '.') {
$base = '';
}
$webrootDir = $base . '/';
$docRoot = Hash::get($server, 'DOCUMENT_ROOT');
$docRootContainsWebroot = strpos($docRoot, $webroot);
if (!empty($base) || !$docRootContainsWebroot) {
if (strpos($webrootDir, '/' . $webroot . '/') === false) {
$webrootDir .= $webroot . '/';
}
}
return [$base . $file, $webrootDir];
}
}