forked from blallo/rss-bridge
1b3c8a8aeb
Inputs are not stored in BridgeAbstract::$parameters anymore to separate static data from dynamic data. The getInput method allows for more readable code. Also fix an "undefined index 'global'" notice Probability of breaking bridges: high ! Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
46 lines
1.5 KiB
PHP
46 lines
1.5 KiB
PHP
<?php
|
|
class GelbooruBridge extends BridgeAbstract{
|
|
|
|
public $maintainer = "mitsukarenai";
|
|
public $name = "Gelbooru";
|
|
public $uri = "http://gelbooru.com/";
|
|
public $description = "Returns images from given page";
|
|
|
|
public $parameters = array( array(
|
|
'p'=>array(
|
|
'name'=>'page',
|
|
'type'=>'number'
|
|
),
|
|
't'=>array('name'=>'tags')
|
|
));
|
|
|
|
public function collectData(){
|
|
$page = 0;
|
|
if (isset($this->getInput('p'))) {
|
|
$page = (int)preg_replace("/[^0-9]/",'', $this->getInput('p'));
|
|
$page = $page - 1;
|
|
$page = $page * 63;
|
|
}
|
|
if (isset($this->getInput('t'))) {
|
|
$tags = urlencode($this->getInput('t'));
|
|
}
|
|
$html = $this->getSimpleHTMLDOM("http://gelbooru.com/index.php?page=post&s=list&tags=$tags&pid=$page") or $this->returnServerError('Could not request Gelbooru.');
|
|
|
|
|
|
foreach($html->find('div[class=content] span') as $element) {
|
|
$item = array();
|
|
$item['uri'] = 'http://gelbooru.com/'.$element->find('a', 0)->href;
|
|
$item['postid'] = (int)preg_replace("/[^0-9]/",'', $element->getAttribute('id'));
|
|
$item['timestamp'] = time();
|
|
$thumbnailUri = $element->find('img', 0)->src;
|
|
$item['tags'] = $element->find('img', 0)->getAttribute('alt');
|
|
$item['title'] = 'Gelbooru | '.$item['postid'];
|
|
$item['content'] = '<a href="' . $item['uri'] . '"><img src="' . $thumbnailUri . '" /></a><br>Tags: '.$item['tags'];
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
|
|
public function getCacheDuration(){
|
|
return 1800; // 30 minutes
|
|
}
|
|
}
|