2014-05-26 00:30:46 +02:00
< ? php
class BooruprojectBridge extends BridgeAbstract {
2015-11-05 16:50:18 +01:00
public function loadMetadatas () {
$this -> maintainer = " mitsukarenai " ;
$this -> name = " Booruproject " ;
$this -> uri = " http://booru.org/ " ;
$this -> description = " Returns images from given page and booruproject instance (****.booru.org) " ;
$this -> parameters [] =
' [
{
" name " : " instance (required) " ,
2016-08-15 01:19:16 +02:00
" required " : true ,
2015-11-05 16:50:18 +01:00
" identifier " : " i "
},
{
" name " : " page " ,
" identifier " : " p "
},
{
" name " : " tags " ,
" identifier " : " t "
}
] ' ;
}
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 ( ! empty ( $param [ 'p' ])) {
$page = ( int ) preg_replace ( " /[^0-9]/ " , '' , $param [ 'p' ]);
2014-05-26 00:30:46 +02:00
$page = $page - 1 ;
$page = $page * 20 ;
}
2016-07-08 19:06:35 +02:00
if ( ! empty ( $param [ 't' ])) {
$tags = '&tags=' . urlencode ( $param [ 't' ]);
2014-05-26 00:30:46 +02:00
}
if ( empty ( $param [ 'i' ])) {
2016-08-17 14:45:08 +02:00
$this -> returnServerError ( 'Please enter a ***.booru.org instance.' );
2014-05-26 00:30:46 +02:00
}
2016-07-08 19:06:35 +02:00
$html = $this -> getSimpleHTMLDOM ( " http:// " . $param [ 'i' ] . " .booru.org/index.php?page=post&s=list&pid= " . $page . $tags ) or $this -> returnServerError ( 'Could not request Booruproject.' );
2014-05-26 00:30:46 +02:00
foreach ( $html -> find ( 'div[class=content] span' ) as $element ) {
$item = new \Item ();
$item -> uri = 'http://' . $param [ 'i' ] . '.booru.org/' . $element -> find ( 'a' , 0 ) -> href ;
2016-07-08 19:06:35 +02:00
$item -> postid = ( int ) preg_replace ( " /[^0-9]/ " , '' , $element -> find ( 'a' , 0 ) -> getAttribute ( 'id' ));
2014-05-26 00:30:46 +02:00
$item -> timestamp = time ();
$item -> tags = $element -> find ( 'img' , 0 ) -> getAttribute ( 'title' );
$item -> title = 'Booruproject ' . $param [ 'i' ] . ' | ' . $item -> postid ;
2016-08-09 15:50:25 +02:00
$item -> content = '<a href="' . $item -> uri . '"><img src="' . $element -> find ( 'img' , 0 ) -> src . '" /></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
}
}