From ca88096f1fdfce91724e8dd6b936c53d64277ca5 Mon Sep 17 00:00:00 2001 From: Paroleen <48787191+Paroleen@users.noreply.github.com> Date: Sun, 17 May 2020 19:58:19 +0200 Subject: [PATCH] [AwwwardsBridge] New bridge (#1524) [AwwwardsBridge] New bridge (#1524) --- bridges/AwwwardsBridge.php | 55 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 bridges/AwwwardsBridge.php diff --git a/bridges/AwwwardsBridge.php b/bridges/AwwwardsBridge.php new file mode 100644 index 00000000..c1d1d320 --- /dev/null +++ b/bridges/AwwwardsBridge.php @@ -0,0 +1,55 @@ +find('li[data-model]') as $site) { + $decode = html_entity_decode($site->attr['data-model'], + ENT_QUOTES, 'utf-8'); + $decode = json_decode($decode, true); + $this->sites[] = $decode; + } + } + + public function collectData() { + $this->fetchSites(); + + Debug::log('Building RSS feed'); + foreach($this->sites as $site) { + $item = array(); + $item['title'] = $site['title']; + $item['timestamp'] = $site['createdAt']; + $item['categories'] = $site['tags']; + + $item['content'] = ''; + $item['uri'] = self::SITEURI . $site['slug']; + + $this->items[] = $item; + + if(count($this->items) >= 10) + break; + } + } +}