[SuperbWallpapersBridge] code simplification
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
0b482283cb
commit
1f72a34b42
1 changed files with 16 additions and 15 deletions
|
@ -1,45 +1,46 @@
|
||||||
<?php
|
<?php
|
||||||
class SuperbWallpapersBridge extends BridgeAbstract {
|
class SuperbWallpapersBridge extends BridgeAbstract {
|
||||||
|
|
||||||
private $category;
|
|
||||||
private $resolution;
|
|
||||||
|
|
||||||
public $maintainer = "nel50n";
|
public $maintainer = "nel50n";
|
||||||
public $name = "Superb Wallpapers Bridge";
|
public $name = "Superb Wallpapers Bridge";
|
||||||
public $uri = "http://www.superbwallpapers.com/";
|
public $uri = "http://www.superbwallpapers.com/";
|
||||||
public $description = "Returns the latests wallpapers from SuperbWallpapers";
|
public $description = "Returns the latests wallpapers from SuperbWallpapers";
|
||||||
|
|
||||||
public $parameters = array( array(
|
public $parameters = array( array(
|
||||||
'c'=>array('name'=>'category'),
|
'c'=>array(
|
||||||
|
'name'=>'category',
|
||||||
|
'required'=>true
|
||||||
|
),
|
||||||
'm'=>array(
|
'm'=>array(
|
||||||
'name'=>'Max number of wallpapers',
|
'name'=>'Max number of wallpapers',
|
||||||
'type'=>'number'
|
'type'=>'number'
|
||||||
),
|
),
|
||||||
'r'=>array(
|
'r'=>array(
|
||||||
'name'=>'resolution',
|
'name'=>'resolution',
|
||||||
'exampleValue'=>'1920x1200, 1680x1050,…'
|
'exampleValue'=>'1920x1200, 1680x1050,…',
|
||||||
|
'defaultValue'=>'1920x1200'
|
||||||
)
|
)
|
||||||
));
|
));
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
$html = '';
|
$category = $this->getInput('c');
|
||||||
$baseUri = 'http://www.superbwallpapers.com';
|
$resolution = $this->getInput('r'); // Wide wallpaper default
|
||||||
|
|
||||||
$this->category = $this->getInput('c') ?: ''; // All default
|
|
||||||
$this->resolution = $this->getInput('r') ?: '1920x1200'; // Wide wallpaper default
|
|
||||||
|
|
||||||
$num = 0;
|
$num = 0;
|
||||||
$max = $this->getInput('m') ?: 36;
|
$max = $this->getInput('m') ?: 36;
|
||||||
$lastpage = 1;
|
$lastpage = 1;
|
||||||
|
|
||||||
// Get last page number
|
// Get last page number
|
||||||
$link = $baseUri.'/'.$this->category.'/9999.html';
|
$link = $this->uri.'/'.$category.'/9999.html';
|
||||||
$html = $this->getSimpleHTMLDOM($link);
|
$html = $this->getSimpleHTMLDOM($link)
|
||||||
|
or $this->returnServerError('Could not load '.$link);
|
||||||
|
|
||||||
$lastpage = min($html->find('.paging .cpage', 0)->innertext(), ceil($max/36));
|
$lastpage = min($html->find('.paging .cpage', 0)->innertext(), ceil($max/36));
|
||||||
|
|
||||||
for ($page = 1; $page <= $lastpage; $page++) {
|
for ($page = 1; $page <= $lastpage; $page++) {
|
||||||
$link = $baseUri.'/'.$this->category.'/'.$page.'.html';
|
$link = $this->uri.'/'.$category.'/'.$page.'.html';
|
||||||
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('No results for this query.');
|
$html = $this->getSimpleHTMLDOM($link)
|
||||||
|
or $this->returnServerError('No results for this query.');
|
||||||
|
|
||||||
foreach($html->find('.wpl .i a') as $element) {
|
foreach($html->find('.wpl .i a') as $element) {
|
||||||
$thumbnail = $element->find('img', 0);
|
$thumbnail = $element->find('img', 0);
|
||||||
|
@ -59,7 +60,7 @@ class SuperbWallpapersBridge extends BridgeAbstract {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getName(){
|
public function getName(){
|
||||||
return 'HDWallpapers - '.$this->category.' ['.$this->resolution.']';
|
return $this->name .'- '.$this->getInput('c').' ['.$this->getInput('r').']';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCacheDuration(){
|
public function getCacheDuration(){
|
||||||
|
|
Loading…
Reference in a new issue