summaryrefslogtreecommitdiffstats
path: root/lib/Command/Updater/AllFeeds.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Command/Updater/AllFeeds.php')
-rw-r--r--lib/Command/Updater/AllFeeds.php53
1 files changed, 53 insertions, 0 deletions
diff --git a/lib/Command/Updater/AllFeeds.php b/lib/Command/Updater/AllFeeds.php
new file mode 100644
index 000000000..05330ac01
--- /dev/null
+++ b/lib/Command/Updater/AllFeeds.php
@@ -0,0 +1,53 @@
+<?php
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2016
+ */
+
+namespace OCA\News\Command\Updater;
+
+use Exception;
+
+use Symfony\Component\Console\Command\Command;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+
+use OCA\News\Service\FeedService;
+
+
+class AllFeeds extends Command {
+ private $feedService;
+
+ public function __construct(FeedService $feedService) {
+ parent::__construct();
+ $this->feedService = $feedService;
+ }
+
+ protected function configure() {
+ $json = '{"feeds": [{"id": 39, "userId": "john"}, // etc ]}';
+
+ $this->setName('news:updater:all-feeds')
+ ->setDescription('Prints a JSON string which contains all feed ' .
+ 'ids and user ids, e.g.: ' . $json);
+ }
+
+ protected function execute(InputInterface $input, OutputInterface $output) {
+ $feeds = $this->feedService->findAllFromAllUsers();
+ $result = ['feeds' => []];
+
+ foreach ($feeds as $feed) {
+ $result['feeds'][] = [
+ 'id' => $feed->getId(),
+ 'userId' => $feed->getUserId()
+ ];
+ }
+
+ print(json_encode($result));
+ }
+
+}