diff --git a/bridges/RedditBridge.php b/bridges/RedditBridge.php new file mode 100644 index 00000000..d83c0a3c --- /dev/null +++ b/bridges/RedditBridge.php @@ -0,0 +1,40 @@ + array( + 'r' => array( + 'name' => 'SubReddit', + 'required' => true, + 'exampleValue' => 'selfhosted', + 'title' => 'SubReddit name' + ) + ), + 'multi' => array( + 'rs' => array( + 'name' => 'SubReddits', + 'required' => true, + 'exampleValue' => 'selfhosted, php', + 'title' => 'SubReddit names, separated by commas' + ) + ) + ); + + public function collectData(){ + + switch($this->queriedcontext) { + case 'single': $subreddits[] = $this->getInput('r'); break; + case 'multi': $subreddits = explode(',', $this->getInput('rs')); break; + } + + foreach ($subreddits as $subreddit) { + $name = trim($subreddit); + $this->collectExpandableDatas("https://www.reddit.com/r/$name/.rss"); + } + } +}