TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,50 @@
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Core\Resource\Cache;
use Symfony\Component\DependencyInjection\Attribute\Autowire;
use TYPO3\CMS\Core\Attribute\AsEventListener;
use TYPO3\CMS\Core\Cache\CacheManager;
use TYPO3\CMS\Core\Resource\Event\AfterFileContentsSetEvent;
use TYPO3\CMS\Core\Resource\Event\AfterFileDeletedEvent;
use TYPO3\CMS\Core\Resource\Event\AfterFileMovedEvent;
use TYPO3\CMS\Core\Resource\Event\AfterFileRenamedEvent;
use TYPO3\CMS\Core\Resource\Event\AfterFileReplacedEvent;
final readonly class FlushCacheTagForFile
{
public function __construct(
private CacheManager $cacheManager,
#[Autowire(expression: 'service("features").isFeatureEnabled("frontend.cache.autoTagging")')]
private bool $autoTagging
) {}
#[AsEventListener(event: AfterFileContentsSetEvent::class)]
#[AsEventListener(event: AfterFileDeletedEvent::class)]
#[AsEventListener(event: AfterFileMovedEvent::class)]
#[AsEventListener(event: AfterFileRenamedEvent::class)]
#[AsEventListener(event: AfterFileReplacedEvent::class)]
public function __invoke(
AfterFileContentsSetEvent|AfterFileDeletedEvent|AfterFileMovedEvent|AfterFileRenamedEvent|AfterFileReplacedEvent $event
): void {
if (!$this->autoTagging) {
return;
}
$this->cacheManager->flushCachesByTag(sprintf('sys_file_%s', $event->getFile()->getProperty('uid')));
}
}
@@ -0,0 +1,51 @@
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Core\Resource\Cache;
use Symfony\Component\DependencyInjection\Attribute\Autowire;
use TYPO3\CMS\Core\Attribute\AsEventListener;
use TYPO3\CMS\Core\Cache\CacheManager;
use TYPO3\CMS\Core\Resource\Event\AfterFolderRenamedEvent;
use TYPO3\CMS\Core\Resource\Event\BeforeFolderMovedEvent;
use TYPO3\CMS\Core\Resource\File;
use TYPO3\CMS\Core\Resource\Folder;
final readonly class FlushCacheTagForFolder
{
public function __construct(
private CacheManager $cacheManager,
#[Autowire(expression: 'service("features").isFeatureEnabled("frontend.cache.autoTagging")')]
private bool $autoTagging
) {}
#[AsEventListener(event: AfterFolderRenamedEvent::class)]
#[AsEventListener(event: BeforeFolderMovedEvent::class)]
public function __invoke(AfterFolderRenamedEvent|BeforeFolderMovedEvent $event): void
{
if (!$this->autoTagging) {
return;
}
$files = $event->getFolder()->getFiles(0, 0, Folder::FILTER_MODE_USE_OWN_AND_STORAGE_FILTERS, true);
$this->cacheManager->flushCachesByTags(
array_map(
static fn(File $file) => sprintf('sys_file_%s', $file->getProperty('uid')),
$files
)
);
}
}
@@ -0,0 +1,50 @@
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Core\Resource\Cache;
use Symfony\Component\DependencyInjection\Attribute\Autowire;
use TYPO3\CMS\Core\Attribute\AsEventListener;
use TYPO3\CMS\Core\Cache\CacheManager;
use TYPO3\CMS\Core\Resource\Event\AfterFileMetaDataCreatedEvent;
use TYPO3\CMS\Core\Resource\Event\AfterFileMetaDataDeletedEvent;
use TYPO3\CMS\Core\Resource\Event\AfterFileMetaDataUpdatedEvent;
final readonly class FlushCacheTagForMetaData
{
public function __construct(
private CacheManager $cacheManager,
#[Autowire(expression: 'service("features").isFeatureEnabled("frontend.cache.autoTagging")')]
private bool $autoTagging
) {}
#[AsEventListener(event: AfterFileMetaDataCreatedEvent::class)]
#[AsEventListener(event: AfterFileMetaDataDeletedEvent::class)]
#[AsEventListener(event: AfterFileMetaDataUpdatedEvent::class)]
public function __invoke(
AfterFileMetaDataCreatedEvent|AfterFileMetaDataDeletedEvent|AfterFileMetaDataUpdatedEvent $event
): void {
if (!$this->autoTagging) {
return;
}
$cacheTags = [sprintf('sys_file_%s', $event->getFileUid())];
if (method_exists($event, 'getMetaDataUid')) {
$cacheTags[] = sprintf('sys_file_metadata_%s', $event->getMetaDataUid());
}
$this->cacheManager->flushCachesByTags($cacheTags);
}
}