2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
|
|
|
class DanbooruBridge extends BridgeAbstract{
|
|
|
|
|
2015-11-05 16:50:18 +01:00
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "mitsukarenai";
|
|
|
|
$this->name = "Danbooru";
|
|
|
|
$this->uri = "http://donmai.us/";
|
|
|
|
$this->description = "Returns images from given page";
|
|
|
|
|
2016-08-22 01:25:56 +02:00
|
|
|
$this->parameters[] = array(
|
|
|
|
'p'=>array('name'=>'page'),
|
|
|
|
'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 = 1;$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://donmai.us/posts?&page=$page&tags=$tags") or $this->returnServerError('Could not request Danbooru.');
|
2014-05-26 00:30:46 +02:00
|
|
|
foreach($html->find('div[id=posts] article') as $element) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = 'http://donmai.us'.$element->find('a', 0)->href;
|
|
|
|
$item['postid'] = (int)preg_replace("/[^0-9]/",'', $element->getAttribute('data-id'));
|
|
|
|
$item['timestamp'] = time();
|
2016-08-09 15:50:25 +02:00
|
|
|
$thumbnailUri = 'http://donmai.us'.$element->find('img', 0)->src;
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['tags'] = $element->find('img', 0)->getAttribute('alt');
|
|
|
|
$item['title'] = 'Danbooru | '.$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
|
|
|
|
}
|
|
|
|
}
|