From 9b5bf565b3dfdc49dd6c7b77ec043226599b0a06 Mon Sep 17 00:00:00 2001 From: lukasklinger Date: Thu, 3 Oct 2019 21:58:57 +0200 Subject: [PATCH 1/2] [N26Bridge] Updated bridge to reflect changes on N26 blog (#1295) N26 made some changes to their blog, this commit fixes the N26Bridge --- bridges/N26Bridge.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bridges/N26Bridge.php b/bridges/N26Bridge.php index dd1c423c..3b8c0e64 100644 --- a/bridges/N26Bridge.php +++ b/bridges/N26Bridge.php @@ -15,10 +15,10 @@ class N26Bridge extends BridgeAbstract public function collectData() { - $html = getSimpleHTMLDOM(self::URI . '/en-fr/blog-archive') + $html = getSimpleHTMLDOM(self::URI . '/en-eu/blog-archive') or returnServerError('Error while downloading the website content'); - foreach($html->find('div.ga') as $article) { + foreach($html->find('div[class="ag ah ai aj bs bt dx ea fo gx ie if ih ii ij ik s"]') as $article) { $item = []; $item['uri'] = self::URI . $article->find('h2 a', 0)->href; @@ -27,9 +27,9 @@ class N26Bridge extends BridgeAbstract $fullArticle = getSimpleHTMLDOM($item['uri']) or returnServerError('Error while downloading the full article'); - $dateElement = $fullArticle->find('span[class="fk fl de ch fm by"]', 0); + $dateElement = $fullArticle->find('time', 0); $item['timestamp'] = strtotime($dateElement->plaintext); - $item['content'] = $fullArticle->find('main article', 0)->innertext; + $item['content'] = $fullArticle->find('div[class="af ag ah ai an"]', 1)->innertext; $this->items[] = $item; } From b09f50853f9094f802e78a98148d7184fd1d5332 Mon Sep 17 00:00:00 2001 From: Anchit Bajaj Date: Fri, 4 Oct 2019 01:32:30 +0530 Subject: [PATCH 2/2] [ViceBridge] - RSS feed for Vice Publications. (#1310) * [ViceBridge] - RSS feed for Vice Publications. --- bridges/ViceBridge.php | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 bridges/ViceBridge.php diff --git a/bridges/ViceBridge.php b/bridges/ViceBridge.php new file mode 100644 index 00000000..4dccb8ef --- /dev/null +++ b/bridges/ViceBridge.php @@ -0,0 +1,38 @@ + array( + 'name' => 'Feed', + 'type' => 'list', + 'values' => array( + 'Vice News' => 'rss', + 'Motherboard - Tech' => 'en_us/rss/topic/tech', + 'Entertainment' => 'en_us/rss/topic/entertainment', + 'Noisey - Music' => 'en_us/rss/topic/music', + 'Munchies - Food' => 'en_us/rss/topic/food' + ) + ) + )); + + public function collectData(){ + $feed = $this->getInput('feed'); + $feedURL = 'https://www.vice.com/' . $feed; + $this->collectExpandableDatas($feedURL, 10); + } + + protected function parseItem($newsItem){ + $item = parent::parseItem($newsItem); + // $articlePage gets the entire page's contents + $articlePage = getSimpleHTMLDOM($newsItem->link); + // text and embedded content + $article = $article . $articlePage->find('.article__body', 0); + $item['content'] = $article; + + return $item; + } +}