forked from blallo/rss-bridge
[NiceMatinBridge] code simplification
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
3fb8c5b916
commit
57fd0255ff
1 changed files with 19 additions and 17 deletions
|
@ -9,11 +9,11 @@ class NiceMatinBridge extends BridgeAbstract{
|
||||||
private function NiceMatinExtractContent($url) {
|
private function NiceMatinExtractContent($url) {
|
||||||
$html = $this->getSimpleHTMLDOM($url);
|
$html = $this->getSimpleHTMLDOM($url);
|
||||||
if(!$html)
|
if(!$html)
|
||||||
$this->returnServerError('Could not acquire content from url: ' . $url . '!');
|
return 'Could not acquire content from url: ' . $url . '!';
|
||||||
|
|
||||||
$content = $html->find('article', 0);
|
$content = $html->find('article', 0);
|
||||||
if(!$content)
|
if(!$content)
|
||||||
$this->returnServerError('Could not find \'section\'!');
|
return 'Could not find \'section\'!';
|
||||||
|
|
||||||
$text = preg_replace('#<script(.*?)>(.*?)</script>#is', '', $content->innertext);
|
$text = preg_replace('#<script(.*?)>(.*?)</script>#is', '', $content->innertext);
|
||||||
$text = strip_tags($text, '<p><a><img>');
|
$text = strip_tags($text, '<p><a><img>');
|
||||||
|
@ -21,11 +21,14 @@ class NiceMatinBridge extends BridgeAbstract{
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
$html = $this->getSimpleHTMLDOM('http://www.nicematin.com/derniere-minute/rss') or $this->returnServerError('Could not request NiceMatin.');
|
$html = $this->getSimpleHTMLDOM($this->uri.'derniere-minute/rss')
|
||||||
|
or $this->returnServerError('Could not request NiceMatin.');
|
||||||
$limit = 0;
|
$limit = 0;
|
||||||
|
|
||||||
foreach($html->find('item') as $element) {
|
foreach($html->find('item') as $element) {
|
||||||
if($limit < 10) {
|
if($limit >= 10) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
// We need to fix the 'link' tag as simplehtmldom cannot parse it (just rename it and load back as dom)
|
// We need to fix the 'link' tag as simplehtmldom cannot parse it (just rename it and load back as dom)
|
||||||
$element_text = $element->outertext;
|
$element_text = $element->outertext;
|
||||||
$element_text = str_replace('<link>', '<url>', $element_text);
|
$element_text = str_replace('<link>', '<url>', $element_text);
|
||||||
|
@ -41,5 +44,4 @@ class NiceMatinBridge extends BridgeAbstract{
|
||||||
$limit++;
|
$limit++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue