Rss-Bridge/bridges/ZoneTelechargementBridge.php
Pierre Mazière 1b3c8a8aeb [core + bridges] add BridgeAbstract::$inputs and BridgeAbstract::getInput()
Inputs are not stored in BridgeAbstract::$parameters anymore to separate
static data from dynamic data.
The getInput method allows for more readable code.

Also fix an "undefined index 'global'" notice

Probability of breaking bridges: high !

Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
2016-08-28 13:05:03 +02:00

39 lines
1.5 KiB
PHP

<?php
class ZoneTelechargementBridge extends BridgeAbstract {
public $maintainer = 'ORelio';
public $name = 'Zone Telechargement Bridge';
public $uri = 'https://www.zone-telechargement.com/';
public $description = 'RSS proxy returning the newest releases.<br />You may specify a category found in RSS URLs, else main feed is selected.';
public $parameters = array( array(
'category'=>array('name'=>'Category')
));
public function collectData(){
function StripCDATA($string) {
$string = str_replace('<![CDATA[', '', $string);
$string = str_replace(']]>', '', $string);
return $string;
}
$category = '/';
if (!empty($this->getInput('category')))
$category = '/'.$this->getInput('category').'/';
$url = $this->getURI().$category.'rss.xml';
$html = $this->getSimpleHTMLDOM($url) or $this->returnServerError('Could not request Zone Telechargement: '.$url);
foreach($html->find('item') as $element) {
$item = array();
$item['title'] = $element->find('title', 0)->plaintext;
$item['uri'] = str_replace('http://', 'https://', $element->find('guid', 0)->plaintext);
$item['timestamp'] = strtotime($element->find('pubDate', 0)->plaintext);
$item['content'] = StripCDATA($element->find('description', 0)->innertext);
$this->items[] = $item;
$limit++;
}
}
}