mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 18:15:28 +03:00
37cb4091d4
When fetching website contents, exceptions already raise on fetching error
29 lines
974 B
PHP
29 lines
974 B
PHP
<?php
|
|
class MondeDiploBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'Pitchoule';
|
|
const NAME = 'Monde Diplomatique';
|
|
const URI = 'https://www.monde-diplomatique.fr';
|
|
const CACHE_TIMEOUT = 21600; //6h
|
|
const DESCRIPTION = 'Returns most recent results from MondeDiplo.';
|
|
|
|
private function cleanText($text) {
|
|
return trim(str_replace(array(' ', ' '), ' ', $text));
|
|
}
|
|
|
|
public function collectData(){
|
|
$html = getSimpleHTMLDOM(self::URI);
|
|
|
|
foreach($html->find('div.unarticle') as $article) {
|
|
$element = $article->parent();
|
|
$title = $element->find('h3', 0)->plaintext;
|
|
$datesAuteurs = $element->find('div.dates_auteurs', 0)->plaintext;
|
|
$item = array();
|
|
$item['uri'] = urljoin(self::URI, $element->href);
|
|
$item['title'] = $this->cleanText($title) . ' - ' . $this->cleanText($datesAuteurs);
|
|
$item['content'] = $this->cleanText(str_replace(array($title, $datesAuteurs), '', $element->plaintext));
|
|
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
}
|