forked from blallo/rss-bridge
de1b39c8e5
if a bridge needs to modify some of the data that were initialized there, ::__construct() should be used instead. Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
47 lines
1.5 KiB
PHP
47 lines
1.5 KiB
PHP
<?php
|
|
class TagBoardBridge extends BridgeAbstract{
|
|
|
|
public $maintainer = "Pitchoule";
|
|
public $name = "TagBoard";
|
|
public $uri = "http://www.TagBoard.com";
|
|
public $description = "Returns most recent results from TagBoard.";
|
|
|
|
public $parameters = array( array(
|
|
'u'=>array(
|
|
'name'=>'keyword',
|
|
'required'=>true
|
|
)
|
|
));
|
|
|
|
public function collectData(){
|
|
$param=$this->parameters[$this->queriedContext];
|
|
$html = '';
|
|
$this->request = $param['u']['value'];
|
|
$link = 'https://post-cache.tagboard.com/search/' .$this->request;
|
|
|
|
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request TagBoard for : ' . $link);
|
|
$parsed_json = json_decode($html);
|
|
|
|
foreach($parsed_json->{'posts'} as $element) {
|
|
$item = array();
|
|
$item['uri'] = $element->{'permalink'};
|
|
$item['title'] = $element->{'text'};
|
|
$thumbnailUri = $element->{'photos'}[0]->{'m'};
|
|
if (isset($thumbnailUri)) {
|
|
$item['content'] = '<a href="' . $item['uri'] . '"><img src="' . $thumbnailUri . '" /></a>';
|
|
}else{
|
|
$item['content'] = $element->{'html'};
|
|
}
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
|
|
public function getName(){
|
|
return 'tagboard - ' .$this->request;
|
|
}
|
|
|
|
public function getCacheDuration(){
|
|
return 21600; // 6 hours
|
|
}
|
|
}
|
|
|