2014-07-22 14:55:22 +02:00
|
|
|
<?php
|
|
|
|
class MondeDiploBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-04 10:47:21 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "Pitchoule";
|
|
|
|
$this->name = "MondeDiplo";
|
|
|
|
$this->uri = "http://www.monde-diplomatique.fr";
|
|
|
|
$this->description = "Returns most recent results from MondeDiplo.";
|
|
|
|
$this->update = "2014-07-22";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-07-22 14:55:22 +02:00
|
|
|
public function collectData(array $param){
|
|
|
|
$link = 'http://www.monde-diplomatique.fr';
|
2014-07-22 20:02:40 +02:00
|
|
|
|
2016-06-25 23:17:42 +02:00
|
|
|
$html = $this->file_get_html($link) or $this->returnError('Could not request MondeDiplo. for : ' . $link , 404);
|
2014-07-22 20:02:40 +02:00
|
|
|
|
|
|
|
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 ($liste->find('li') as $e) {
|
|
|
|
|
|
|
|
$item = new Item();
|
|
|
|
$item->uri = 'http://www.monde-diplomatique.fr' . $e->find('a', 0)->href;
|
|
|
|
$item->title = $e->find('a', 0)->plaintext;
|
|
|
|
$item->content = $e->find('div.dates_auteurs', 0)->plaintext;
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($html->find('div.liste ul li') as $element) {
|
|
|
|
if ($element->getAttribute('class') != 'intrapub') {
|
|
|
|
$item = new Item();
|
2014-07-22 14:55:22 +02:00
|
|
|
$item->uri = 'http://www.monde-diplomatique.fr'.$element->find('a', 0)->href;
|
|
|
|
$item->title = $element->find('h3', 0)->plaintext;
|
2014-07-22 20:02:40 +02:00
|
|
|
$item->content = $element->find('div.dates_auteurs', 0)->plaintext . ' <br> ' . $element->find('div.intro', 0)->plaintext;
|
2014-07-22 14:55:22 +02:00
|
|
|
$this->items[] = $item;
|
2014-07-22 20:02:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-22 14:55:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return 'Monde Diplomatique';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
|
|
|
return 'http://www.monde-diplomatique.fr';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 21600; // 6 hours
|
|
|
|
}
|
|
|
|
}
|