2014-05-26 00:30:46 +02:00
< ? php
class MspabooruBridge extends BridgeAbstract {
2015-11-05 16:50:18 +01:00
2016-08-27 21:03:26 +02:00
public $maintainer = " mitsukarenai " ;
public $name = " Mspabooru " ;
public $uri = " http://mspabooru.com/ " ;
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 01:25:33 +02:00
if ( isset ( $this -> getInput ( 'p' ))) {
$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 01:25:33 +02:00
if ( isset ( $this -> getInput ( 't' ))) {
$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://mspabooru.com/index.php?page=post&s=list&tags= $tags &pid= $page " ) or $this -> returnServerError ( 'Could not request Mspabooru.' );
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://mspabooru.com/' . $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' ] = 'Mspabooru | ' . $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
}
}