0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-14 16:33:21 +00:00
nextcloud_server/lib/public/AppFramework/Http/JSONResponse.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
2.1 KiB
PHP
Raw Normal View History

2013-08-17 09:16:48 +00:00
<?php
2013-08-17 09:16:48 +00:00
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2013-08-17 09:16:48 +00:00
*/
2013-08-20 23:00:26 +00:00
namespace OCP\AppFramework\Http;
2013-08-17 09:16:48 +00:00
use OCP\AppFramework\Http;
2013-08-17 09:16:48 +00:00
/**
* A renderer for JSON calls
* @since 6.0.0
* @template S of Http::STATUS_*
* @template-covariant T of null|string|int|float|bool|array|\stdClass|\JsonSerializable
* @template H of array<string, mixed>
* @template-extends Response<Http::STATUS_*, array<string, mixed>>
2013-08-17 09:16:48 +00:00
*/
class JSONResponse extends Response {
/**
* response data
* @var T
*/
2013-08-17 09:16:48 +00:00
protected $data;
/**
* Additional `json_encode` flags
* @var int
*/
protected $encodeFlags;
2013-08-17 09:16:48 +00:00
/**
* constructor of JSONResponse
* @param T $data the object or array that should be transformed
* @param S $statusCode the Http status code, defaults to 200
* @param H $headers
* @param int $encodeFlags Additional `json_encode` flags
* @since 6.0.0
* @since 30.0.0 Added `$encodeFlags` param
2013-08-17 09:16:48 +00:00
*/
public function __construct(
mixed $data = [],
int $statusCode = Http::STATUS_OK,
array $headers = [],
int $encodeFlags = 0,
) {
parent::__construct($statusCode, $headers);
2013-08-17 09:16:48 +00:00
$this->data = $data;
$this->encodeFlags = $encodeFlags;
2014-11-05 11:04:56 +00:00
$this->addHeader('Content-Type', 'application/json; charset=utf-8');
2013-08-17 09:16:48 +00:00
}
/**
* Returns the rendered json
* @return string the rendered json
* @since 6.0.0
* @throws \Exception If data could not get encoded
2013-08-17 09:16:48 +00:00
*/
public function render() {
return json_encode($this->data, JSON_HEX_TAG | JSON_THROW_ON_ERROR | $this->encodeFlags, 2048);
2013-08-17 09:16:48 +00:00
}
/**
* Sets values in the data json array
* @psalm-suppress InvalidTemplateParam
* @param T $data an array or object which will be transformed
2013-08-17 09:16:48 +00:00
* to JSON
2014-03-10 08:31:30 +00:00
* @return JSONResponse Reference to this object
* @since 6.0.0 - return value was added in 7.0.0
2013-08-17 09:16:48 +00:00
*/
public function setData($data) {
2013-08-17 09:16:48 +00:00
$this->data = $data;
2014-03-09 22:01:16 +00:00
return $this;
2013-08-17 09:16:48 +00:00
}
/**
* @return T the data
* @since 6.0.0
2013-08-17 09:16:48 +00:00
*/
public function getData() {
2013-08-17 09:16:48 +00:00
return $this->data;
}
}