2014-09-10 15:53:25 +02:00
|
|
|
<?php
|
|
|
|
class TagBoardBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $maintainer = "Pitchoule";
|
|
|
|
public $name = "TagBoard";
|
|
|
|
public $uri = "http://www.TagBoard.com";
|
|
|
|
public $description = "Returns most recent results from TagBoard.";
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-27 21:03:26 +02:00
|
|
|
public $parameters = array( array(
|
|
|
|
'u'=>array(
|
2016-08-22 01:25:56 +02:00
|
|
|
'name'=>'keyword',
|
|
|
|
'required'=>true
|
2016-08-27 21:03:26 +02:00
|
|
|
)
|
|
|
|
));
|
2015-11-05 16:50:18 +01:00
|
|
|
|
2016-08-25 01:24:53 +02:00
|
|
|
public function collectData(){
|
2014-09-10 15:53:25 +02:00
|
|
|
$html = '';
|
2016-08-28 01:25:33 +02:00
|
|
|
$this->request = $this->getInput('u');
|
2014-09-10 15:53:25 +02:00
|
|
|
$link = 'https://post-cache.tagboard.com/search/' .$this->request;
|
2016-07-08 19:06:35 +02:00
|
|
|
|
|
|
|
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request TagBoard for : ' . $link);
|
2014-09-10 15:53:25 +02:00
|
|
|
$parsed_json = json_decode($html);
|
|
|
|
|
|
|
|
foreach($parsed_json->{'posts'} as $element) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = $element->{'permalink'};
|
|
|
|
$item['title'] = $element->{'text'};
|
2016-08-09 15:50:25 +02:00
|
|
|
$thumbnailUri = $element->{'photos'}[0]->{'m'};
|
|
|
|
if (isset($thumbnailUri)) {
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content'] = '<a href="' . $item['uri'] . '"><img src="' . $thumbnailUri . '" /></a>';
|
2014-09-10 15:53:25 +02:00
|
|
|
}else{
|
2016-08-22 18:55:59 +02:00
|
|
|
$item['content'] = $element->{'html'};
|
2014-09-10 15:53:25 +02:00
|
|
|
}
|
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return 'tagboard - ' .$this->request;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
2014-09-11 09:14:05 +02:00
|
|
|
return 21600; // 6 hours
|
2014-09-10 15:53:25 +02:00
|
|
|
}
|
|
|
|
}
|
2016-07-08 19:06:35 +02:00
|
|
|
|