Completed
Push — 2.0 ( 057aa6...b272ae )
by Maksim
02:01
created

ResolveCacheCommand::execute()   A

Complexity

Conditions 4
Paths 6

Size

Total Lines 21
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 21
rs 9.0534
c 0
b 0
f 0
cc 4
eloc 10
nc 6
nop 2
1
<?php
2
3
/*
4
 * This file is part of the `liip/LiipImagineBundle` project.
5
 *
6
 * (c) https://github.com/liip/LiipImagineBundle/graphs/contributors
7
 *
8
 * For the full copyright and license information, please view the LICENSE.md
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Liip\ImagineBundle\Command;
13
14
use Liip\ImagineBundle\Imagine\Filter\FilterManager;
15
use Liip\ImagineBundle\Service\FilterService;
16
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
17
use Symfony\Component\Console\Input\InputArgument;
18
use Symfony\Component\Console\Input\InputInterface;
19
use Symfony\Component\Console\Input\InputOption;
20
use Symfony\Component\Console\Output\OutputInterface;
21
22
class ResolveCacheCommand extends ContainerAwareCommand
23
{
24 View Code Duplication
    protected function configure()
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...
25
    {
26
        $this
27
            ->setName('liip:imagine:cache:resolve')
28
            ->setDescription('Resolve cache for given path and set of filters.')
29
            ->addArgument('paths', InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'Image paths')
30
            ->addOption(
31
                'filters',
32
                'f',
33
                InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY,
34
                'Filters list'
35
            )->setHelp(<<<'EOF'
36
The <info>%command.name%</info> command resolves cache by specified parameters.
37
It returns list of urls.
38
39
<info>php app/console %command.name% path1 path2 --filters=thumb1</info>
40
Cache for this two paths will be resolved with passed filter.
41
As a result you will get<info>
42
    http://localhost/media/cache/thumb1/path1
43
    http://localhost/media/cache/thumb1/path2</info>
44
45
You can pass few filters:
46
<info>php app/console %command.name% path1 --filters=thumb1 --filters=thumb2</info>
47
As a result you will get<info>
48
    http://localhost/media/cache/thumb1/path1
49
    http://localhost/media/cache/thumb2/path1</info>
50
51
If you omit --filters parameter then to resolve given paths will be used all configured and available filters in application:
52
<info>php app/console %command.name% path1</info>
53
As a result you will get<info>
54
    http://localhost/media/cache/thumb1/path1
55
    http://localhost/media/cache/thumb2/path1</info>
56
EOF
57
            );
58
    }
59
60
    protected function execute(InputInterface $input, OutputInterface $output)
61
    {
62
        $paths = $input->getArgument('paths');
63
        $filters = $input->getOption('filters');
64
65
        /* @var FilterManager $filterManager */
66
        $filterManager = $this->getContainer()->get('liip_imagine.filter.manager');
67
68
        /* @var FilterService $filterService */
69
        $filterService = $this->getContainer()->get('liip_imagine.service.filter');
70
71
        if (empty($filters)) {
72
            $filters = array_keys($filterManager->getFilterConfiguration()->all());
73
        }
74
75
        foreach ($paths as $path) {
76
            foreach ($filters as $filter) {
77
                $output->writeln($filterService->getUrlOfFilteredImage($path, $filter));
78
            }
79
        }
80
    }
81
}
82