From 46d5895d1df4cc4fcf144a42030e0240bc7b9cee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Maradan?= <3043485+Leomaradan@users.noreply.github.com> Date: Fri, 1 Nov 2019 13:54:03 +0100 Subject: [PATCH] [RedditBridge] Add new bridge (#1213) --- bridges/RedditBridge.php | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 bridges/RedditBridge.php 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"); + } + } +}