mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
18 lines
452 B
PHP
18 lines
452 B
PHP
<?php
|
|
|
|
class BarejsonFormat extends FormatAbstract
|
|
{
|
|
const MIME_TYPE = 'application/json';
|
|
|
|
public function stringify()
|
|
{
|
|
if (count($this->getItems()) != 1) {
|
|
throw new Exception('Unable to identify the target');
|
|
}
|
|
$item = $this->getItems()[0];
|
|
$content = $item->getContent() ?? '';
|
|
$content = mb_convert_encoding($content, $this->getCharset(), 'UTF-8');
|
|
return $content;
|
|
}
|
|
}
|