AzuraCast/src/Http/Response.php

132 lines
4.1 KiB
PHP

<?php
namespace App\Http;
use Psr\Http\Message\ResponseInterface;
final class Response extends \Slim\Http\Response
{
public const CACHE_ONE_MINUTE = 60;
public const CACHE_ONE_HOUR = 3600;
public const CACHE_ONE_DAY = 86400;
public const CACHE_ONE_MONTH = 2592000;
public const CACHE_ONE_YEAR = 31536000;
/**
* Send headers that expire the content immediately and prevent caching.
* @return static
*/
public function withNoCache()
{
$response = $this->response
->withHeader('Pragma', 'no-cache')
->withHeader('Expires', gmdate('D, d M Y H:i:s \G\M\T', 0))
->withHeader('Cache-Control', 'private, no-cache, no-store')
->withHeader('X-Accel-Expires', '0'); // CloudFlare
return new static($response, $this->streamFactory);
}
/**
* Send headers that expire the content in the specified number of seconds.
*
* @param int $seconds
*
* @return static
*/
public function withCacheLifetime(int $seconds = self::CACHE_ONE_MONTH)
{
$response = $this->response
->withHeader('Pragma', '')
->withHeader('Expires', gmdate('D, d M Y H:i:s \G\M\T', time() + $seconds))
->withHeader('Cache-Control', 'public, must-revalidate, max-age=' . $seconds)
->withHeader('X-Accel-Expires', (string)$seconds); // CloudFlare
return new static($response, $this->streamFactory);
}
/**
* Returns whether the request has a "cache lifetime" assigned to it.
*/
public function hasCacheLifetime(): bool
{
if ($this->response->hasHeader('Pragma')) {
return (false === strpos($this->response->getHeaderLine('Pragma'), 'no-cache'));
}
return (false === strpos($this->response->getHeaderLine('Cache-Control'), 'no-cache'));
}
/**
* Don't escape forward slashes by default on JSON responses.
*
* @param mixed $data
* @param int|null $status
* @param int $options
* @param int $depth
*/
public function withJson($data, ?int $status = null, int $options = 0, int $depth = 512): ResponseInterface
{
$options |= JSON_UNESCAPED_SLASHES;
$options |= JSON_UNESCAPED_UNICODE;
return parent::withJson($data, $status, $options, $depth);
}
/**
* Stream the contents of a file directly through to the response.
*
* @param string $file_path
* @param null $file_name
*
* @return static
*/
public function renderFile($file_path, $file_name = null)
{
set_time_limit(600);
if (null === $file_name) {
$file_name = basename($file_path);
}
$stream = $this->streamFactory->createStreamFromFile($file_path);
$response = $this->response
->withHeader('Pragma', 'public')
->withHeader('Expires', '0')
->withHeader('Cache-Control', 'must-revalidate, post-check=0, pre-check=0')
->withHeader('Content-Type', mime_content_type($file_path))
->withHeader('Content-Length', (string)filesize($file_path))
->withHeader('Content-Disposition', 'attachment; filename=' . $file_name)
->withBody($stream);
return new static($response, $this->streamFactory);
}
/**
* Write a string of file data to the response as if it is a file for download.
*
* @param string $file_data
* @param string $content_type
* @param string|null $file_name
*
* @return static
*/
public function renderStringAsFile($file_data, $content_type, $file_name = null)
{
$response = $this->response
->withHeader('Pragma', 'public')
->withHeader('Expires', '0')
->withHeader('Cache-Control', 'must-revalidate, post-check=0, pre-check=0')
->withHeader('Content-Type', $content_type);
if ($file_name !== null) {
$response = $response->withHeader('Content-Disposition', 'attachment; filename=' . $file_name);
}
$response->getBody()->write($file_data);
return new static($response, $this->streamFactory);
}
}