Rss-Bridge/bridges/MondeDiploBridge.php

28 lines
944 B
PHP
Raw Normal View History

<?php
class MondeDiploBridge extends BridgeAbstract{
2015-11-04 10:47:21 +01:00
public function loadMetadatas() {
$this->maintainer = "Pitchoule";
$this->name = 'Monde Diplomatique';
$this->uri = 'http://www.monde-diplomatique.fr';
2015-11-04 10:47:21 +01:00
$this->description = "Returns most recent results from MondeDiplo.";
}
public function collectData(){
$html = $this->getSimpleHTMLDOM($this->uri) or $this->returnServerError('Could not request MondeDiplo. for : ' . $link);
2016-08-03 21:08:35 +02:00
foreach($html->find('div.unarticle') as $article) {
$element = $article->parent();
$item = array();
$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);
2016-08-03 21:08:35 +02:00
$this->items[] = $item;
}
}
2016-08-03 21:08:35 +02:00
public function getCacheDuration(){
return 21600; // 6 hours
}
}