1
0

adding kirby3-janitor

This commit is contained in:
Philip Wagner
2024-10-14 14:22:24 +02:00
parent b0db09492d
commit 94fbb996f0
204 changed files with 27855 additions and 4 deletions

View File

@@ -0,0 +1,39 @@
<?php
declare(strict_types=1);
namespace Bnomei;
use Kirby\Toolkit\F;
use Symfony\Component\Finder\Finder;
final class CleanCacheFilesJob extends JanitorJob
{
/**
* @return array
*/
public function job(): array
{
$dir = kirby()->roots()->cache();
$removed = 0;
$finder = new Finder();
$finder->files()->name('*.cache')->in($dir);
$count = iterator_count($finder);
$climate = \Bnomei\Janitor::climate();
$progress = null;
if ($count && $climate) {
$progress = $climate->progress()->total($count);
}
foreach ($finder as $cacheFile) {
if (F::remove($cacheFile->getRealPath())) {
$removed++;
if ($progress && $climate) {
$progress->current($removed);
}
}
}
return [
'status' => $removed > 0 ? 200 : 204,
];
}
}