Skip to content
Snippets Groups Projects
Commit 1e0284a3 authored by Benjamin Franzke's avatar Benjamin Franzke Committed by Benni Mack
Browse files

[TASK] Create TER remote instances in symfony service factory

The remotes are not lazy loaded, therefore there is no need to
inject the container instance into RemoteRegistry.

We can pass the remote instances directly into the
registerRemote method, that has the slight benefit
of avoiding roundtrips and the symfony service defintions
can be inlined/optimized (the remote instances are
created withing the generated RemoteRegistry factory).

Resolves: #92722
Related: #92457
Releases: master
Change-Id: Ie8e52a5d48d2d1614d8f554f0854408cc11ec17d
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/66324


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent b9d71060
Branches
Tags
No related merge requests found
......@@ -39,7 +39,6 @@ final class ExtensionRemotePass implements CompilerPassInterface
foreach ($container->findTaggedServiceIds($this->tagName) as $id => $tags) {
$definition = $container->findDefinition($id);
$definition->setPublic(true);
$configuration = [];
foreach ($tags as $attributes) {
......@@ -47,7 +46,7 @@ final class ExtensionRemotePass implements CompilerPassInterface
$configuration['enabled'] = (bool)($attributes['enabled'] ?? true);
}
$remoteRegistryDefinition->addMethodCall('registerRemote', [$id, $configuration]);
$remoteRegistryDefinition->addMethodCall('registerRemote', [$definition, $configuration]);
}
}
}
......@@ -17,9 +17,6 @@ declare(strict_types=1);
namespace TYPO3\CMS\Extensionmanager\Remote;
use Psr\Container\ContainerInterface;
use TYPO3\CMS\Extensionmanager\Exception\ExtensionManagerException;
/**
* Registry of remote connectors.
*
......@@ -27,11 +24,6 @@ use TYPO3\CMS\Extensionmanager\Exception\ExtensionManagerException;
*/
class RemoteRegistry
{
/**
* @var ContainerInterface
*/
protected $container;
/**
* @var ExtensionDownloaderRemoteInterface[]
*/
......@@ -42,22 +34,8 @@ class RemoteRegistry
*/
protected $defaultRemote;
public function __construct(ContainerInterface $container)
{
$this->container = $container;
}
public function registerRemote(string $id, array $configuration): void
public function registerRemote(ExtensionDownloaderRemoteInterface $remote, array $configuration): void
{
$remote = $this->container->get($id);
if (!$remote instanceof ExtensionDownloaderRemoteInterface) {
throw new ExtensionManagerException(
'Extension remote ' . $id . ' must implement ' . ExtensionDownloaderRemoteInterface::class,
1602173538
);
}
$identifier = $remote->getIdentifier();
$this->remotes[$identifier] = array_merge(
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment