2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
|
|
|
class DollbooruBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-05 16:50:18 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "mitsukarenai";
|
|
|
|
$this->name = "Dollbooru";
|
|
|
|
$this->uri = "http://dollbooru.org/";
|
|
|
|
$this->description = "Returns images from given page";
|
|
|
|
|
|
|
|
|
2016-08-22 01:25:56 +02:00
|
|
|
$this->parameters[] = array(
|
|
|
|
'p'=>array(
|
|
|
|
'name'=>'page',
|
|
|
|
'type'=>'number'
|
|
|
|
),
|
|
|
|
't'=>array('name'=>'tags')
|
|
|
|
);
|
2015-11-05 16:50:18 +01:00
|
|
|
}
|
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
public function collectData(array $param){
|
|
|
|
$page = 0;$tags='';
|
2016-07-08 19:06:35 +02:00
|
|
|
if (isset($param['p'])) {
|
|
|
|
$page = (int)preg_replace("/[^0-9]/",'', $param['p']);
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
if (isset($param['t'])) {
|
|
|
|
$tags = urlencode($param['t']);
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM("http://dollbooru.org/post/list/$tags/$page") or $this->returnServerError('Could not request Dollbooru.');
|
2014-05-26 00:30:46 +02:00
|
|
|
|
|
|
|
|
2015-01-20 19:06:51 +01:00
|
|
|
foreach($html->find('div[class=shm-image-list] a') as $element) {
|
2014-05-26 00:30:46 +02:00
|
|
|
$item = new \Item();
|
2015-01-20 19:06:51 +01:00
|
|
|
$item->uri = 'http://dollbooru.org'.$element->href;
|
2016-07-08 19:06:35 +02:00
|
|
|
$item->postid = (int)preg_replace("/[^0-9]/",'', $element->getAttribute('data-post-id'));
|
2014-05-26 00:30:46 +02:00
|
|
|
$item->timestamp = time();
|
2016-08-09 15:50:25 +02:00
|
|
|
$thumbnailUri = 'http://dollbooru.org'.$element->find('img', 0)->src;
|
2014-05-26 00:30:46 +02:00
|
|
|
$item->tags = $element->getAttribute('data-tags');
|
|
|
|
$item->title = 'Dollbooru | '.$item->postid;
|
2016-08-09 15:50:25 +02:00
|
|
|
$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
|
|
|
|
}
|
|
|
|
}
|