summaryrefslogtreecommitdiffstats
path: root/command/updater/updatefeed.php
diff options
context:
space:
mode:
Diffstat (limited to 'command/updater/updatefeed.php')
-rw-r--r--command/updater/updatefeed.php59
1 files changed, 59 insertions, 0 deletions
diff --git a/command/updater/updatefeed.php b/command/updater/updatefeed.php
new file mode 100644
index 000000000..13fc2e625
--- /dev/null
+++ b/command/updater/updatefeed.php
@@ -0,0 +1,59 @@
+<?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\InputArgument;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+
+use OCA\News\Service\FeedService;
+
+
+class UpdateFeed extends Command {
+ private $feedService;
+
+ public function __construct(FeedService $feedService) {
+ parent::__construct();
+ $this->feedService = $feedService;
+ }
+
+ protected function configure() {
+ $this->setName('news:updater:update-feed')
+ ->addArgument(
+ 'feed-id',
+ InputArgument::REQUIRED,
+ 'feed id, integer'
+ )
+ ->addArgument(
+ 'user-id',
+ InputArgument::REQUIRED,
+ 'user id of a user, string'
+ )
+ ->setDescription('Console API for updating a single user\'s feed');
+ }
+
+ protected function execute(InputInterface $input, OutputInterface $output) {
+ $feedId = $input->getArgument('feed-id');
+ $userId = $input->getArgument('user-id');
+ try {
+ $this->feedService->update($feedId, $userId);
+ } catch (Exception $e) {
+ $output->writeln('<error>Could not update feed with id ' . $feedId .
+ ' and user ' . $userId . ': ' . $e->getMessage() .
+ '</error> ');
+ }
+ }
+
+}