49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* RssBridgeDanbooru
|
||
|
* Returns images from given page
|
||
|
* 2014-05-25
|
||
|
*
|
||
|
* @name Danbooru
|
||
|
* @homepage http://donmai.us/
|
||
|
* @description Returns images from given page
|
||
|
* @maintainer mitsukarenai
|
||
|
* @use1(p="page", t="tags")
|
||
|
*/
|
||
|
class DanbooruBridge extends BridgeAbstract{
|
||
|
|
||
|
public function collectData(array $param){
|
||
|
$page = 1;$tags='';
|
||
|
if (isset($param['p'])) {
|
||
|
$page = (int)preg_replace("/[^0-9]/",'', $param['p']);
|
||
|
}
|
||
|
if (isset($param['t'])) {
|
||
|
$tags = urlencode($param['t']);
|
||
|
}
|
||
|
$html = file_get_html("http://donmai.us/posts?&page=$page&tags=$tags") or $this->returnError('Could not request Danbooru.', 404);
|
||
|
foreach($html->find('div[id=posts] article') as $element) {
|
||
|
$item = new \Item();
|
||
|
$item->uri = 'http://donmai.us'.$element->find('a', 0)->href;
|
||
|
$item->postid = (int)preg_replace("/[^0-9]/",'', $element->getAttribute('data-id'));
|
||
|
$item->timestamp = time();
|
||
|
$item->thumbnailUri = 'http://donmai.us'.$element->find('img', 0)->src;
|
||
|
$item->tags = $element->find('img', 0)->getAttribute('alt');
|
||
|
$item->title = 'Danbooru | '.$item->postid;
|
||
|
$item->content = '<a href="' . $item->uri . '"><img src="' . $item->thumbnailUri . '" /></a><br>Tags: '.$item->tags;
|
||
|
$this->items[] = $item;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function getName(){
|
||
|
return 'Danbooru';
|
||
|
}
|
||
|
|
||
|
public function getURI(){
|
||
|
return 'http://donmai.us/';
|
||
|
}
|
||
|
|
||
|
public function getCacheDuration(){
|
||
|
return 1800; // 30 minutes
|
||
|
}
|
||
|
}
|