From c1f446fd195e89bf4ed7a0cd86992d31f684f0c9 Mon Sep 17 00:00:00 2001 From: mad-reyk Date: Sat, 11 Mar 2023 23:13:27 +0000 Subject: [PATCH] [Sfeed] Added new format (#3306) * [Sfeed] Added new format * [Sfeed] Spaces instead of tabs * [Sfeed] Move all global functions to class and fix phpcs warnings --- formats/SfeedFormat.php | 64 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 formats/SfeedFormat.php diff --git a/formats/SfeedFormat.php b/formats/SfeedFormat.php new file mode 100644 index 00000000..66dddfee --- /dev/null +++ b/formats/SfeedFormat.php @@ -0,0 +1,64 @@ += 1) { + return $enclosures[0]; + } + return ''; + } + + private function getCategories(array $cats) + { + $toReturn = ''; + $i = 0; + foreach ($cats as $cat) { + $toReturn .= $cat; + if (count($cats) < $i) { + $toReturn .= '|'; + } + $i++; + } + return $toReturn; + } + + public function stringify() + { + $items = $this->getItems(); + + $toReturn = ''; + foreach ($items as $item) { + $toReturn .= sprintf( + "%s\t%s\t%s\t%s\thtml\t\t%s\t%s\t%s\n", + $item->toArray()['timestamp'], + $this->escape($item->toArray()['title']), + $item->toArray()['uri'], + $this->escape($item->toArray()['content']), + $item->toArray()['author'], + $this->getFirstEnclosure($item->toArray()['enclosures']), + $this->getCategories($item->toArray()['categories']) + ); + } + + // Remove invalid non-UTF8 characters + ini_set('mbstring.substitute_character', 'none'); + $toReturn = mb_convert_encoding( + $toReturn, + $this->getCharset(), + 'UTF-8' + ); + return $toReturn; + } +} +// vi: expandtab