Completed
Pull Request — master (#105)
by Mikołaj
04:26 queued 01:11
created

ResolveUrlCommand::configure()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 8
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 7
nc 1
nop 0
dl 0
loc 10
ccs 8
cts 8
cp 1
crap 1
rs 9.4285
c 0
b 0
f 0
1
<?php
2
namespace Shlinkio\Shlink\CLI\Command\Shortcode;
3
4
use Acelaya\ZsmAnnotatedServices\Annotation\Inject;
5
use Shlinkio\Shlink\Core\Exception\InvalidShortCodeException;
6
use Shlinkio\Shlink\Core\Service\UrlShortener;
7
use Shlinkio\Shlink\Core\Service\UrlShortenerInterface;
8
use Symfony\Component\Console\Command\Command;
9
use Symfony\Component\Console\Helper\QuestionHelper;
10
use Symfony\Component\Console\Input\InputArgument;
11
use Symfony\Component\Console\Input\InputInterface;
12
use Symfony\Component\Console\Output\OutputInterface;
13
use Symfony\Component\Console\Question\Question;
14
use Zend\I18n\Translator\TranslatorInterface;
15
16
class ResolveUrlCommand extends Command
17
{
18
    /**
19
     * @var UrlShortenerInterface
20
     */
21
    private $urlShortener;
22
    /**
23
     * @var TranslatorInterface
24
     */
25
    private $translator;
26
27
    /**
28
     * ResolveUrlCommand constructor.
29
     * @param UrlShortenerInterface $urlShortener
30
     * @param TranslatorInterface $translator
31
     *
32
     * @Inject({UrlShortener::class, "translator"})
33
     */
34 3
    public function __construct(UrlShortenerInterface $urlShortener, TranslatorInterface $translator)
35
    {
36 3
        $this->urlShortener = $urlShortener;
37 3
        $this->translator = $translator;
38 3
        parent::__construct(null);
39 3
    }
40
41 3
    public function configure()
42
    {
43 3
        $this->setName('shortcode:parse')
44 3
             ->setDescription($this->translator->translate('Returns the long URL behind a short code'))
45 3
             ->addArgument(
46 3
                 'shortCode',
47 3
                 InputArgument::REQUIRED,
48 3
                 $this->translator->translate('The short code to parse')
49
             );
50 3
    }
51
52 3 View Code Duplication
    public function interact(InputInterface $input, OutputInterface $output)
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...
53
    {
54 3
        $shortCode = $input->getArgument('shortCode');
55 3
        if (! empty($shortCode)) {
56 3
            return;
57
        }
58
59
        /** @var QuestionHelper $helper */
60
        $helper = $this->getHelper('question');
61
        $question = new Question(sprintf(
62
            '<question>%s</question> ',
63
            $this->translator->translate('A short code was not provided. Which short code do you want to parse?:')
64
        ));
65
66
        $shortCode = $helper->ask($input, $output, $question);
67
        if (! empty($shortCode)) {
68
            $input->setArgument('shortCode', $shortCode);
69
        }
70
    }
71
72 3
    public function execute(InputInterface $input, OutputInterface $output)
73
    {
74 3
        $shortCode = $input->getArgument('shortCode');
75
76
        try {
77 3
            $longUrl = $this->urlShortener->shortCodeToUrl($shortCode);
78 2
            if (! isset($longUrl)) {
79 1
                $output->writeln(sprintf(
80 1
                    '<error>' . $this->translator->translate('No URL found for short code "%s"') . '</error>',
81 1
                    $shortCode
82
                ));
83 1
                return;
84
            }
85
86 1
            $output->writeln(sprintf('%s <info>%s</info>', $this->translator->translate('Long URL:'), $longUrl));
87 1
        } catch (InvalidShortCodeException $e) {
88 1
            $output->writeln(sprintf('<error>' . $this->translator->translate(
89 1
                'Provided short code "%s" has an invalid format.'
90 1
            ) . '</error>', $shortCode));
91
        }
92 2
    }
93
}
94