2021-11-21 14:06:36 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
2021-11-21 15:52:36 -05:00
|
|
|
use Friendica\Capabilities\ICanCreateResponses;
|
2021-11-21 14:06:36 -05:00
|
|
|
use Friendica\Network\HTTPException\InternalServerErrorException;
|
2021-11-21 17:37:17 -05:00
|
|
|
use Psr\Http\Message\ResponseInterface;
|
2021-11-21 14:06:36 -05:00
|
|
|
|
2021-11-21 15:52:36 -05:00
|
|
|
class Response implements ICanCreateResponses
|
2021-11-21 14:06:36 -05:00
|
|
|
{
|
|
|
|
/**
|
2021-11-21 15:52:36 -05:00
|
|
|
* @var string[]
|
2021-11-21 14:06:36 -05:00
|
|
|
*/
|
|
|
|
protected $headers = [];
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $content = '';
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2021-11-21 17:37:17 -05:00
|
|
|
protected $type = ICanCreateResponses::TYPE_HTML;
|
2021-11-21 14:06:36 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
2021-11-21 15:52:36 -05:00
|
|
|
public function setHeader(?string $header = null, ?string $key = null): void
|
2021-11-21 14:06:36 -05:00
|
|
|
{
|
2021-11-21 15:52:36 -05:00
|
|
|
if (!isset($header) && !empty($key)) {
|
|
|
|
unset($this->headers[$key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($header)) {
|
|
|
|
if (empty($key)) {
|
|
|
|
$this->headers[] = $header;
|
|
|
|
} else {
|
|
|
|
$this->headers[$key] = $header;
|
|
|
|
}
|
|
|
|
}
|
2021-11-21 14:06:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
2021-11-21 15:52:36 -05:00
|
|
|
public function addContent($content): void
|
2021-11-21 14:06:36 -05:00
|
|
|
{
|
|
|
|
$this->content .= $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function getHeaders(): array
|
|
|
|
{
|
|
|
|
return $this->headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
2021-11-21 15:52:36 -05:00
|
|
|
public function getContent()
|
2021-11-21 14:06:36 -05:00
|
|
|
{
|
|
|
|
return $this->content;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
2021-11-21 15:52:36 -05:00
|
|
|
public function setType(string $type, ?string $content_type = null): void
|
2021-11-21 14:06:36 -05:00
|
|
|
{
|
2021-11-21 17:37:17 -05:00
|
|
|
if (!in_array($type, ICanCreateResponses::ALLOWED_TYPES)) {
|
2021-11-21 14:06:36 -05:00
|
|
|
throw new InternalServerErrorException('wrong type');
|
|
|
|
}
|
|
|
|
|
2021-11-21 15:52:36 -05:00
|
|
|
switch ($type) {
|
|
|
|
case static::TYPE_JSON:
|
|
|
|
$content_type = $content_type ?? 'application/json';
|
|
|
|
break;
|
|
|
|
case static::TYPE_XML:
|
|
|
|
$content_type = $content_type ?? 'text/xml';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$this->setHeader($content_type, 'Content-type');
|
|
|
|
|
2021-11-21 14:06:36 -05:00
|
|
|
$this->type = $type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
2021-11-21 15:52:36 -05:00
|
|
|
public function getType(): string
|
2021-11-21 14:06:36 -05:00
|
|
|
{
|
|
|
|
return $this->type;
|
|
|
|
}
|
2021-11-21 17:37:17 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function generate(): ResponseInterface
|
|
|
|
{
|
|
|
|
// Setting the response type as an X-header for direct usage
|
2021-11-21 17:46:57 -05:00
|
|
|
$this->headers['X-RESPONSE-TYPE'] = $this->type;
|
2021-11-21 17:37:17 -05:00
|
|
|
|
|
|
|
return new \GuzzleHttp\Psr7\Response(200, $this->headers, $this->content);
|
|
|
|
}
|
2021-11-21 14:06:36 -05:00
|
|
|
}
|