summaryrefslogtreecommitdiffstats
path: root/lib/Command/Debug/FolderRead.php
blob: a259aceb6c44fea73d257aff4af8112f85afc4c2 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?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\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 FolderRead extends Command
{
    /**
     * @var FolderServiceV2 service for the folders.
     */
    protected $folderService;

    /**
     * @var ItemServiceV2 service for the items.
     */
    protected $itemService;

    public function __construct(FolderServiceV2 $folderService, ItemServiceV2 $itemService)
    {
        parent::__construct();

        $this->folderService = $folderService;
        $this->itemService = $itemService;
    }

    /**
     * Configure command
     *
     * @return void
     */
    protected function configure()
    {
        $this->setName('news:folder:read')
            ->setDescription('Read folder')
            ->addArgument('user-id', InputArgument::REQUIRED, 'User to modify the folder for')
            ->addArgument('id', InputArgument::REQUIRED, 'Folder 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->folderService->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;
    }
}