summaryrefslogtreecommitdiffstats
path: root/lib/Command/Config/FeedList.php
blob: 0c547868cf05bc900d4192f5672231de582197c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php

namespace OCA\News\Command\Config;

use OCA\News\Controller\ApiPayloadTrait;
use OCA\News\Service\FeedServiceV2;
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 FeedList extends Command
{
    use ApiPayloadTrait;

    /**
     * @var FeedServiceV2 service for the feeds.
     */
    protected $feedService;

    public function __construct(FeedServiceV2 $feedService)
    {
        parent::__construct(null);

        $this->feedService = $feedService;
    }

    /**
     * Configure command
     */
    protected function configure()
    {
        $this->setName('news:feed:list')
            ->setDescription('List all feeds')
            ->addArgument('userID', InputArgument::REQUIRED, 'User to list the feeds for')
            ->addOption('recursive', null, InputOption::VALUE_NONE, 'Fetch the feed recursively');
    }

    /**
     * Execute command
     *
     * @param InputInterface  $input
     * @param OutputInterface $output
     *
     * @return int|void
     */
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $user = $input->getArgument('userID');
        $recursive = $input->getOption('recursive');

        if ($recursive !== false) {
            $feeds = $this->feedService->findAllForUserRecursive($user);
        } else {
            $feeds = $this->feedService->findAllForUser($user);
        }

        $output->writeln(json_encode($this->serialize($feeds), JSON_PRETTY_PRINT));

        return 0;
    }
}