Merge pull request #319 from LogMANOriginal/MondeDiploBridge

Monde diplo bridge
This commit is contained in:
Mitsu 2016-08-03 22:57:53 +02:00 committed by GitHub
commit 086dbd5002

View file

@ -2,59 +2,35 @@
class MondeDiploBridge extends BridgeAbstract{ class MondeDiploBridge extends BridgeAbstract{
public function loadMetadatas() { public function loadMetadatas() {
$this->maintainer = "Pitchoule"; $this->maintainer = "Pitchoule";
$this->name = "MondeDiplo"; $this->name = "MondeDiplo";
$this->uri = "http://www.monde-diplomatique.fr"; $this->uri = "http://www.monde-diplomatique.fr";
$this->description = "Returns most recent results from MondeDiplo."; $this->description = "Returns most recent results from MondeDiplo.";
$this->update = "2014-07-22"; $this->update = "2016-08-03";
} }
public function collectData(array $param){ public function collectData(array $param){
$link = 'http://www.monde-diplomatique.fr'; $html = $this->file_get_html($this->getURI()) or $this->returnError('Could not request MondeDiplo. for : ' . $link , 404);
$html = $this->file_get_html($link) or $this->returnError('Could not request MondeDiplo. for : ' . $link , 404);
foreach($html->find('div.laune') as $element) {
$item = new Item();
$item->uri = 'http://www.monde-diplomatique.fr'.$element->find('a', 0)->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;
}
$liste = $html->find('div.listes', 0); // First list foreach($html->find('div.unarticle') as $article) {
foreach ($liste->find('li') as $e) { $element = $article->parent();
$item = new Item();
$item = new Item(); $item->uri = $this->getURI() . $element->href;
$item->uri = 'http://www.monde-diplomatique.fr' . $e->find('a', 0)->href; $item->title = $element->find('h3', 0)->plaintext;
$item->title = $e->find('a', 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);
$item->content = $e->find('div.dates_auteurs', 0)->plaintext; $this->items[] = $item;
$this->items[] = $item; }
} }
foreach($html->find('div.liste ul li') as $element) { public function getName(){
if ($element->getAttribute('class') != 'intrapub') { return 'Monde Diplomatique';
$item = new Item(); }
$item->uri = 'http://www.monde-diplomatique.fr'.$element->find('a', 0)->href;
$item->title = $element->find('h3', 0)->plaintext;
$item->content = $element->find('div.dates_auteurs', 0)->plaintext . ' <br> ' . $element->find('div.intro', 0)->plaintext;
$this->items[] = $item;
}
}
}
public function getName(){ public function getURI(){
return 'Monde Diplomatique'; return 'http://www.monde-diplomatique.fr';
} }
public function getURI(){ public function getCacheDuration(){
return 'http://www.monde-diplomatique.fr'; return 21600; // 6 hours
} }
public function getCacheDuration(){
return 21600; // 6 hours
}
} }