forked from blallo/rss-bridge
3c0d13c1bb
instead of BridgeAbstract::file_get_html Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
28 lines
985 B
PHP
28 lines
985 B
PHP
<?php
|
|
class MondeDiploBridge extends BridgeAbstract{
|
|
|
|
public function loadMetadatas() {
|
|
$this->maintainer = "Pitchoule";
|
|
$this->name = 'Monde Diplomatique';
|
|
$this->uri = 'http://www.monde-diplomatique.fr';
|
|
$this->description = "Returns most recent results from MondeDiplo.";
|
|
$this->update = '2016-08-17';
|
|
}
|
|
|
|
public function collectData(array $param){
|
|
$html = $this->getSimpleHTMLDOM($this->uri) or $this->returnServerError('Could not request MondeDiplo. for : ' . $link);
|
|
|
|
foreach($html->find('div.unarticle') as $article) {
|
|
$element = $article->parent();
|
|
$item = new Item();
|
|
$item->uri = $this->uri . $element->href;
|
|
$item->title = $element->find('h3', 0)->plaintext;
|
|
$item->content = $element->find('div.dates_auteurs', 0)->plaintext . '<br>' . strstr($element->find('div', 0)->plaintext, $element->find('div.dates_auteurs', 0)->plaintext, true);
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
|
|
public function getCacheDuration(){
|
|
return 21600; // 6 hours
|
|
}
|
|
}
|