Rss-Bridge/bridges/MsnMondeBridge.php

33 lines
1.1 KiB
PHP
Raw Normal View History

<?php
class MsnMondeBridge extends BridgeAbstract{
2015-11-04 10:47:21 +01:00
public function loadMetadatas() {
$this->maintainer = "kranack";
$this->name = 'MSN Actu Monde';
$this->uri = 'http://www.msn.com/fr-fr/actualite/monde';
2015-11-04 10:47:21 +01:00
$this->description = "Returns the 10 newest posts from MSN Actualités (full text)";
$this->update = '2016-08-17';
2015-11-04 10:47:21 +01:00
}
private function MsnMondeExtractContent($url, &$item) {
$html2 = $this->file_get_html($url);
$item->content = $html2->find('#content', 0)->find('article', 0)->find('section', 0)->plaintext;
$item->timestamp = strtotime($html2->find('.authorinfo-txt', 0)->find('time', 0)->datetime);
}
2016-08-03 21:14:46 +02:00
public function collectData(array $param){
$html = $this->file_get_html($this->uri) or $this->returnServerError('Could not request MsnMonde.');
2016-08-03 21:14:46 +02:00
$limit = 0;
foreach($html->find('.smalla') as $article) {
if($limit < 10) {
$item = new \Item();
$item->title = utf8_decode($article->find('h4', 0)->innertext);
$item->uri = "http://www.msn.com" . utf8_decode($article->find('a', 0)->href);
$this->MsnMondeExtractContent($item->uri, $item);
$this->items[] = $item;
$limit++;
}
}
}
}