2015-03-31 10:47:17 +02:00
|
|
|
<?php
|
|
|
|
class PickyWallpapersBridge extends BridgeAbstract {
|
|
|
|
|
|
|
|
private $category;
|
|
|
|
private $subcategory;
|
|
|
|
private $resolution;
|
|
|
|
|
2015-11-05 16:50:18 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "nel50n";
|
|
|
|
$this->name = "PickyWallpapers Bridge";
|
|
|
|
$this->uri = "http://www.pickywallpapers.com/";
|
|
|
|
$this->description = "Returns the latests wallpapers from PickyWallpapers";
|
|
|
|
|
2016-08-22 01:25:56 +02:00
|
|
|
$this->parameters[] = array(
|
|
|
|
'c'=>array('name'=>'category'),
|
|
|
|
's'=>array('name'=>'subcategory'),
|
|
|
|
'm'=>array(
|
|
|
|
'name'=>'Max number of wallpapers',
|
|
|
|
'type'=>'number'
|
|
|
|
),
|
|
|
|
'r'=>array(
|
|
|
|
'name'=>'resolution',
|
|
|
|
'exampleValue'=>'1920x1200, 1680x1050,…',
|
|
|
|
'pattern'=>'[0-9]{3,4}x[0-9]{3,4}'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2015-11-05 16:50:18 +01:00
|
|
|
}
|
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
|
|
|
$param=$this->parameters[$this->queriedContext];
|
2015-03-31 10:47:17 +02:00
|
|
|
$html = '';
|
2016-08-25 01:24:53 +02:00
|
|
|
if (!isset($param['c']['value'])) {
|
2016-08-17 14:45:08 +02:00
|
|
|
$this->returnClientError('You must specify at least a category (?c=...).');
|
2015-03-31 10:47:17 +02:00
|
|
|
} else {
|
|
|
|
$baseUri = 'http://www.pickywallpapers.com';
|
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
$this->category = $param['c']['value'];
|
|
|
|
$this->subcategory = $param['s']['value'] ?: '';
|
|
|
|
$this->resolution = $param['r']['value'] ?: '1920x1200'; // Wide wallpaper default
|
2015-03-31 10:47:17 +02:00
|
|
|
|
|
|
|
$num = 0;
|
2016-08-25 01:24:53 +02:00
|
|
|
$max = $param['m']['value'] ?: 12;
|
2015-03-31 10:47:17 +02:00
|
|
|
$lastpage = 1;
|
|
|
|
|
|
|
|
for ($page = 1; $page <= $lastpage; $page++) {
|
|
|
|
$link = $baseUri.'/'.$this->resolution.'/'.$this->category.'/'.(!empty($this->subcategory)?$this->subcategory.'/':'').'page-'.$page.'/';
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('No results for this query.');
|
2015-03-31 10:47:17 +02:00
|
|
|
|
|
|
|
if ($page === 1) {
|
|
|
|
preg_match('/page-(\d+)\/$/', $html->find('.pages li a', -2)->href, $matches);
|
|
|
|
$lastpage = min($matches[1], ceil($max/12));
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($html->find('.items li img') as $element) {
|
|
|
|
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = str_replace('www', 'wallpaper', $baseUri).'/'.$this->resolution.'/'.basename($element->src);
|
|
|
|
$item['timestamp'] = time();
|
|
|
|
$item['title'] = $element->alt;
|
|
|
|
$item['content'] = $item['title'].'<br><a href="'.$item['uri'].'">'.$element.'</a>';
|
2015-03-31 10:47:17 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
|
|
|
|
$num++;
|
|
|
|
if ($num >= $max)
|
|
|
|
break 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return 'PickyWallpapers - '.$this->category.(!empty($this->subcategory) ? ' > '.$this->subcategory : '').' ['.$this->resolution.']';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 43200; // 12 hours
|
|
|
|
}
|
|
|
|
}
|