2015-04-08 14:25:00 +02:00
|
|
|
<?php
|
|
|
|
class HDWallpapersBridge extends BridgeAbstract {
|
2016-08-30 11:23:55 +02:00
|
|
|
const MAINTAINER = "nel50n";
|
|
|
|
const NAME = "HD Wallpapers Bridge";
|
|
|
|
const URI = "http://www.hdwallpapers.in/";
|
2016-09-25 17:04:28 +02:00
|
|
|
const CACHE_TIMEOUT = 43200; //12h
|
2016-08-30 11:23:55 +02:00
|
|
|
const DESCRIPTION = "Returns the latests wallpapers from HDWallpapers";
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-30 11:23:55 +02:00
|
|
|
const PARAMETERS = array( array(
|
2016-08-29 00:56:31 +02:00
|
|
|
'c'=>array(
|
|
|
|
'name'=>'category',
|
|
|
|
'defaultValue'=>'latest_wallpapers'
|
|
|
|
),
|
2016-08-27 21:03:26 +02:00
|
|
|
'm'=>array('name'=>'max number of wallpapers'),
|
|
|
|
'r'=>array(
|
2016-08-22 01:25:56 +02:00
|
|
|
'name'=>'resolution',
|
2016-08-29 00:56:31 +02:00
|
|
|
'defaultValue'=>'1920x1200',
|
2016-08-22 01:25:56 +02:00
|
|
|
'exampleValue'=>'1920x1200, 1680x1050,…'
|
2016-08-27 21:03:26 +02:00
|
|
|
)
|
|
|
|
));
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2015-04-08 14:25:00 +02:00
|
|
|
$category = $this->category;
|
|
|
|
if (strrpos($category, 'wallpapers') !== strlen($category)-strlen('wallpapers')) {
|
|
|
|
$category .= '-desktop-wallpapers';
|
|
|
|
}
|
|
|
|
|
|
|
|
$num = 0;
|
2016-08-28 01:25:33 +02:00
|
|
|
$max = $this->getInput('m') ?: 14;
|
2015-04-08 14:25:00 +02:00
|
|
|
$lastpage = 1;
|
|
|
|
|
|
|
|
for ($page = 1; $page <= $lastpage; $page++) {
|
2016-08-30 11:23:55 +02:00
|
|
|
$link = self::URI.'/'.$category.'/page/'.$page;
|
2016-09-25 23:22:33 +02:00
|
|
|
$html = getSimpleHTMLDOM($link) or returnServerError('No results for this query.');
|
2015-04-08 14:25:00 +02:00
|
|
|
|
|
|
|
if ($page === 1) {
|
|
|
|
preg_match('/page\/(\d+)$/', $html->find('.pagination a', -2)->href, $matches);
|
|
|
|
$lastpage = min($matches[1], ceil($max/14));
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($html->find('.wallpapers .wall a') as $element) {
|
|
|
|
$thumbnail = $element->find('img', 0);
|
|
|
|
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
2015-04-08 14:25:00 +02:00
|
|
|
// http://www.hdwallpapers.in/download/yosemite_reflections-1680x1050.jpg
|
2016-08-30 11:23:55 +02:00
|
|
|
$item['uri'] = self::URI.'/download'.str_replace('wallpapers.html', $this->getInput('r').'.jpg', $element->href);
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['timestamp'] = time();
|
|
|
|
$item['title'] = $element->find('p', 0)->text();
|
2016-08-30 11:23:55 +02:00
|
|
|
$item['content'] = $item['title'].'<br><a href="'.$item['uri'].'"><img src="'.self::URI.$thumbnail->src.'" /></a>';
|
2015-04-08 14:25:00 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
|
|
|
|
$num++;
|
|
|
|
if ($num >= $max)
|
|
|
|
break 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
2016-08-29 00:56:31 +02:00
|
|
|
return 'HDWallpapers - '.str_replace(['__', '_'], [' & ', ' '], $this->getInput('c')).' ['.$this->getInput('r').']';
|
2015-04-08 14:25:00 +02:00
|
|
|
}
|
|
|
|
}
|