. */ /** * GNU social's true web entry point, bootstraps Symfony's configuration and instantiates our Kernel * * @package GNUsocial * @category Framework * * @author Hugo Sales * @author Diogo Peralta Cordeiro * @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ use App\CacheKernel; use App\Kernel; use App\Util\Formatting; use Symfony\Component\ErrorHandler\Debug; use Symfony\Component\HttpFoundation\Request; require \dirname(__DIR__) . '/config/bootstrap.php'; if ($_SERVER['APP_DEBUG']) { umask(0000); Debug::enable(); } // When a request passes through a proxy, certain request information is sent using either // the standard Forwarded header or X-Forwarded-* headers. // Therefore, if the user configures trusted proxy IPs, we trust these headers. if ($trustedProxies = $_ENV['TRUSTED_PROXIES'] ?? $_SERVER['TRUSTED_PROXIES'] ?? false) { Request::setTrustedProxies( explode(',', $trustedProxies), Request::HEADER_FORWARDED | Request::HEADER_X_FORWARDED_FOR | Request::HEADER_X_FORWARDED_HOST | Request::HEADER_X_FORWARDED_PORT | Request::HEADER_X_FORWARDED_PROTO, ); } // For enhanced security while using Request, here we define the trusted hosts. // If the incoming request’s hostname doesn't match one of the regular expressions in // this list, the application won’t respond and the user will receive a 400 response. if ($trustedHosts = $_ENV['TRUSTED_HOSTS'] ?? $_SERVER['TRUSTED_HOSTS'] ?? false) { Request::setTrustedHosts([$trustedHosts]); } $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']); // Wrap the default Kernel with the CacheKernel one in 'prod' environment if ('prod' === $kernel->getEnvironment() || isset($_ENV['SOCIAL_USE_CACHE_KERNEL'])) { $kernel = new CacheKernel($kernel); } $request = Request::createFromGlobals(); $_ENV = array_filter( $_ENV, fn (string $key) => Formatting::startsWith($key, ['HTTP', 'APP']) && $key !== 'APP_SECRET', \ARRAY_FILTER_USE_KEY, ); $response = $kernel->handle($request); $response->send(); $kernel->terminate($request, $response);