1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-27 10:04:53 +02:00

[bridges] Change to extend from FeedExpander

This commit is contained in:
logmanoriginal
2016-09-05 18:43:56 +02:00
parent 11be7ccb60
commit 179e73fb80
12 changed files with 262 additions and 437 deletions

View File

@@ -1,13 +1,23 @@
<?php
class NiceMatinBridge extends BridgeAbstract{
class NiceMatinBridge extends FeedExpander {
const MAINTAINER = "pit-fgfjiudghdf";
const NAME = "NiceMatin";
const URI = "http://www.nicematin.com/";
const DESCRIPTION = "Returns the 10 newest posts from NiceMatin (full text)";
public function collectData(){
$this->collectExpandableDatas(self::URI . 'derniere-minute/rss');
}
protected function parseItem($newsItem){
$item = $this->parseRSS_2_0_Item($newsItem);
$item['content'] = $this->NiceMatinExtractContent($item['uri']);
return $item;
}
private function NiceMatinExtractContent($url) {
$html = $this->getSimpleHTMLDOM($url);
$html = $this->get_cached($url);
if(!$html)
return 'Could not acquire content from url: ' . $url . '!';
@@ -19,29 +29,4 @@ class NiceMatinBridge extends BridgeAbstract{
$text = strip_tags($text, '<p><a><img>');
return $text;
}
public function collectData(){
$html = $this->getSimpleHTMLDOM(self::URI.'derniere-minute/rss')
or $this->returnServerError('Could not request NiceMatin.');
$limit = 0;
foreach($html->find('item') as $element) {
if($limit >= 10) {
break;
}
// 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 = str_replace('<link>', '<url>', $element_text);
$element_text = str_replace('</link>', '</url>', $element_text);
$element = str_get_html($element_text);
$item = array();
$item['title'] = $element->find('title', 0)->innertext;
$item['uri'] = $element->find('url', 0)->innertext;
$item['timestamp'] = strtotime($element->find('pubDate', 0)->plaintext);
$item['content'] = $this->NiceMatinExtractContent($item['uri']);
$this->items[] = $item;
$limit++;
}
}
}