summaryrefslogtreecommitdiff
path: root/bridges/TagBoardBridge.php
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/TagBoardBridge.php')
-rw-r--r--bridges/TagBoardBridge.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/bridges/TagBoardBridge.php b/bridges/TagBoardBridge.php
new file mode 100644
index 0000000..b79847e
--- /dev/null
+++ b/bridges/TagBoardBridge.php
@@ -0,0 +1,49 @@
+<?php
+class TagBoardBridge extends BridgeAbstract {
+
+ const MAINTAINER = 'Pitchoule';
+ const NAME = 'TagBoard';
+ const URI = 'http://www.TagBoard.com/';
+ const CACHE_TIMEOUT = 21600; // 6h
+ const DESCRIPTION = 'Returns most recent results from TagBoard.';
+
+ const PARAMETERS = array( array(
+ 'u' => array(
+ 'name' => 'keyword',
+ 'required' => true
+ )
+ ));
+
+ public function collectData(){
+ $link = 'https://post-cache.tagboard.com/search/' . $this->getInput('u');
+
+ $html = getSimpleHTMLDOM($link)
+ or 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(){
+ if(!is_null($this->getInput('u'))) {
+ return 'tagboard - ' . $this->getInput('u');
+ }
+
+ return parent::getName();
+ }
+}