[VieDeMerdeBridge] Add new bridge for quotes from Vie de Merde (#1313)

* Add new bridge for quotes from Vie de Merde
This commit is contained in:
floviolleau 2019-10-03 22:36:08 +02:00 committed by Lyra
parent b4581418d4
commit b0884e9158
1 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,56 @@
<?php
class VieDeMerdeBridge extends BridgeAbstract {
const MAINTAINER = 'floviolleau';
const NAME = 'VieDeMerde Bridge';
const URI = 'https://viedemerde.fr';
const DESCRIPTION = 'Returns latest quotes from VieDeMerde.';
const CACHE_TIMEOUT = 7200;
const PARAMETERS = array(array(
'item_limit' => 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;
}
}
}
}