[SakugabooruBridge] code simplification

Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
Pierre Mazière 2016-08-29 22:33:24 +02:00
parent 1172bea2db
commit 92e0bec925
1 changed files with 8 additions and 9 deletions

View File

@ -9,20 +9,19 @@ class SakugabooruBridge extends BridgeAbstract{
public $parameters = array( array( public $parameters = array( array(
'p'=>array( 'p'=>array(
'name'=>'page', 'name'=>'page',
'defaultValue'=>1,
'type'=>'number' 'type'=>'number'
), ),
't'=>array('name'=>'tags') 't'=>array('name'=>'tags')
)); ));
public function collectData(){ public function collectData(){
$page = 1;$tags=''; $html = $this->getSimpleHTMLDOM(
if ($this->getInput('p')) { $this->uri.'post?'
$page = (int)preg_replace("/[^0-9]/",'', $this->getInput('p')); .'&page='.$this->getInput('p')
} .'&tags='.urlencode($this->getInput('t'))
if ($this->getInput('t')) { ) or $this->returnServerError('Could not request Sakugabooru.');
$tags = urlencode($this->getInput('t'));
}
$html = $this->getSimpleHTMLDOM("http://sakuga.yshi.org/post?page=$page&tags=$tags") or $this->returnServerError('Could not request Sakugabooru.');
$input_json = explode('Post.register(', $html); $input_json = explode('Post.register(', $html);
foreach($input_json as $element) foreach($input_json as $element)
$data[] = preg_replace('/}\)(.*)/', '}', $element); $data[] = preg_replace('/}\)(.*)/', '}', $element);
@ -31,7 +30,7 @@ class SakugabooruBridge extends BridgeAbstract{
foreach($data as $datai) { foreach($data as $datai) {
$json = json_decode($datai, TRUE); $json = json_decode($datai, TRUE);
$item = array(); $item = array();
$item['uri'] = 'http://sakuga.yshi.org/post/show/'.$json['id']; $item['uri'] = $this->uri.'/post/show/'.$json['id'];
$item['postid'] = $json['id']; $item['postid'] = $json['id'];
$item['timestamp'] = $json['created_at']; $item['timestamp'] = $json['created_at'];
$item['imageUri'] = $json['file_url']; $item['imageUri'] = $json['file_url'];