2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
|
|
|
class YandereBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "mitsukarenai";
|
|
|
|
public $name = "Yande.re";
|
|
|
|
public $uri = "https://yande.re/";
|
|
|
|
public $description = "Returns images from given page and tags";
|
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(){
|
|
|
|
$param=$this->parameters[$this->queriedContext];
|
2014-05-26 00:30:46 +02:00
|
|
|
$page = 1; $tags = '';
|
2016-08-25 01:24:53 +02:00
|
|
|
if (isset($param['p']['value'])) {
|
|
|
|
$page = (int)preg_replace("/[^0-9]/",'', $param['p']['value']);
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
2016-08-25 01:24:53 +02:00
|
|
|
if (isset($param['t']['value'])) {
|
|
|
|
$tags = urlencode($param['t']['value']);
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
$html = $this->getSimpleHTMLDOM("https://yande.re/post?page=$page&tags=$tags") or $this->returnServerError('Could not request Yandere.');
|
2014-05-26 00:30:46 +02:00
|
|
|
$input_json = explode('Post.register(', $html);
|
|
|
|
foreach($input_json as $element)
|
|
|
|
$data[] = preg_replace('/}\)(.*)/', '}', $element);
|
|
|
|
unset($data[0]);
|
2016-07-08 19:06:35 +02:00
|
|
|
|
2014-05-26 00:30:46 +02:00
|
|
|
foreach($data as $datai) {
|
|
|
|
$json = json_decode($datai, TRUE);
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = 'http://yande.re/post/show/'.$json['id'];
|
|
|
|
$item['postid'] = $json['id'];
|
|
|
|
$item['timestamp'] = $json['created_at'];
|
|
|
|
$item['imageUri'] = $json['file_url'];
|
|
|
|
$item['title'] = 'Yandere | '.$json['id'];
|
|
|
|
$item['content'] = '<a href="' . $item['imageUri'] . '"><img src="' . $json['preview_url'] . '" /></a><br>Tags: '.$json['tags'];
|
2014-05-26 00:30:46 +02:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 1800; // 30 minutes
|
|
|
|
}
|
|
|
|
}
|