mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-07 15:54:26 +02:00
This was introduced in commit 2c5ba7fc15
but might never worked
because $dreamhost_error_hack was never defined
55 lines
1.8 KiB
PHP
55 lines
1.8 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Module\HTTPException;
|
|
|
|
use Friendica\App;
|
|
use Friendica\BaseModule;
|
|
use Friendica\Core\L10n;
|
|
use Friendica\Core\System;
|
|
use Friendica\Module\Response;
|
|
use Friendica\Module\Special\HTTPException as ModuleHTTPException;
|
|
use Friendica\Network\HTTPException;
|
|
use Friendica\Util\Profiler;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
class PageNotFound extends BaseModule
|
|
{
|
|
/** @var string */
|
|
private $remoteAddress;
|
|
|
|
public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, App\Request $request, array $server, array $parameters = [])
|
|
{
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
|
|
|
$this->remoteAddress = $request->getRemoteAddress();
|
|
}
|
|
|
|
protected function content(array $request = []): string
|
|
{
|
|
throw new HTTPException\NotFoundException($this->t('Page not found.'));
|
|
}
|
|
|
|
public function run(ModuleHTTPException $httpException, array $request = []): ResponseInterface
|
|
{
|
|
// The URL provided does not resolve to a valid module.
|
|
$queryString = $this->server['QUERY_STRING'];
|
|
// Stupid browser tried to pre-fetch our JavaScript img template. Don't log the event or return anything - just quietly exit.
|
|
if (!empty($queryString) && preg_match('/{[0-9]}/', $queryString) !== 0) {
|
|
System::exit();
|
|
}
|
|
|
|
$this->logger->debug('index.php: page not found.', [
|
|
'request_uri' => $this->server['REQUEST_URI'],
|
|
'address' => $this->remoteAddress,
|
|
'query' => $this->server['QUERY_STRING']
|
|
]);
|
|
|
|
return parent::run($httpException, $request);
|
|
}
|
|
}
|