[TagBoardBridge] code simplification
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
eae88cf2cf
commit
0f2cfe06d3
1 changed files with 5 additions and 6 deletions
|
@ -3,7 +3,7 @@ class TagBoardBridge extends BridgeAbstract{
|
||||||
|
|
||||||
public $maintainer = "Pitchoule";
|
public $maintainer = "Pitchoule";
|
||||||
public $name = "TagBoard";
|
public $name = "TagBoard";
|
||||||
public $uri = "http://www.TagBoard.com";
|
public $uri = "http://www.TagBoard.com/";
|
||||||
public $description = "Returns most recent results from TagBoard.";
|
public $description = "Returns most recent results from TagBoard.";
|
||||||
|
|
||||||
public $parameters = array( array(
|
public $parameters = array( array(
|
||||||
|
@ -14,11 +14,10 @@ class TagBoardBridge extends BridgeAbstract{
|
||||||
));
|
));
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
$html = '';
|
$link = 'https://post-cache.tagboard.com/search/' .$this->getInput('u');
|
||||||
$this->request = $this->getInput('u');
|
|
||||||
$link = 'https://post-cache.tagboard.com/search/' .$this->request;
|
|
||||||
|
|
||||||
$html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request TagBoard for : ' . $link);
|
$html = $this->getSimpleHTMLDOM($link)
|
||||||
|
or $this->returnServerError('Could not request TagBoard for : ' . $link);
|
||||||
$parsed_json = json_decode($html);
|
$parsed_json = json_decode($html);
|
||||||
|
|
||||||
foreach($parsed_json->{'posts'} as $element) {
|
foreach($parsed_json->{'posts'} as $element) {
|
||||||
|
@ -36,7 +35,7 @@ class TagBoardBridge extends BridgeAbstract{
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getName(){
|
public function getName(){
|
||||||
return 'tagboard - ' .$this->request;
|
return 'tagboard - ' .$this->getInput('u');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCacheDuration(){
|
public function getCacheDuration(){
|
||||||
|
|
Loading…
Reference in a new issue