header = new ConsoleHeader(); $this->header->l11n = $l11n ?? new Localization(); } /** * Set response. * * @param array $response Response to set * * @return void * * @since 1.0.0 */ public function setResponse(array $response) : void { $this->response = $response; } /** * Remove response by ID. * * @param string $id Response ID * * @return bool * * @since 1.0.0 */ public function remove(string $id) : bool { if (isset($this->response[$id])) { unset($this->response[$id]); return true; } return false; } /** * {@inheritdoc} */ public function getBody(bool $optimize = false) : string { return $this->render($optimize); } /** * Generate response based on header. * * @param mixed ...$data Data passt to render function. (0 => bool: $optimize) * * @return string * * @since 1.0.0 */ public function render(...$data) : string { $types = $this->header->get('Content-Type'); foreach ($types as $type) { if (\stripos($type, MimeType::M_JSON) !== false) { return (string) \json_encode($this->jsonSerialize()); } } return $this->getRaw($data[0] ?? false); } /** * Generate raw response. * * @param bool $optimize Optimize response / minify * * @return string * * @throws \Exception this exception is thrown if the response cannot be rendered * * @since 1.0.0 */ private function getRaw(bool $optimize = false) : string { $render = ''; foreach ($this->response as $response) { $render .= StringUtils::stringify($response); } return $render; } /** * {@inheritdoc} */ public function toArray() : array { $result = []; foreach ($this->response as $response) { if ($response instanceof View) { $result[] = $response->toArray(); } elseif (\is_array($response) || \is_scalar($response)) { $result[] = $response; } elseif ($response instanceof \JsonSerializable) { $result[] = $response->jsonSerialize(); } elseif ($response === null) { continue; } else { FileLogger::getInstance() ->error( FileLogger::MSG_FULL, [ 'message' => 'Unknown type.', 'line' => __LINE__, 'file' => self::class, ] ); } } return $result; } }