forked from blallo/rss-bridge
[MsnMondeBridge] code simplification
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
a52a5b881a
commit
79c536c189
1 changed files with 7 additions and 3 deletions
|
@ -3,9 +3,13 @@ class MsnMondeBridge extends BridgeAbstract{
|
||||||
|
|
||||||
public $maintainer = "kranack";
|
public $maintainer = "kranack";
|
||||||
public $name = 'MSN Actu Monde';
|
public $name = 'MSN Actu Monde';
|
||||||
public $uri = 'http://www.msn.com/fr-fr/actualite/monde';
|
public $uri = 'http://www.msn.com/';
|
||||||
public $description = "Returns the 10 newest posts from MSN Actualités (full text)";
|
public $description = "Returns the 10 newest posts from MSN Actualités (full text)";
|
||||||
|
|
||||||
|
public function getURI(){
|
||||||
|
return $this->uri.'fr-fr/actualite/monde';
|
||||||
|
}
|
||||||
|
|
||||||
private function MsnMondeExtractContent($url, &$item) {
|
private function MsnMondeExtractContent($url, &$item) {
|
||||||
$html2 = $this->getSimpleHTMLDOM($url);
|
$html2 = $this->getSimpleHTMLDOM($url);
|
||||||
$item['content'] = $html2->find('#content', 0)->find('article', 0)->find('section', 0)->plaintext;
|
$item['content'] = $html2->find('#content', 0)->find('article', 0)->find('section', 0)->plaintext;
|
||||||
|
@ -13,13 +17,13 @@ class MsnMondeBridge extends BridgeAbstract{
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
$html = $this->getSimpleHTMLDOM($this->uri) or $this->returnServerError('Could not request MsnMonde.');
|
$html = $this->getSimpleHTMLDOM($this->getURI()) or $this->returnServerError('Could not request MsnMonde.');
|
||||||
$limit = 0;
|
$limit = 0;
|
||||||
foreach($html->find('.smalla') as $article) {
|
foreach($html->find('.smalla') as $article) {
|
||||||
if($limit < 10) {
|
if($limit < 10) {
|
||||||
$item = array();
|
$item = array();
|
||||||
$item['title'] = utf8_decode($article->find('h4', 0)->innertext);
|
$item['title'] = utf8_decode($article->find('h4', 0)->innertext);
|
||||||
$item['uri'] = "http://www.msn.com" . utf8_decode($article->find('a', 0)->href);
|
$item['uri'] = $this->uri . utf8_decode($article->find('a', 0)->href);
|
||||||
$this->MsnMondeExtractContent($item['uri'], $item);
|
$this->MsnMondeExtractContent($item['uri'], $item);
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
$limit++;
|
$limit++;
|
||||||
|
|
Loading…
Reference in a new issue