app = $app; $this->allowedIps = ['127.0.0.1', 'fe80::1', '::1']; $parameters = $this->getConfig(); if (array_key_exists('dev_hosts', $parameters) && is_array($parameters['dev_hosts'])) { $this->allowedIps = array_merge($this->allowedIps, $parameters['dev_hosts']); } if (isset($_SERVER['MAUTIC_CUSTOM_DEV_HOSTS'])) { $localIps = json_decode($_SERVER['MAUTIC_CUSTOM_DEV_HOSTS'], true); $this->allowedIps = array_merge($this->allowedIps, $localIps); } } /** * This check prevents access to debug front controllers * that are deployed by accident to production servers. * * {@inheritdoc} */ public function handle(Request $request, $type = self::MAIN_REQUEST, $catch = true) { if (in_array($request->getClientIp(), $this->allowedIps) || false !== getenv('DDEV_TLD')) { return $this->app->handle($request, $type, $catch); } return new Response('You are not allowed to access this file.', 403); } public function getPriority() { return self::PRIORITY; } }