0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-24 17:06:50 +00:00
nextcloud_server/lib/private/Http/Client/Response.php
Andy Scherzinger dae7c159f7
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-24 13:11:22 +02:00

73 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OC\Http\Client;
use OCP\Http\Client\IResponse;
use Psr\Http\Message\ResponseInterface;
/**
* Class Response
*
* @package OC\Http
*/
class Response implements IResponse {
/** @var ResponseInterface */
private $response;
/**
* @var bool
*/
private $stream;
/**
* @param ResponseInterface $response
* @param bool $stream
*/
public function __construct(ResponseInterface $response, $stream = false) {
$this->response = $response;
$this->stream = $stream;
}
/**
* @return string|resource
*/
public function getBody() {
return $this->stream ?
$this->response->getBody()->detach():
$this->response->getBody()->getContents();
}
/**
* @return int
*/
public function getStatusCode(): int {
return $this->response->getStatusCode();
}
/**
* @param string $key
* @return string
*/
public function getHeader(string $key): string {
$headers = $this->response->getHeader($key);
if (count($headers) === 0) {
return '';
}
return $headers[0];
}
/**
* @return array
*/
public function getHeaders(): array {
return $this->response->getHeaders();
}
}