From 6211a2cd376fca2aa6dda48db69bfdbb33075b1f Mon Sep 17 00:00:00 2001 From: Dag Date: Tue, 22 Mar 2022 21:38:16 +0100 Subject: [PATCH] [TagBoardBridge] fix: remove dead bridge /~https://github.com/RSS-Bridge/rss-bridge/pull/1474 --- bridges/TagBoardBridge.php | 52 -------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 bridges/TagBoardBridge.php diff --git a/bridges/TagBoardBridge.php b/bridges/TagBoardBridge.php deleted file mode 100644 index d8ee12000cf..00000000000 --- a/bridges/TagBoardBridge.php +++ /dev/null @@ -1,52 +0,0 @@ - array( - 'name' => 'keyword', - 'required' => true - ) - )); - - public function getIcon() { - return 'https://static.tagboard.com/public/favicon-32x32.png'; - } - - public function collectData(){ - $link = 'https://post-cache.tagboard.com/search/' . $this->getInput('u'); - - $html = getSimpleHTMLDOM($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'] = ''; - } 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(); - } -}