-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathRequestHandler.class.php
More file actions
397 lines (347 loc) · 13.7 KB
/
RequestHandler.class.php
File metadata and controls
397 lines (347 loc) · 13.7 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
<?php
namespace wcf\system\request;
use Laminas\Diactoros\Exception\ExceptionInterface as DiactorosException;
use Laminas\Diactoros\Response\RedirectResponse;
use Laminas\Diactoros\ServerRequestFactory;
use Laminas\Diactoros\ServerRequestFilter\FilterUsingXForwardedHeaders;
use Laminas\HttpHandlerRunner\Emitter\SapiEmitter;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Server\RequestHandlerInterface;
use wcf\data\page\Page;
use wcf\data\page\PageCache;
use wcf\event\request\ActivePageResolving;
use wcf\http\error\NotFoundHandler;
use wcf\http\LegacyPlaceholderResponse;
use wcf\http\middleware\AddAcpSecurityHeaders;
use wcf\http\middleware\CheckForEnterpriseNonOwnerAccess;
use wcf\http\middleware\CheckForExpiredAppEvaluation;
use wcf\http\middleware\CheckForForceLogin;
use wcf\http\middleware\CheckForMultifactorRequirement;
use wcf\http\middleware\CheckForOfflineMode;
use wcf\http\middleware\CheckForTls;
use wcf\http\middleware\CheckHttpMethod;
use wcf\http\middleware\CheckSystemEnvironment;
use wcf\http\middleware\CheckUserBan;
use wcf\http\middleware\EnforceAcpAuthentication;
use wcf\http\middleware\EnforceCacheControlPrivate;
use wcf\http\middleware\EnforceFrameOptions;
use wcf\http\middleware\EnforceNoCacheForTemporaryRedirects;
use wcf\http\middleware\HandleAccessToken;
use wcf\http\middleware\HandleExceptions;
use wcf\http\middleware\HandleStartupErrors;
use wcf\http\middleware\HandleValinorMappingErrors;
use wcf\http\middleware\JsonBody;
use wcf\http\middleware\PreventMimeSniffing;
use wcf\http\middleware\TriggerBackgroundQueue;
use wcf\http\middleware\VaryAcceptLanguage;
use wcf\http\middleware\Xsrf;
use wcf\http\Pipeline;
use wcf\http\SapiStreamEmitter;
use wcf\http\StaticResponseHandler;
use wcf\system\application\ApplicationHandler;
use wcf\system\event\EventHandler;
use wcf\system\exception\AJAXException;
use wcf\system\exception\IllegalLinkException;
use wcf\system\exception\InvalidSecurityTokenException;
use wcf\system\exception\NamedUserException;
use wcf\system\exception\PermissionDeniedException;
use wcf\system\exception\SystemException;
use wcf\system\SingletonFactory;
use wcf\system\WCF;
/**
* Handles http requests.
*
* @author Marcel Werk
* @copyright 2001-2022 WoltLab GmbH
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
*/
final class RequestHandler extends SingletonFactory
{
/**
* active request object
*/
protected ?Request $activeRequest = null;
/**
* indicates if the request is an acp request
*/
protected bool $isACPRequest = false;
private ?Page $activePage;
/**
* @inheritDoc
*/
protected function init()
{
$this->isACPRequest = \class_exists('wcf\system\WCFACP', false);
}
/**
* Handles a http request.
*
* @throws AJAXException
* @throws IllegalLinkException
* @throws SystemException
*/
public function handle(string $application = 'wcf', bool $isACPRequest = false): void
{
// Override the application when this request was the result of a smart
// rewrite.
if ($application === 'wcf' && \PACKAGE_ID > 1) {
$app = ApplicationHandler::getInstance()->getApplicationByID(\PACKAGE_ID);
\assert($app !== null);
$application = $app->getAbbreviation();
}
try {
$this->isACPRequest = $isACPRequest;
// This must be called before the PSR request is created, because it registers the
// route paramters in $_GET.
$routeMatches = RouteHandler::getInstance()->matches();
try {
$psrRequest = ServerRequestFactory::fromGlobals(
null, // $_SERVER
null, // $_GET
null, // $_POST
null, // $_COOKIE
null, // $_FILES
FilterUsingXForwardedHeaders::trustProxies(
['*'],
[FilterUsingXForwardedHeaders::HEADER_PROTO]
)
);
} catch (DiactorosException $e) {
if (\ENABLE_DEBUG_MODE) {
throw $e;
}
\header('HTTP/1.1 500 Internal Server Error');
// Intentionally not localized, because this must never happen for well-formed requests.
throw new NamedUserException('Failed to parse the incoming request.', 0, $e);
}
if ($routeMatches) {
$builtRequest = $this->buildRequest($psrRequest, $application);
} else {
if (ENABLE_DEBUG_MODE) {
throw new SystemException("Cannot handle request, no valid route provided.");
}
$builtRequest = new NotFoundHandler();
}
if ($builtRequest instanceof Request) {
$this->activeRequest = $builtRequest;
$pipeline = new Pipeline([
new HandleStartupErrors(),
new PreventMimeSniffing(),
new AddAcpSecurityHeaders(),
new EnforceCacheControlPrivate(),
new EnforceNoCacheForTemporaryRedirects(),
new EnforceFrameOptions(),
new VaryAcceptLanguage(),
new CheckHttpMethod(),
new Xsrf(),
new CheckSystemEnvironment(),
new HandleAccessToken(),
new CheckUserBan(),
new EnforceAcpAuthentication(),
new CheckForEnterpriseNonOwnerAccess(),
new CheckForExpiredAppEvaluation(),
new CheckForTls(),
new CheckForOfflineMode(),
new CheckForForceLogin(),
new CheckForMultifactorRequirement(),
new JsonBody(),
new TriggerBackgroundQueue(),
new HandleExceptions(),
new HandleValinorMappingErrors(),
]);
$response = $pipeline->process($psrRequest, $this->getActiveRequest());
if ($response instanceof LegacyPlaceholderResponse) {
return;
}
} else {
// @phpstan-ignore function.alreadyNarrowedType, instanceof.alwaysTrue
\assert($builtRequest instanceof RequestHandlerInterface);
$pipeline = new Pipeline([
new HandleStartupErrors(),
new PreventMimeSniffing(),
new AddAcpSecurityHeaders(),
new EnforceCacheControlPrivate(),
new EnforceNoCacheForTemporaryRedirects(),
new EnforceFrameOptions(),
new VaryAcceptLanguage(),
]);
$response = $pipeline->process($psrRequest, $builtRequest);
}
$responseSize = $response->getBody()->getSize();
if ($responseSize === null || $responseSize > 5 * 1_024 * 1_024) {
// Responses larger than 5 MB are output using 1 MB chunks.
$emitter = new SapiStreamEmitter(maxBufferLength: 1_024 * 1_024);
} else {
$emitter = new SapiEmitter();
}
$emitter->emit($response);
} catch (IllegalLinkException | PermissionDeniedException | InvalidSecurityTokenException $e) {
throw new \LogicException(\sprintf(
"'%s' escaped from the middleware stack.",
$e::class
), 0, $e);
} catch (NamedUserException $e) {
$e->show();
exit;
}
}
/**
* Builds a new request.
*
* @throws NamedUserException
* @throws SystemException
*/
protected function buildRequest(RequestInterface $psrRequest, string $application): Request|RequestHandlerInterface
{
try {
$routeData = RouteHandler::getInstance()->getRouteData();
\assert(RouteHandler::getInstance()->isDefaultController() xor ($routeData['controller'] ?? false));
\assert(!isset($routeData['isDefaultController']));
if (RouteHandler::getInstance()->isDefaultController()) {
if ($this->isACPRequest()) {
$routeData['controller'] = 'index';
if ($application !== 'wcf') {
return new StaticResponseHandler(new RedirectResponse(
LinkHandler::getInstance()->getLink(),
301
));
}
} else {
$data = ControllerMap::getInstance()->lookupDefaultController($application);
// copy route data
foreach ($data as $key => $value) {
$routeData[$key] = $value;
}
}
}
if (!$this->isACPRequest()) {
// check if accessing from the wrong domain (e.g. "www." omitted but domain was configured with)
$domainName = ApplicationHandler::getInstance()->getDomainName();
if ($domainName !== $psrRequest->getUri()->getHost()) {
$targetUrl = $psrRequest->getUri()->withHost($domainName);
return new StaticResponseHandler(new RedirectResponse(
$targetUrl,
301
));
}
}
if (isset($routeData['className'])) {
$className = $routeData['className'];
} else {
$controller = $routeData['controller'];
$classApplication = $application;
if (
RouteHandler::getInstance()->isDefaultController()
&& !empty($routeData['application'])
&& $routeData['application'] !== $application
) {
$classApplication = $routeData['application'];
}
$classData = ControllerMap::getInstance()->resolve(
$classApplication,
$controller,
$this->isACPRequest(),
RouteHandler::getInstance()->isRenamedController()
);
if (\is_string($classData)) {
$routeData['application'] = $application;
$routeData['controller'] = $classData;
// append the remaining query parameters
foreach ($_GET as $key => $value) {
if (!empty($value) && $key != 'controller') {
$routeData[$key] = $value;
}
}
return new StaticResponseHandler(new RedirectResponse(
LinkHandler::getInstance()->getLink($routeData['controller'], $routeData),
301
));
} else {
$className = $classData['className'];
}
}
// handle CMS page meta data
$metaData = [];
if (isset($routeData['cmsPageID'])) {
$metaData['cms'] = [
'pageID' => $routeData['cmsPageID'],
'languageID' => $routeData['cmsPageLanguageID'],
];
if (
$routeData['cmsPageLanguageID']
&& $routeData['cmsPageLanguageID'] != WCF::getLanguage()->languageID
) {
WCF::setLanguage($routeData['cmsPageLanguageID']);
}
}
return new Request(
$className,
$metaData,
!$this->isACPRequest() && ControllerMap::getInstance()->isLandingPage($className, $metaData)
);
} catch (SystemException $e) {
if (
\defined('ENABLE_DEBUG_MODE')
&& ENABLE_DEBUG_MODE
&& \defined('ENABLE_DEVELOPER_TOOLS')
&& ENABLE_DEVELOPER_TOOLS
) {
throw $e;
}
return new NotFoundHandler();
}
}
/**
* Returns the active request object.
*/
public function getActiveRequest(): ?Request
{
return $this->activeRequest;
}
/**
* Returns true if the request is an acp request.
*/
public function isACPRequest(): bool
{
return $this->isACPRequest;
}
/**
* @deprecated 6.0 - This method always returns false.
*/
public function inRescueMode(): bool
{
return false;
}
/**
* @since 6.1
*/
public function getActivePage(): ?Page
{
if (!isset($this->activePage)) {
$this->determineActivePage();
}
return $this->activePage;
}
private function determineActivePage(): void
{
$this->activePage = null;
if ($this->getActiveRequest() === null) {
return;
}
$metaData = $this->getActiveRequest()->getMetaData();
if (isset($metaData['cms'])) {
$this->activePage = PageCache::getInstance()->getPage($metaData['cms']['pageID']);
} else {
$this->activePage = PageCache::getInstance()->getPageByController($this->getActiveRequest()->getClassName());
if ($this->activePage === null) {
$event = new ActivePageResolving($this->getActiveRequest());
EventHandler::getInstance()->fire($event);
$this->activePage = $event->page;
}
}
}
public function getActivePageID(): ?int
{
return $this->getActivePage()?->pageID;
}
}