2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
|
|
|
class TbibBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "mitsukarenai";
|
|
|
|
public $name = "Tbib";
|
|
|
|
public $uri = "http://tbib.org/";
|
|
|
|
public $description = "Returns images from given page";
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $parameters = array( array(
|
|
|
|
'p'=>array(
|
2016-08-22 01:25:56 +02:00
|
|
|
'name'=>'page',
|
|
|
|
'type'=>'number'
|
2016-08-27 21:03:26 +02:00
|
|
|
),
|
|
|
|
't'=>array('name'=>'tags')
|
|
|
|
));
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2014-05-26 00:30:46 +02:00
|
|
|
$page = 0;$tags='';
|
2016-08-28 20:38:01 +02:00
|
|
|
if ($this->getInput('p')) {
|
2016-08-28 01:25:33 +02:00
|
|
|
$page = (int)preg_replace("/[^0-9]/",'', $this->getInput('p'));
|
2014-05-26 00:30:46 +02:00
|
|
|
$page = $page - 1;
|
|
|
|
$page = $page * 50;
|
|
|
|
}
|
2016-08-28 20:38:01 +02:00
|
|
|
if ($this->getInput('t')) {
|
2016-08-28 01:25:33 +02:00
|
|
|
$tags = urlencode($this->getInput('t'));
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM("http://tbib.org/index.php?page=post&s=list&tags=$tags&pid=$page") or $this->returnServerError('Could not request Tbib.');
|
2014-05-26 00:30:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
foreach($html->find('div[class=content] span') as $element) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = 'http://tbib.org/'.$element->find('a', 0)->href;
|
|
|
|
$item['postid'] = (int)preg_replace("/[^0-9]/",'', $element->getAttribute('id'));
|
|
|
|
$item['timestamp'] = time();
|
2016-08-09 15:50:25 +02:00
|
|
|
$thumbnailUri = $element->find('img', 0)->src;
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['tags'] = $element->find('img', 0)->getAttribute('alt');
|
|
|
|
$item['title'] = 'Tbib | '.$item['postid'];
|
|
|
|
$item['content'] = '<a href="' . $item['uri'] . '"><img src="' . $thumbnailUri . '" /></a><br>Tags: '.$item['tags'];
|
2016-07-08 19:06:35 +02:00
|
|
|
$this->items[] = $item;
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 1800; // 30 minutes
|
|
|
|
}
|
|
|
|
}
|