#1909418: Allow Entity Controllers to have their dependencies injected β Brings good ideas in term of object encapsulation but instantation of components is still done the old way (through "isset" and "if" mechanisms). The controllers are ContainerAware but does not seems to use the provided ContainerAwareInterface, thus it seems it was not invented here and is bad practice in general: controllers configures themselves in a static createInstance method. Moreover the complexity of discovering controllers can be cached at container compile-time, avoiding expensives operations at runtime.
The proposed service name for these controllers would be:
'ENTITY_TYPE.controller.CONTROLLER_TYPE'
which is a sort of namespace by component.
There is also the option of using: 'entity.ENTITY_TYPE.CONTROLLER_TYPE'
For the user storage controller:
<?php
$container->setDefinition('user.controller.storage', new Definition('Drupal\user\UserStorageController',
array('user', new Reference('database'), new Reference('password'), new Reference('user.data')));
?>
Then the refactored Manager, or "service locator".
<?php
public function hasController($entity_type, $controller_type) {
return $this->container->has("$entity_type.controller.$controller_type");
}
// TODO: Remove the getControllerClass().
/**
* @return Drupal\Core\Entity\EntityStorageControllerInterface
*/
public function getStorageController($entity_type) {
return $this->container->get("$entity_type.controller.storage");
}
?>
We can then get rid of EntityControllerInterface, which mimics the provided ContainerAwareInterface in term of functionalities. Remove the createInstance methods and de-couple controllers from container. Tree inheritance and dependency management becomes less complexe and easier to maintain as we all know principles of good programming: loose coupling and high cohesion.
Postponed: needs info
11.0 π₯
entity system
To track issues in the developing policy for closing stale issues, [Policy, no patch] closing older issues
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.