Code Duplication    Length = 61-61 lines in 2 locations

src/Command/InvalidatePathCommand.php 1 location

@@ 24-84 (lines=61) @@
21
 *
22
 * @author David Buchmann <[email protected]>
23
 */
24
class InvalidatePathCommand extends BaseInvalidateCommand
25
{
26
    use PathSanityCheck;
27
28
    protected static $defaultName = 'fos:httpcache:invalidate:path';
29
30
    /**
31
     * If no cache manager is specified explicitly, fos_http_cache.cache_manager
32
     * is automatically loaded.
33
     *
34
     * @param CacheManager|null $cacheManager The cache manager to talk to
35
     */
36
    public function __construct(CacheManager $cacheManager = null)
37
    {
38
        if (2 <= func_num_args()) {
39
            @trigger_error('Passing a command name in the constructor is deprecated and will be removed in version 3', E_USER_DEPRECATED);
40
            static::$defaultName = func_get_arg(1);
41
        }
42
        parent::__construct($cacheManager);
43
    }
44
45
    /**
46
     * {@inheritdoc}
47
     */
48
    protected function configure()
49
    {
50
        $this
51
            ->setName(static::$defaultName) // BC with 2.8
52
            ->setDescription('Invalidate cached paths on all configured caching proxies')
53
            ->addArgument(
54
                'paths',
55
                InputArgument::IS_ARRAY | InputArgument::REQUIRED,
56
                'URL paths you want to invalidate, you can specify any number of paths'
57
            )
58
            ->setHelp(<<<'EOF'
59
The <info>%command.name%</info> command invalidates a list of paths on the configured caching proxies.
60
61
Example:
62
63
    <info>php %command.full_name% /some/path /other/path</info>
64
EOF
65
            )
66
        ;
67
    }
68
69
    /**
70
     * {@inheritdoc}
71
     */
72
    protected function execute(InputInterface $input, OutputInterface $output)
73
    {
74
        $paths = $input->getArgument('paths');
75
76
        foreach ($paths as $path) {
77
            if ($this->looksLikeRegularExpression($path)) {
78
                $output->writeln(sprintf('Path %s looks like a regular expression. Invalidation requests operate on exact paths. Use regex invalidation for regular expressions.', $path));
79
            }
80
81
            $this->getCacheManager()->invalidatePath($path);
82
        }
83
    }
84
}
85

src/Command/RefreshPathCommand.php 1 location

@@ 24-84 (lines=61) @@
21
 *
22
 * @author David Buchmann <[email protected]>
23
 */
24
class RefreshPathCommand extends BaseInvalidateCommand
25
{
26
    use PathSanityCheck;
27
28
    protected static $defaultName = 'fos:httpcache:refresh:path';
29
30
    /**
31
     * If no cache manager is specified explicitly, fos_http_cache.cache_manager
32
     * is automatically loaded.
33
     *
34
     * @param CacheManager|null $cacheManager The cache manager to talk to
35
     */
36
    public function __construct(CacheManager $cacheManager = null)
37
    {
38
        if (2 <= func_num_args()) {
39
            @trigger_error('Passing a command name in the constructor is deprecated and will be removed in version 3', E_USER_DEPRECATED);
40
            static::$defaultName = func_get_arg(1);
41
        }
42
        parent::__construct($cacheManager);
43
    }
44
45
    /**
46
     * {@inheritdoc}
47
     */
48
    protected function configure()
49
    {
50
        $this
51
            ->setName(static::$defaultName) // BC with 2.8
52
            ->setDescription('Refresh paths on all configured caching proxies')
53
            ->addArgument(
54
                'paths',
55
                InputArgument::IS_ARRAY | InputArgument::REQUIRED,
56
                'URL paths you want to refresh, you can specify any number of paths'
57
            )
58
            ->setHelp(<<<'EOF'
59
The <info>%command.name%</info> command refreshes a list of paths on the configured caching proxies.
60
61
Example:
62
63
    <info>php %command.full_name% /some/path /other/path</info>
64
EOF
65
            )
66
        ;
67
    }
68
69
    /**
70
     * {@inheritdoc}
71
     */
72
    protected function execute(InputInterface $input, OutputInterface $output)
73
    {
74
        $paths = $input->getArgument('paths');
75
76
        foreach ($paths as $path) {
77
            if ($this->looksLikeRegularExpression($path)) {
78
                $output->writeln(sprintf('Path %s looks like a regular expression. Refresh requests operate with actual requests and thus use exact paths. Use regex invalidation for regular expressions.', $path));
79
            }
80
81
            $this->getCacheManager()->refreshPath($path);
82
        }
83
    }
84
}
85