PresenceStatsCommand::execute()   A
last analyzed

Complexity

Conditions 2
Paths 6

Size

Total Lines 19

Duplication

Lines 19
Ratio 100 %

Importance

Changes 0
Metric Value
dl 19
loc 19
rs 9.6333
c 0
b 0
f 0
cc 2
nc 6
nop 2
1
<?php
2
/*
3
 * This file is part of the FreshCentrifugoBundle.
4
 *
5
 * (c) Artem Henvald <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
declare(strict_types=1);
12
13
namespace Fresh\CentrifugoBundle\Command;
14
15
use Fresh\CentrifugoBundle\Service\CentrifugoChecker;
16
use Fresh\CentrifugoBundle\Service\CentrifugoInterface;
17
use Symfony\Component\Console\Input\InputArgument;
18
use Symfony\Component\Console\Input\InputDefinition;
19
use Symfony\Component\Console\Input\InputInterface;
20
use Symfony\Component\Console\Output\OutputInterface;
21
use Symfony\Component\Console\Style\SymfonyStyle;
22
23
/**
24
 * PresenceStatsCommand.
25
 *
26
 * @author Artem Henvald <[email protected]>
27
 */
28
final class PresenceStatsCommand extends AbstractCommand
29
{
30
    use ArgumentChannelTrait;
31
32
    protected static $defaultName = 'centrifugo:presence-stats';
33
34
    /**
35
     * @param CentrifugoInterface $centrifugo
36
     * @param CentrifugoChecker   $centrifugoChecker
37
     */
38
    public function __construct(CentrifugoInterface $centrifugo, CentrifugoChecker $centrifugoChecker)
39
    {
40
        $this->centrifugoChecker = $centrifugoChecker;
41
42
        parent::__construct($centrifugo);
43
    }
44
45
    /**
46
     * {@inheritdoc}
47
     */
48 View Code Duplication
    protected function configure(): void
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
49
    {
50
        $this
51
            ->setDescription('Get short channel presence information')
52
            ->setDefinition(
53
                new InputDefinition([
54
                    new InputArgument('channel', InputArgument::REQUIRED, 'Channel name'),
55
                ])
56
            )
57
            ->setHelp(
58
                <<<'HELP'
59
The <info>%command.name%</info> command allows to get short channel presence information:
60
61
<info>%command.full_name%</info> <comment>channelAbc</comment>
62
63
Read more at https://centrifugal.github.io/centrifugo/server/http_api/#presence_stats
64
HELP
65
            )
66
        ;
67
    }
68
69
    /**
70
     * {@inheritdoc}
71
     */
72
    protected function initialize(InputInterface $input, OutputInterface $output): void
73
    {
74
        parent::initialize($input, $output);
75
76
        $this->initializeChannelArgument($input);
77
    }
78
79
    /**
80
     * {@inheritdoc}
81
     */
82 View Code Duplication
    protected function execute(InputInterface $input, OutputInterface $output): int
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
83
    {
84
        $io = new SymfonyStyle($input, $output);
85
86
        try {
87
            $data = $this->centrifugo->presenceStats($this->channel);
88
89
            $io->title('Presence Stats');
90
            $io->text(\sprintf('<info>num_clients</info>: <comment>%d</comment>', $data['num_clients']));
91
            $io->text(\sprintf('<info>num_users</info>: <comment>%d</comment>', $data['num_users']));
92
            $io->newLine();
93
        } catch (\Throwable $e) {
94
            $io->error($e->getMessage());
95
96
            return $e->getCode();
97
        }
98
99
        return 0;
100
    }
101
}
102