From b0884e9158596ad303a482a0fa87ac0b758dc31a Mon Sep 17 00:00:00 2001 From: floviolleau Date: Thu, 3 Oct 2019 22:36:08 +0200 Subject: [PATCH] [VieDeMerdeBridge] Add new bridge for quotes from Vie de Merde (#1313) * Add new bridge for quotes from Vie de Merde --- bridges/VieDeMerdeBridge.php | 56 ++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 bridges/VieDeMerdeBridge.php diff --git a/bridges/VieDeMerdeBridge.php b/bridges/VieDeMerdeBridge.php new file mode 100644 index 00000000..12247980 --- /dev/null +++ b/bridges/VieDeMerdeBridge.php @@ -0,0 +1,56 @@ + array( + 'name' => 'Limit number of returned items', + 'type' => 'number', + 'defaultValue' => 20 + ) + )); + + public function collectData() { + $limit = $this->getInput('item_limit'); + + if ($limit < 1) { + $limit = 20; + } + + $html = getSimpleHTMLDOM(self::URI, array()) + or returnServerError('Could not request VieDeMerde.'); + + $quotes = $html->find('article.article-panel'); + if(sizeof($quotes) === 0) { + return; + } + + foreach($quotes as $quote) { + $item = array(); + $item['uri'] = self::URI . $quote->find('.article-contents a', 0)->href; + $titleContent = $quote->find('.article-contents a h2.classic-title', 0); + + if($titleContent) { + $item['title'] = html_entity_decode($titleContent->plaintext, ENT_QUOTES); + } else { + continue; + } + + $quote->find('.article-contents a h2.classic-title', 0)->outertext = ''; + $item['content'] = $quote->find('.article-contents a', 0)->innertext; + $item['author'] = $quote->find('.article-topbar', 0)->innertext; + $item['uid'] = hash('sha256', $item['title']); + + $this->items[] = $item; + + if (count($this->items) >= $limit) { + break; + } + } + } +}