appData = $appDataFactory->get('css'); } /** * @PublicPage * @NoCSRFRequired * @NoSameSiteCookieRequired * * @param string $fileName css filename with extension * @param string $appName css folder name * @return FileDisplayResponse|NotFoundResponse */ #[FrontpageRoute(verb: 'GET', url: '/css/{appName}/{fileName}')] public function getCss(string $fileName, string $appName): Response { try { $folder = $this->appData->getFolder($appName); $gzip = false; $file = $this->getFile($folder, $fileName, $gzip); } catch (NotFoundException $e) { return new NotFoundResponse(); } $response = new FileDisplayResponse($file, Http::STATUS_OK, ['Content-Type' => 'text/css']); if ($gzip) { $response->addHeader('Content-Encoding', 'gzip'); } $ttl = 31536000; $response->addHeader('Cache-Control', 'max-age='.$ttl.', immutable'); $expires = new \DateTime(); $expires->setTimestamp($this->timeFactory->getTime()); $expires->add(new \DateInterval('PT'.$ttl.'S')); $response->addHeader('Expires', $expires->format(\DateTime::RFC1123)); return $response; } /** * @param ISimpleFolder $folder * @param string $fileName * @param bool $gzip is set to true if we use the gzip file * @return ISimpleFile * @throws NotFoundException */ private function getFile(ISimpleFolder $folder, string $fileName, bool &$gzip): ISimpleFile { $encoding = $this->request->getHeader('Accept-Encoding'); if (str_contains($encoding, 'gzip')) { try { $gzip = true; return $folder->getFile($fileName . '.gzip'); # Safari doesn't like .gz } catch (NotFoundException $e) { // continue } } $gzip = false; return $folder->getFile($fileName); } }