blob: d38f3823a20eba48d80ebcc403d4345effeeb72c (
plain) (
blame)
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
85
86
87
88
89
90
91
92
93
94
95
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\System\Bakery\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use UserFrosting\System\Bakery\BaseCommand;
use UserFrosting\Sprinkle\Core\Twig\CacheHelper;
/**
* ClearCache CLI Command.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class ClearCache extends BaseCommand
{
/**
* {@inheritDoc}
*/
protected function configure()
{
$this->setName("clear-cache")
->setDescription("Clears the application cache. Includes cache service, Twig and Router cached data");
}
/**
* {@inheritDoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->io->title("Clearing cache");
// Clear normal cache
$this->io->writeln("<info> > Clearing Illuminate cache instance</info>", OutputInterface::VERBOSITY_VERBOSE);
$this->clearIlluminateCache();
// Clear Twig cache
$this->io->writeln("<info> > Clearing Twig cached data</info>", OutputInterface::VERBOSITY_VERBOSE);
if (!$this->clearTwigCache()) {
$this->io->error("Failed to clear Twig cached data. Make sure you have write access to the `app/cache/twig` directory.");
exit(1);
}
// Clear router cache
$this->io->writeln("<info> > Clearing Router cache file</info>", OutputInterface::VERBOSITY_VERBOSE);
if (!$this->clearRouterCache()) {
$file = $this->ci->config['settings.routerCacheFile'];
$this->io->error("Failed to delete Router cache file. Make sure you have write access to the `$file` file.");
exit(1);
}
$this->io->success("Cache cleared !");
}
/**
* Flush the cached data from the cache service
*
* @access protected
* @return void
*/
protected function clearIlluminateCache()
{
$this->ci->cache->flush();
}
/**
* Clear the Twig cache using the Twig CacheHelper class
*
* @access protected
* @return bool true/false if operation is successfull
*/
protected function clearTwigCache()
{
$cacheHelper = new CacheHelper($this->ci);
return $cacheHelper->clearCache();
}
/**
* Clear the Router cache data file
*
* @access protected
* @return bool true/false if operation is successfull
*/
protected function clearRouterCache()
{
return $this->ci->router->clearCache();
}
}
|