2015-03-31 10:47:17 +02:00
|
|
|
<?php
|
|
|
|
class PickyWallpapersBridge extends BridgeAbstract {
|
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
const MAINTAINER = 'nel50n';
|
|
|
|
const NAME = 'PickyWallpapers Bridge';
|
2019-10-16 21:34:28 +02:00
|
|
|
const URI = 'https://www.pickywallpapers.com/';
|
2016-09-25 17:04:28 +02:00
|
|
|
const CACHE_TIMEOUT = 43200; // 12h
|
2017-02-11 16:16:56 +01:00
|
|
|
const DESCRIPTION = 'Returns the latests wallpapers from PickyWallpapers';
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
const PARAMETERS = array( array(
|
|
|
|
'c' => array(
|
|
|
|
'name' => 'category',
|
|
|
|
'required' => true
|
|
|
|
),
|
|
|
|
's' => array(
|
|
|
|
'name' => 'subcategory'
|
|
|
|
),
|
|
|
|
'm' => array(
|
|
|
|
'name' => 'Max number of wallpapers',
|
|
|
|
'defaultValue' => 12,
|
|
|
|
'type' => 'number'
|
|
|
|
),
|
|
|
|
'r' => array(
|
|
|
|
'name' => 'resolution',
|
|
|
|
'exampleValue' => '1920x1200, 1680x1050,…',
|
|
|
|
'defaultValue' => '1920x1200',
|
|
|
|
'pattern' => '[0-9]{3,4}x[0-9]{3,4}'
|
|
|
|
)
|
|
|
|
));
|
2016-08-22 01:25:56 +02:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
public function collectData(){
|
|
|
|
$lastpage = 1;
|
|
|
|
$num = 0;
|
|
|
|
$max = $this->getInput('m');
|
|
|
|
$resolution = $this->getInput('r'); // Wide wallpaper default
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
for($page = 1; $page <= $lastpage; $page++) {
|
2017-02-11 16:16:56 +01:00
|
|
|
$html = getSimpleHTMLDOM($this->getURI() . '/page-' . $page . '/')
|
|
|
|
or returnServerError('No results for this query.');
|
2015-03-31 10:47:17 +02:00
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
if($page === 1) {
|
2017-02-11 16:16:56 +01:00
|
|
|
preg_match('/page-(\d+)\/$/', $html->find('.pages li a', -2)->href, $matches);
|
|
|
|
$lastpage = min($matches[1], ceil($max / 12));
|
|
|
|
}
|
2015-03-31 10:47:17 +02:00
|
|
|
|
2017-07-29 19:28:00 +02:00
|
|
|
foreach($html->find('.items li img') as $element) {
|
2017-02-11 16:16:56 +01:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = str_replace('www', 'wallpaper', self::URI)
|
|
|
|
. '/'
|
|
|
|
. $resolution
|
|
|
|
. '/'
|
|
|
|
. basename($element->src);
|
2015-03-31 10:47:17 +02:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
$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
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
$this->items[] = $item;
|
2015-03-31 10:47:17 +02:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
$num++;
|
|
|
|
if ($num >= $max)
|
|
|
|
break 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-31 10:47:17 +02:00
|
|
|
|
2017-02-11 16:16:56 +01:00
|
|
|
public function getURI(){
|
2017-07-29 19:28:00 +02:00
|
|
|
if(!is_null($this->getInput('s')) && !is_null($this->getInput('r')) && !is_null($this->getInput('c'))) {
|
2017-02-14 22:36:33 +01:00
|
|
|
$subcategory = $this->getInput('s');
|
|
|
|
$link = self::URI
|
|
|
|
. $this->getInput('r')
|
|
|
|
. '/'
|
|
|
|
. $this->getInput('c')
|
|
|
|
. '/'
|
|
|
|
. $subcategory;
|
|
|
|
|
|
|
|
return $link;
|
|
|
|
}
|
2016-08-29 20:41:15 +02:00
|
|
|
|
2017-02-14 22:36:33 +01:00
|
|
|
return parent::getURI();
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
2017-07-29 19:28:00 +02:00
|
|
|
if(!is_null($this->getInput('s'))) {
|
2017-02-14 22:20:55 +01:00
|
|
|
$subcategory = $this->getInput('s');
|
|
|
|
return 'PickyWallpapers - '
|
|
|
|
. $this->getInput('c')
|
|
|
|
. ($subcategory ? ' > ' . $subcategory : '')
|
|
|
|
. ' ['
|
|
|
|
. $this->getInput('r')
|
|
|
|
. ']';
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getName();
|
2017-02-11 16:16:56 +01:00
|
|
|
}
|
2015-03-31 10:47:17 +02:00
|
|
|
}
|