From 01e1db329ced43323654990828744d577cac4ba8 Mon Sep 17 00:00:00 2001 From: Sean Molenaar Date: Tue, 16 Feb 2021 21:16:18 +0100 Subject: Command: Add debug item list commands Signed-off-by: Sean Molenaar --- lib/Command/Debug/FeedItemList.php | 99 ++++++++++++++++++++++++++++++++++ lib/Command/Debug/FolderItemList.php | 100 +++++++++++++++++++++++++++++++++++ lib/Command/Debug/ItemList.php | 94 ++++++++++++++++++++++++++++++++ lib/Db/FeedType.php | 30 ----------- lib/Db/ListType.php | 30 +++++++++++ 5 files changed, 323 insertions(+), 30 deletions(-) create mode 100644 lib/Command/Debug/FeedItemList.php create mode 100644 lib/Command/Debug/FolderItemList.php create mode 100644 lib/Command/Debug/ItemList.php delete mode 100644 lib/Db/FeedType.php create mode 100644 lib/Db/ListType.php (limited to 'lib') diff --git a/lib/Command/Debug/FeedItemList.php b/lib/Command/Debug/FeedItemList.php new file mode 100644 index 000000000..49820993c --- /dev/null +++ b/lib/Command/Debug/FeedItemList.php @@ -0,0 +1,99 @@ +itemService = $itemService; + } + + /** + * Configure command + * + * @return void + */ + protected function configure() + { + $this->setName('news:item:list-feed') + ->setDescription('List all items in a feed') + ->addArgument('user-id', InputArgument::REQUIRED, 'User to list the items for') + ->addArgument('feed', InputArgument::REQUIRED, 'Feed to list the items for') + ->addOption('limit', 'l', InputOption::VALUE_REQUIRED, 'Limit for item amount', 40) + ->addOption('offset', 'o', InputOption::VALUE_REQUIRED, 'Item list offset', 0) + ->addOption('reverse-sort', null, InputOption::VALUE_NONE, 'Item list sorting') + ->addOption('hide-read', null, InputOption::VALUE_NONE, 'Hide read items'); + } + + /** + * Execute command + * + * @param InputInterface $input + * @param OutputInterface $output + * + * @return int|void + */ + protected function execute(InputInterface $input, OutputInterface $output) + { + $user = $input->getArgument('user-id'); + + $feed = $input->getArgument('feed'); + if (!is_numeric($feed)) { + $output->writeln('Invalid Type!'); + return 255; + } + + $limit = $input->getOption('limit'); + if (!is_numeric($limit)) { + $output->writeln('Invalid limit!'); + return 255; + } + + $offset = $input->getOption('offset'); + if (!is_numeric($offset)) { + $output->writeln('Invalid offset!'); + return 255; + } + + $reverseSort = $input->getOption('reverse-sort'); + $hideRead = $input->getOption('hide-read'); + + $items = $this->itemService->findAllInFeedWithFilters( + $user, + intval($feed), + intval($limit), + intval($offset), + $hideRead, + $reverseSort, + [] + ); + + $output->writeln(json_encode($this->serialize($items), JSON_PRETTY_PRINT)); + + return 0; + } +} diff --git a/lib/Command/Debug/FolderItemList.php b/lib/Command/Debug/FolderItemList.php new file mode 100644 index 000000000..4e6f07dae --- /dev/null +++ b/lib/Command/Debug/FolderItemList.php @@ -0,0 +1,100 @@ +itemService = $itemService; + } + + /** + * Configure command + * + * @return void + */ + protected function configure() + { + $this->setName('news:item:list-folder') + ->setDescription('List all items in a folder') + ->addArgument('user-id', InputArgument::REQUIRED, 'User to list the items for') + ->addArgument('folder', InputArgument::OPTIONAL, 'Folder to list the items for') + ->addOption('limit', 'l', InputOption::VALUE_REQUIRED, 'Limit for item amount', 40) + ->addOption('offset', 'o', InputOption::VALUE_REQUIRED, 'Item list offset', 0) + ->addOption('reverse-sort', null, InputOption::VALUE_NONE, 'Item list sorting') + ->addOption('hide-read', null, InputOption::VALUE_NONE, 'Hide read items'); + } + + /** + * Execute command + * + * @param InputInterface $input + * @param OutputInterface $output + * + * @return int|void + */ + protected function execute(InputInterface $input, OutputInterface $output) + { + $user = $input->getArgument('user-id'); + + $folder = $input->getArgument('folder'); + if (!is_null($folder) && !is_numeric($folder)) { + $output->writeln('Invalid folder ID!'); + return 255; + } + + $limit = $input->getOption('limit'); + if (!is_numeric($limit)) { + $output->writeln('Invalid limit!'); + return 255; + } + + $offset = $input->getOption('offset'); + if (!is_numeric($offset)) { + $output->writeln('Invalid offset!'); + return 255; + } + + $folder = is_null($folder) ? $folder : intval($folder); + $reverseSort = $input->getOption('reverse-sort'); + $hideRead = $input->getOption('hide-read'); + + $items = $this->itemService->findAllInFolderWithFilters( + $user, + $folder, + intval($limit), + intval($offset), + $hideRead, + $reverseSort, + [] + ); + + $output->writeln(json_encode($this->serialize($items), JSON_PRETTY_PRINT)); + + return 0; + } +} diff --git a/lib/Command/Debug/ItemList.php b/lib/Command/Debug/ItemList.php new file mode 100644 index 000000000..06f8b1c1b --- /dev/null +++ b/lib/Command/Debug/ItemList.php @@ -0,0 +1,94 @@ +itemService = $itemService; + } + + /** + * Configure command + * + * @return void + */ + protected function configure() + { + $this->setName('news:item:list') + ->setDescription('List all items') + ->addArgument('user-id', InputArgument::REQUIRED, 'User to list the items for') + ->addOption('type', 't', InputOption::VALUE_REQUIRED, 'Item type', ListType::ALL_ITEMS) + ->addOption('limit', 'l', InputOption::VALUE_REQUIRED, 'Limit for item amount', 40) + ->addOption('offset', 'o', InputOption::VALUE_REQUIRED, 'Item list offset', 0) + ->addOption('reverse-sort', 'r', InputOption::VALUE_NONE, 'Item list sorting'); + } + + /** + * Execute command + * + * @param InputInterface $input + * @param OutputInterface $output + * + * @return int|void + */ + protected function execute(InputInterface $input, OutputInterface $output) + { + $user = $input->getArgument('user-id'); + + $type = $input->getOption('type'); + if (!is_numeric($type)) { + $output->writeln('Invalid Type!'); + return 255; + } + $limit = $input->getOption('limit'); + if (!is_numeric($limit)) { + $output->writeln('Invalid limit!'); + return 255; + } + $offset = $input->getOption('offset'); + if (!is_numeric($offset)) { + $output->writeln('Invalid offset!'); + return 255; + } + $reverseSort = $input->getOption('reverse-sort'); + + $items = $this->itemService->findAllWithFilters( + $user, + intval($type), + intval($limit), + intval($offset), + $reverseSort, + [] + ); + + $output->writeln(json_encode($this->serialize($items), JSON_PRETTY_PRINT)); + + return 0; + } +} diff --git a/lib/Db/FeedType.php b/lib/Db/FeedType.php deleted file mode 100644 index 1ccd592a8..000000000 --- a/lib/Db/FeedType.php +++ /dev/null @@ -1,30 +0,0 @@ - - * @author Bernhard Posselt - * @copyright 2012 Alessandro Cosentino - * @copyright 2012-2014 Bernhard Posselt - */ - -namespace OCA\News\Db; - -/** - * Enum FeedType - * - * @package OCA\News\Db - */ -class FeedType -{ - const FEED = 0; - const FOLDER = 1; - const STARRED = 2; - const SUBSCRIPTIONS = 3; - const SHARED = 4; - const EXPLORE = 5; - const UNREAD = 6; -} diff --git a/lib/Db/ListType.php b/lib/Db/ListType.php new file mode 100644 index 000000000..1ccd592a8 --- /dev/null +++ b/lib/Db/ListType.php @@ -0,0 +1,30 @@ + + * @author Bernhard Posselt + * @copyright 2012 Alessandro Cosentino + * @copyright 2012-2014 Bernhard Posselt + */ + +namespace OCA\News\Db; + +/** + * Enum FeedType + * + * @package OCA\News\Db + */ +class FeedType +{ + const FEED = 0; + const FOLDER = 1; + const STARRED = 2; + const SUBSCRIPTIONS = 3; + const SHARED = 4; + const EXPLORE = 5; + const UNREAD = 6; +} -- cgit v1.2.3