| 1 |  |  | <?php | 
            
                                                                                                            
                            
            
                                    
            
            
                | 2 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 3 |  |  | /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 4 |  |  |  * This file is part of Cecil. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 5 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 6 |  |  |  * (c) Arnaud Ligny <[email protected]> | 
            
                                                                                                            
                            
            
                                    
            
            
                | 7 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 8 |  |  |  * For the full copyright and license information, please view the LICENSE | 
            
                                                                                                            
                            
            
                                    
            
            
                | 9 |  |  |  * file that was distributed with this source code. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 10 |  |  |  */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 11 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 12 |  |  | declare(strict_types=1); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 13 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 14 |  |  | namespace Cecil\Command; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 15 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 16 |  |  | use Cecil\Util; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 17 |  |  | use Symfony\Component\Console\Input\InputArgument; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 18 |  |  | use Symfony\Component\Console\Input\InputInterface; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 19 |  |  | use Symfony\Component\Console\Output\OutputInterface; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 20 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 21 |  |  | /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 22 |  |  |  * CacheClearAssets command. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 23 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 24 |  |  |  * This command removes cached assets files from the assets cache directory. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 25 |  |  |  * It is useful for clearing outdated or unnecessary assets that may have been cached during previous builds. | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 26 |  |  |  */ | 
            
                                                                        
                            
            
                                    
            
            
                | 27 |  |  | class CacheClearAssets extends AbstractCommand | 
            
                                                                        
                            
            
                                    
            
            
                | 28 |  |  | { | 
            
                                                                        
                            
            
                                    
            
            
                | 29 |  |  |     /** | 
            
                                                                        
                            
            
                                    
            
            
                | 30 |  |  |      * {@inheritdoc} | 
            
                                                                        
                            
            
                                    
            
            
                | 31 |  |  |      */ | 
            
                                                                        
                            
            
                                    
            
            
                | 32 |  |  |     protected function configure() | 
            
                                                                        
                            
            
                                    
            
            
                | 33 |  |  |     { | 
            
                                                                        
                            
            
                                    
            
            
                | 34 |  |  |         $this | 
            
                                                                        
                            
            
                                    
            
            
                | 35 |  |  |             ->setName('cache:clear:assets') | 
            
                                                                        
                            
            
                                    
            
            
                | 36 |  |  |             ->setDescription('Removes assets cache') | 
            
                                                                        
                            
            
                                    
            
            
                | 37 |  |  |             ->setDefinition([ | 
            
                                                                        
                            
            
                                    
            
            
                | 38 |  |  |                 new InputArgument('path', InputArgument::OPTIONAL, 'Use the given path as working directory'), | 
            
                                                                        
                            
            
                                    
            
            
                | 39 |  |  |             ]) | 
            
                                                                        
                            
            
                                    
            
            
                | 40 |  |  |             ->setHelp( | 
            
                                                                        
                            
            
                                    
            
            
                | 41 |  |  |                 <<<'EOF' | 
            
                                                                        
                            
            
                                    
            
            
                | 42 |  |  | The <info>%command.name%</> command removes cached assets files. | 
            
                                                                        
                            
            
                                    
            
            
                | 43 |  |  | EOF | 
            
                                                                        
                            
            
                                    
            
            
                | 44 |  |  |             ); | 
            
                                                                        
                            
            
                                    
            
            
                | 45 |  |  |     } | 
            
                                                                        
                            
            
                                    
            
            
                | 46 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 47 |  |  |     /** | 
            
                                                                        
                            
            
                                    
            
            
                | 48 |  |  |      * {@inheritdoc} | 
            
                                                                        
                            
            
                                    
            
            
                | 49 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 50 |  |  |     protected function execute(InputInterface $input, OutputInterface $output): int | 
            
                                                                                                            
                            
            
                                    
            
            
                | 51 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 52 |  |  |         if (!Util\File::getFS()->exists($this->getBuilder()->getConfig()->getCacheAssetsPath())) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 53 |  |  |             $output->writeln('<info>No assets cache.</info>'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 54 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 55 |  |  |             return 0; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 56 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 57 |  |  |         $output->writeln('Removing assets cache directory...'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 58 |  |  |         $output->writeln( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 59 |  |  |             \sprintf('<comment>Path: %s</comment>', $this->getBuilder()->getConfig()->getCacheAssetsPath()), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 60 |  |  |             OutputInterface::VERBOSITY_VERBOSE | 
            
                                                                                                            
                            
            
                                    
            
            
                | 61 |  |  |         ); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 62 |  |  |         Util\File::getFS()->remove($this->getBuilder()->getConfig()->getCacheAssetsPath()); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 63 |  |  |         $output->writeln('<info>Assets cache is clear.</info>'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 64 |  |  |  | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 65 |  |  |         return 0; | 
            
                                                                        
                                                                
            
                                    
            
            
                | 66 |  |  |     } | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 67 |  |  | } | 
            
                                                        
            
                                    
            
            
                | 68 |  |  |  |