[MondeDiplo] Switched to HTTPS + Title and content updated (#1714)
This commit is contained in:
parent
94576c3053
commit
3b36c413e5
1 changed files with 9 additions and 5 deletions
|
@ -3,22 +3,26 @@ class MondeDiploBridge extends BridgeAbstract {
|
||||||
|
|
||||||
const MAINTAINER = 'Pitchoule';
|
const MAINTAINER = 'Pitchoule';
|
||||||
const NAME = 'Monde Diplomatique';
|
const NAME = 'Monde Diplomatique';
|
||||||
const URI = 'http://www.monde-diplomatique.fr/';
|
const URI = 'https://www.monde-diplomatique.fr';
|
||||||
const CACHE_TIMEOUT = 21600; //6h
|
const CACHE_TIMEOUT = 21600; //6h
|
||||||
const DESCRIPTION = 'Returns most recent results from MondeDiplo.';
|
const DESCRIPTION = 'Returns most recent results from MondeDiplo.';
|
||||||
|
|
||||||
|
private function cleanText($text) {
|
||||||
|
return trim(str_replace([' ', ' '], ' ', $text));
|
||||||
|
}
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
$html = getSimpleHTMLDOM(self::URI)
|
$html = getSimpleHTMLDOM(self::URI)
|
||||||
or returnServerError('Could not request MondeDiplo. for : ' . self::URI);
|
or returnServerError('Could not request MondeDiplo. for : ' . self::URI);
|
||||||
|
|
||||||
foreach($html->find('div.unarticle') as $article) {
|
foreach($html->find('div.unarticle') as $article) {
|
||||||
$element = $article->parent();
|
$element = $article->parent();
|
||||||
|
$title = $element->find('h3', 0)->plaintext;
|
||||||
|
$datesAuteurs = $element->find('div.dates_auteurs', 0)->plaintext;
|
||||||
$item = array();
|
$item = array();
|
||||||
$item['uri'] = self::URI . $element->href;
|
$item['uri'] = self::URI . $element->href;
|
||||||
$item['title'] = $element->find('h3', 0)->plaintext;
|
$item['title'] = $this->cleanText($title) . ' - ' . $this->cleanText($datesAuteurs);
|
||||||
$item['content'] = $element->find('div.dates_auteurs', 0)->plaintext
|
$item['content'] = $this->cleanText(str_replace([$title, $datesAuteurs], '', $element->plaintext));
|
||||||
. '<br>'
|
|
||||||
. strstr($element->find('div', 0)->plaintext, $element->find('div.dates_auteurs', 0)->plaintext, true);
|
|
||||||
|
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue