Rss-Bridge/bridges/SuperbWallpapersBridge.php
Pierre Mazière 9a0da733ef [bridges] use constants instead of variable members
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
2016-09-01 23:15:51 +02:00

70 lines
2.2 KiB
PHP

<?php
class SuperbWallpapersBridge extends BridgeAbstract {
const MAINTAINER = "nel50n";
const NAME = "Superb Wallpapers Bridge";
const URI = "http://www.superbwallpapers.com/";
const DESCRIPTION = "Returns the latests wallpapers from SuperbWallpapers";
const PARAMETERS = array( array(
'c'=>array(
'name'=>'category',
'required'=>true
),
'm'=>array(
'name'=>'Max number of wallpapers',
'type'=>'number'
),
'r'=>array(
'name'=>'resolution',
'exampleValue'=>'1920x1200, 1680x1050,…',
'defaultValue'=>'1920x1200'
)
));
public function collectData(){
$category = $this->getInput('c');
$resolution = $this->getInput('r'); // Wide wallpaper default
$num = 0;
$max = $this->getInput('m') ?: 36;
$lastpage = 1;
// Get last page number
$link = self::URI.'/'.$category.'/9999.html';
$html = $this->getSimpleHTMLDOM($link)
or $this->returnServerError('Could not load '.$link);
$lastpage = min($html->find('.paging .cpage', 0)->innertext(), ceil($max/36));
for ($page = 1; $page <= $lastpage; $page++) {
$link = self::URI.'/'.$category.'/'.$page.'.html';
$html = $this->getSimpleHTMLDOM($link)
or $this->returnServerError('No results for this query.');
foreach($html->find('.wpl .i a') as $element) {
$thumbnail = $element->find('img', 0);
$item = array();
$item['uri'] = str_replace('200x125', $this->resolution, $thumbnail->src);
$item['timestamp'] = time();
$item['title'] = $element->title;
$item['content'] = $item['title'].'<br><a href="'.$item['uri'].'">'.$thumbnail.'</a>';
$this->items[] = $item;
$num++;
if ($num >= $max)
break 2;
}
}
}
public function getName(){
return self::NAME .'- '.$this->getInput('c').' ['.$this->getInput('r').']';
}
public function getCacheDuration(){
return 43200; // 12 hours
}
}