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,55 @@
<?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\Database\Middleware;
use Doctrine\DBAL\Driver as DoctrineDriver;
use Doctrine\DBAL\Driver\Middleware as DoctrineDriverMiddleware;
use TYPO3\CMS\Core\Database\Driver\CustomPdoResultDriverDecorator;
/**
* The `php-ext PDO` based pdo_* driver can return column data in query result sets as type `resource`, where the
* `mysqli` based driver returns type `string` instead. Dealing with data of type `resources`, for special driver,
* is not a well known technical detail in the broader php and TYPO3 developer community. Therefore, the TYPO3 core
* provided custom pdo_* driver implementation to provide a specific `DriverResult` class, which resolves this issue
* by converting type `resource` column data directly to string in `\TYPO3\CMS\Core\Database\Driver\DriverResult`
* within the method `mapResourceToString()` and uses it in the related methods.
*
* With the Doctrine DBAL Driver Middleware features the custom drivers could be reduced and the required DriverResult
* set added in a cleaner way. As this comes with minor performance impact, the custom DriverResult set needs to be
* plumbed only to the absolutely required drivers - and the reason for the conditional usage restricted with method
* `canBeUsedForConnection()`.
*
* @see \TYPO3\CMS\Core\Database\Driver\DriverResult::mapResourceToString()
*
* @internal this implementation is not part of TYPO3's Public API.
*/
final class CustomPdoDriverResultMiddleware implements DoctrineDriverMiddleware, UsableForConnectionInterface
{
public function wrap(DoctrineDriver $driver): DoctrineDriver
{
return new CustomPdoResultDriverDecorator($driver);
}
public function canBeUsedForConnection(string $identifier, array $connectionParams): bool
{
return match ($connectionParams['driver'] ?? '') {
'pdo_sqlite', 'pdo_pgsql', 'pdo_mysql' => true,
default => false,
};
}
}
@@ -0,0 +1,34 @@
<?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\Database\Middleware;
use Doctrine\DBAL\Driver as DoctrineDriver;
use Doctrine\DBAL\Driver\Middleware as DoctrineDriverMiddleware;
use TYPO3\CMS\Core\Database\Driver\CustomPlatformDriverDecorator;
/**
* Wraps the driver to ensure extended *Platform classes are used for connections.
* @internal only and not part of public core API.
*/
final class CustomPlatformDriverMiddleware implements DoctrineDriverMiddleware
{
public function wrap(DoctrineDriver $driver): DoctrineDriver
{
return new CustomPlatformDriverDecorator($driver);
}
}
@@ -0,0 +1,41 @@
<?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\Database\Middleware;
use Doctrine\DBAL\Driver\Middleware as DoctrineDriverMiddleware;
use TYPO3\CMS\Core\Database\ConnectionPool;
/**
* Custom driver middleware can implement this interface to decide per connection and
* connection configuration if it should be used or not. For example, registering a
* global driver middleware which only takes affect on connections using a specific
* driver like `pdo_sqlite`.
*
* Usually this should be a rare case and mostly a driver middleware can be simply
* configured as a connection middleware directly, which leaves this more or less
* a special implementation detail for the TYPO3 core.
*/
interface UsableForConnectionInterface extends DoctrineDriverMiddleware
{
/**
* Return true if the driver middleware should be used for the concrete connection.
*
* @see ConnectionPool::getDriverMiddlewares()
*/
public function canBeUsedForConnection(string $identifier, array $connectionParams): bool;
}