From 50bab079e1eedc46cc969f7bb30776c288fabb31 Mon Sep 17 00:00:00 2001 From: Dag Date: Thu, 24 Mar 2022 23:58:17 +0100 Subject: [PATCH] feat: add new bridge HashnodeBridge (#2231) https://github.com/RSS-Bridge/rss-bridge/pull/2231 --- bridges/HashnodeBridge.php | 46 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 bridges/HashnodeBridge.php diff --git a/bridges/HashnodeBridge.php b/bridges/HashnodeBridge.php new file mode 100644 index 00000000..159510fb --- /dev/null +++ b/bridges/HashnodeBridge.php @@ -0,0 +1,46 @@ +items = []; + for ($i = 0; $i < 5; $i++) { + $url = self::LATEST_POSTS . $i; + $content = getContents($url); + $array = json_decode($content, true); + + if($array['posts'] != null) { + foreach($array['posts'] as $post) { + $item = []; + $item['title'] = $post['title']; + $item['content'] = nl2br(htmlspecialchars($post['brief'])); + $item['timestamp'] = $post['dateAdded']; + if($post['partOfPublication'] === true) { + $item['uri'] = sprintf( + 'https://%s.hashnode.dev/%s', + $post['publication']['username'], + $post['slug'] + ); + } else { + $item['uri'] = sprintf('https://hashnode.com/post/%s', $post['slug']); + } + if(!isset($item['uri'])) { + continue; + } + $this->items[] = $item; + } + } + } + } + + public function getName(){ + return self::NAME . ': Recent posts'; + } +}