2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
|
|
|
class Rule34pahealBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "mitsukarenai";
|
|
|
|
public $name = "Rule34paheal";
|
|
|
|
public $uri = "http://rule34.paheal.net/";
|
|
|
|
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 20:38:01 +02:00
|
|
|
if ($this->getInput('p')) {
|
2016-08-28 01:25:33 +02:00
|
|
|
$page = (int)preg_replace("/[^0-9]/",'', $this->getInput('p'));
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
2016-08-28 20:38:01 +02:00
|
|
|
if ($this->getInput('t')) {
|
2016-08-28 01:25:33 +02:00
|
|
|
$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://rule34.paheal.net/post/list/$tags/$page") or $this->returnServerError('Could not request Rule34paheal.');
|
2014-05-26 00:30:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
foreach($html->find('div[class=shm-image-list] div[class=shm-thumb]') as $element) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = 'http://rule34.paheal.net'.$element->find('a', 0)->href;
|
|
|
|
$item['postid'] = (int)preg_replace("/[^0-9]/",'', $element->find('img', 0)->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->getAttribute('data-tags');
|
|
|
|
$item['title'] = 'Rule34paheal | '.$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
|
|
|
|
}
|
|
|
|
}
|