summaryrefslogtreecommitdiffstats
path: root/lib/Command/Debug/FeedRead.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Command/Debug/FeedRead.php')
-rw-r--r--lib/Command/Debug/FeedRead.php85
1 files changed, 85 insertions, 0 deletions
diff --git a/lib/Command/Debug/FeedRead.php b/lib/Command/Debug/FeedRead.php
new file mode 100644
index 000000000..eaf7f6b14
--- /dev/null
+++ b/lib/Command/Debug/FeedRead.php
@@ -0,0 +1,85 @@
+<?php
+declare(strict_types=1);
+
+namespace OCA\News\Command\Debug;
+
+use OCA\News\Controller\ApiPayloadTrait;
+use OCA\News\Db\ListType;
+use OCA\News\Service\Exceptions\ServiceConflictException;
+use OCA\News\Service\Exceptions\ServiceNotFoundException;
+use OCA\News\Service\FeedServiceV2;
+use OCA\News\Service\FolderServiceV2;
+use OCA\News\Service\ItemServiceV2;
+use Symfony\Component\Console\Command\Command;
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Output\OutputInterface;
+
+/**
+ * Class ItemRead
+ *
+ * @package OCA\News\Command
+ */
+class FeedRead extends Command
+{
+ /**
+ * @var FeedServiceV2 service for the folders.
+ */
+ protected $feedService;
+
+ /**
+ * @var ItemServiceV2 service for the items.
+ */
+ protected $itemService;
+
+ public function __construct(FeedServiceV2 $feedService, ItemServiceV2 $itemService)
+ {
+ parent::__construct();
+
+ $this->feedService = $feedService;
+ $this->itemService = $itemService;
+ }
+
+ /**
+ * Configure command
+ *
+ * @return void
+ */
+ protected function configure()
+ {
+ $this->setName('news:feed:read')
+ ->setDescription('Read feed')
+ ->addArgument('user-id', InputArgument::REQUIRED, 'User to modify the feed for')
+ ->addArgument('id', InputArgument::REQUIRED, 'Feed ID');
+ }
+
+ /**
+ * Execute command
+ *
+ * @param InputInterface $input
+ * @param OutputInterface $output
+ *
+ * @return int|void
+ */
+ protected function execute(InputInterface $input, OutputInterface $output)
+ {
+ $user = $input->getArgument('user-id');
+
+ $id = $input->getArgument('id');
+ if (!is_numeric($id)) {
+ $output->writeln('Invalid id!');
+ return 255;
+ }
+
+ try {
+ $read = $this->feedService->read($user, intval($id));
+ $output->writeln("Marked $read items as read", $output::VERBOSITY_VERBOSE);
+ } catch (ServiceConflictException | ServiceNotFoundException $e) {
+ $output->writeln('Failed: ' . $e->getMessage());
+ return 0;
+ }
+
+ return 0;
+ }
+}