From 79c536c1897b8d27f784b4bbcafdc97fb1c781a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20Mazi=C3=A8re?= Date: Mon, 29 Aug 2016 13:40:01 +0200 Subject: [PATCH] [MsnMondeBridge] code simplification MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pierre Mazière --- bridges/MsnMondeBridge.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/bridges/MsnMondeBridge.php b/bridges/MsnMondeBridge.php index 17a8a44d..5e481956 100644 --- a/bridges/MsnMondeBridge.php +++ b/bridges/MsnMondeBridge.php @@ -3,9 +3,13 @@ class MsnMondeBridge extends BridgeAbstract{ public $maintainer = "kranack"; 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 function getURI(){ + return $this->uri.'fr-fr/actualite/monde'; + } + private function MsnMondeExtractContent($url, &$item) { $html2 = $this->getSimpleHTMLDOM($url); $item['content'] = $html2->find('#content', 0)->find('article', 0)->find('section', 0)->plaintext; @@ -13,13 +17,13 @@ class MsnMondeBridge extends BridgeAbstract{ } 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; foreach($html->find('.smalla') as $article) { if($limit < 10) { $item = array(); $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->items[] = $item; $limit++;