Spaces:
No application file
No application file
File size: 2,430 Bytes
d2897cd |
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 96 97 98 99 100 101 102 103 104 |
<?php
namespace Mautic\CoreBundle\Helper;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\BufferedOutput;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\HttpKernel\KernelInterface;
class CacheHelper
{
public function __construct(
private string $cacheDir,
private ?Session $session,
private PathsHelper $pathsHelper,
private KernelInterface $kernel
) {
}
/**
* Deletes the cache folder.
*/
public function nukeCache(): void
{
$this->clearSessionItems();
$fs = new Filesystem();
$fs->remove($this->cacheDir);
$this->clearOpcache();
$this->clearApcuCache();
}
public function refreshConfig(): void
{
$this->clearSessionItems();
$this->clearConfigOpcache();
$this->clearApcuCache();
}
/**
* Run the bin/console cache:clear command.
*/
public function clearSymfonyCache(): int
{
$env = $this->kernel->getEnvironment();
$application = new Application($this->kernel);
$application->setAutoExit(false);
$input = new ArrayInput([
'command' => 'cache:clear',
'--env' => $env,
]);
$output = new BufferedOutput();
return $application->run($input, $output);
}
/**
* Clear cache related session items.
*/
protected function clearSessionItems(): void
{
if (!$this->session) {
return;
}
// Clear the menu items and icons so they can be rebuilt
$this->session->remove('mautic.menu.items');
$this->session->remove('mautic.menu.icons');
}
private function clearConfigOpcache(): void
{
if (!function_exists('opcache_reset') || !function_exists('opcache_invalidate')) {
return;
}
opcache_invalidate($this->pathsHelper->getLocalConfigurationFile(), true);
}
private function clearOpcache(): void
{
if (!function_exists('opcache_reset')) {
return;
}
opcache_reset();
}
private function clearApcuCache(): void
{
if (!function_exists('apcu_clear_cache')) {
return;
}
apcu_clear_cache();
}
}
|