2014-05-26 19:45:10 +02:00
|
|
|
<?php
|
|
|
|
class MsnMondeBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "kranack";
|
|
|
|
public $name = 'MSN Actu Monde';
|
2016-08-29 13:40:01 +02:00
|
|
|
public $uri = 'http://www.msn.com/';
|
2016-08-27 21:03:26 +02:00
|
|
|
public $description = "Returns the 10 newest posts from MSN Actualités (full text)";
|
2015-11-04 10:47:21 +01:00
|
|
|
|
2016-08-29 13:40:01 +02:00
|
|
|
public function getURI(){
|
|
|
|
return $this->uri.'fr-fr/actualite/monde';
|
|
|
|
}
|
|
|
|
|
2016-08-06 16:00:56 +02:00
|
|
|
private function MsnMondeExtractContent($url, &$item) {
|
2016-08-21 19:48:23 +02:00
|
|
|
$html2 = $this->getSimpleHTMLDOM($url);
|
2016-08-22 18:55:59 +02:00
|
|
|
$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:12:43 +02:00
|
|
|
}
|
2014-05-26 19:45:10 +02:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2016-08-29 13:40:01 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($this->getURI()) 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) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['title'] = utf8_decode($article->find('h4', 0)->innertext);
|
2016-08-29 13:40:01 +02:00
|
|
|
$item['uri'] = $this->uri . utf8_decode($article->find('a', 0)->href);
|
2016-08-22 18:55:59 +02:00
|
|
|
$this->MsnMondeExtractContent($item['uri'], $item);
|
2016-08-03 21:14:46 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
$limit++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-26 19:45:10 +02:00
|
|
|
}
|