2015-04-08 14:25:14 +02:00
|
|
|
<?php
|
|
|
|
class SuperbWallpapersBridge extends BridgeAbstract {
|
|
|
|
|
|
|
|
private $category;
|
|
|
|
private $resolution;
|
|
|
|
|
2015-11-05 16:50:18 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "nel50n";
|
|
|
|
$this->name = "Superb Wallpapers Bridge";
|
|
|
|
$this->uri = "http://www.superbwallpapers.com/";
|
|
|
|
$this->description = "Returns the latests wallpapers from SuperbWallpapers";
|
|
|
|
|
2016-08-22 01:25:56 +02:00
|
|
|
$this->parameters[] = array(
|
|
|
|
'c'=>array('name'=>'category'),
|
|
|
|
'm'=>array(
|
|
|
|
'name'=>'Max number of wallpapers',
|
|
|
|
'type'=>'number'
|
|
|
|
),
|
|
|
|
'r'=>array(
|
|
|
|
'name'=>'resolution',
|
|
|
|
'exampleValue'=>'1920x1200, 1680x1050,…'
|
|
|
|
)
|
|
|
|
);
|
2015-11-05 16:50:18 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-08 14:25:14 +02:00
|
|
|
public function collectData(array $param){
|
|
|
|
$html = '';
|
|
|
|
$baseUri = 'http://www.superbwallpapers.com';
|
|
|
|
|
|
|
|
$this->category = $param['c'] ?: ''; // All default
|
|
|
|
$this->resolution = $param['r'] ?: '1920x1200'; // Wide wallpaper default
|
|
|
|
|
|
|
|
$num = 0;
|
|
|
|
$max = $param['m'] ?: 36;
|
|
|
|
$lastpage = 1;
|
|
|
|
|
|
|
|
// Get last page number
|
|
|
|
$link = $baseUri.'/'.$this->category.'/9999.html';
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($link);
|
2015-04-08 14:25:14 +02:00
|
|
|
$lastpage = min($html->find('.paging .cpage', 0)->innertext(), ceil($max/36));
|
|
|
|
|
|
|
|
for ($page = 1; $page <= $lastpage; $page++) {
|
|
|
|
$link = $baseUri.'/'.$this->category.'/'.$page.'.html';
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('No results for this query.');
|
2015-04-08 14:25:14 +02:00
|
|
|
|
|
|
|
foreach($html->find('.wpl .i a') as $element) {
|
|
|
|
$thumbnail = $element->find('img', 0);
|
|
|
|
|
2016-08-22 18:55:59 +02:00
|
|
|
$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>';
|
2015-04-08 14:25:14 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
|
|
|
|
$num++;
|
|
|
|
if ($num >= $max)
|
|
|
|
break 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return 'HDWallpapers - '.$this->category.' ['.$this->resolution.']';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 43200; // 12 hours
|
|
|
|
}
|
|
|
|
}
|