diff --git a/bridges/MsnMondeBridge.php b/bridges/MsnMondeBridge.php new file mode 100644 index 00000000..bff64fec --- /dev/null +++ b/bridges/MsnMondeBridge.php @@ -0,0 +1,51 @@ +find('div[id=m6_diaponews_placeholder]', 0)->outertext=''; //Supression de la partie "et aussi" + $text = $html2->find('div[class=svsubtorabs]', 0)->innertext; // ajout du resume + $text .= $html2->find('div[id=page1]', 0)->innertext; // article + $text = preg_replace('/

Lire aussi.*/i','',$text); //Supression de la partie "Lire aussi" + + return $text; + } + + $html = file_get_html('http://news.fr.msn.com/m6-actualite/RSS/News_RSS_Monde.aspx') or $this->returnError('Could not request MsnMonde.', 404); + $limit = 0; + + foreach($html->find('item') as $element) { + if($limit < 10) { + $item = new \Item(); + $item->title = $element->find('title', 0)->innertext; + $item->uri = $element->find('guid', 0)->plaintext; + $item->timestamp = strtotime($element->find('pubDate', 0)->plaintext); + $item->content = MsnMondeExtractContent($item->uri); + $this->items[] = $item; + $limit++; + } + } + + } + + public function getName(){ + return 'MsnMonde'; + } + + public function getURI(){ + return 'http://news.fr.msn.com'; + } + + public function getCacheDuration(){ + return 3600; // 1 hour + } +}